diff --git a/parse/train/3hGNqpI4WS/3hGNqpI4WS.md b/parse/train/3hGNqpI4WS/3hGNqpI4WS.md new file mode 100644 index 0000000000000000000000000000000000000000..c1896d7fe513f1de02336bd97d064475a3bc2243 --- /dev/null +++ b/parse/train/3hGNqpI4WS/3hGNqpI4WS.md @@ -0,0 +1,562 @@ +# DEPLOYMENT-EFFICIENT REINFORCEMENT LEARNING VIA MODEL-BASED OFFLINE OPTIMIZATION + +Tatsuya Matsushima∗ Hiroki Furuta∗ Yutaka Matsuo The University of Tokyo {matsushima, furuta, matsuo}@weblab.t.u-tokyo.ac.jp + +# Ofir Nachum + +# Shixiang Shane Gu + +Google Research + +{ofirnachum, shanegu}@google.com + +# ABSTRACT + +Most reinforcement learning (RL) algorithms assume online access to the environment, in which one may readily interleave updates to the policy with experience collection using that policy. However, in many real-world applications such as health, education, dialogue agents, and robotics, the cost or potential risk of deploying a new data-collection policy is high, to the point that it can become prohibitive to update the data-collection policy more than a few times during learning. With this view, we propose a novel concept of deployment efficiency, measuring the number of distinct data-collection policies that are used during policy learning. We observe that naïvely applying existing model-free offline RL algorithms recursively does not lead to a practical deployment-efficient and sample-efficient algorithm. We propose a novel model-based algorithm, Behavior-Regularized Model-ENsemble (BREMEN), that not only performs better than or comparably as the state-of-the-art dynamic-programming-based and concurrently-proposed model-based offline approaches on existing benchmarks, but can also effectively optimize a policy offline using 10-20 times fewer data than prior works. Furthermore, the recursive application of BREMEN achieves impressive deployment efficiency while maintaining the same or better sample efficiency, learning successful policies from scratch on simulated robotic environments with only 5-10 deployments, compared to typical values of hundreds to millions in standard RL baselines. + +# 1 INTRODUCTION + +Reinforcement learning (RL) algorithms have recently demonstrated impressive success in learning behaviors for a variety of sequential decision-making tasks (Barth-Maron et al., 2018; Hessel et al., 2018; Nachum et al., 2019). Virtually all of these demonstrations have relied on highly-frequent online access to the environment, with the RL algorithms often interleaving each update to the policy with additional experience collection of that policy acting in the environment. However, in many real-world applications of RL, such as health (Murphy et al., 2001), education (Mandel et al., 2014), dialog agents (Jaques et al., 2019), and robotics (Gu et al., 2017a; Kalashnikov et al., 2018), the deployment of a new data-collection policy may be associated with a number of costs and risks. If we can learn tasks with a small number of data collection policies, we can substantially reduce them. + +Based on this idea, we propose a novel measure of RL algorithm performance, namely deployment efficiency, which counts the number of changes in the data-collection policy during learning, as illustrated in Figure 1. This concept may be seen in contrast to sample efficiency or data efficiency (Precup et al., 2001; Degris et al., 2012; Gu et al., 2017b; Haarnoja et al., 2018; Lillicrap et al., 2016; Nachum et al., 2018), which measures the amount of environment interactions incurred during training, without regard to how many distinct policies were deployed to perform those interactions. Even when the data efficiency is high, the deployment efficiency could be low, since many on-policy and off-policy algorithms alternate data collection with each policy update (Schulman et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; Haarnoja et al., 2018). Such dependence on high-frequency policy deployments is best illustrated in the recent works in offline RL (Fujimoto et al., 2019; Jaques et al., 2019; Kumar et al., 2019; Levine et al., 2020; Wu et al., 2019), where baseline off-policy algorithms exhibited poor performance when trained on a static dataset. These offline RL works, however, limit their study to a single deployment, which is enough for achieving high performance with data collected from a sub-optimal behavior policy, but often not from a random policy. In contrast to those prior works, we aim to learn successful policies from scratch in a manner that is both sample and deployment-efficient. + +![](images/d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg) +Figure 1: Deployment efficiency is defined as the number of changes in the data-collection policy $( I )$ , which is vital for managing costs and risks of new policy deployment. Online RL algorithms typically require many iterations of policy deployment and data collection, which leads to extremely low deployment efficiency. In contrast, most pure offline algorithms consider updating a policy from a fixed dataset without additional deployment and often fail to learn from a randomly initialized data-collection policy. Interestingly, most state-of-the-art off-policy algorithms are still evaluated in heavily online settings. For example, SAC (Haarnoja et al., 2018) collects one sample per policy update, amounting to 100,000 to 1 million deployments for learning standard benchmark domains. + +Many existing model-free offline RL algorithms (Levine et al., 2020) are tuned and evaluated on massive datasets (e.g., one million transitions). In order to develop an algorithm that is both sample and deployment-efficient, each iteration of the algorithm between successive deployments has to work effectively on much smaller dataset sizes. We believe model-based RL is better suited to this setting due to its higher demonstrated sample efficiency than model-free RL (Kurutach et al., 2018; Nagabandi et al., 2018). Although the combination of model-based RL and offline or limiteddeployment settings seems straight-forward, we find this naïve approach leads to poor performance. This problem can be attributed to extrapolation errors (Fujimoto et al., 2019) similar to those observed in model-free methods. Specifically, the learned policy may choose sequences of actions which lead it to regions of the state space where the dynamics model cannot predict properly, due to poor coverage of the dataset. This can lead the policy to exploit approximation errors of the dynamics model and be disastrous for learning. In model-free settings, similar data distribution shift problems are typically remedied by regularizing policy updates explicitly with a divergence from the observed data distribution (Jaques et al., 2019; Kumar et al., 2019; Wu et al., 2019), which, however, can overly limit policies’ expressivity (Sohn et al., 2020). + +In order to better approach these problems arising in limited deployment settings, we propose Behavior-Regularized Model-ENsemble (BREMEN), which learns an ensemble of dynamics models in conjunction with a policy using imaginary rollouts while implicitly regularizing the learned policy via appropriate parameter initialization and conservative trust-region learning updates. We evaluate BREMEN on standard offline RL benchmarks of high-dimensional continuous control tasks, where only a single static dataset is used. In this fixed-batch setting, our experiments show that BREMEN can not only achieve performance competitive with state-of-the-art when using standard dataset sizes but also learn with 10-20 times smaller datasets, which previous methods are unable to attain. Enabled by such stable and sample-efficient offline learning, we show that BREMEN can learn successful policies with only 5-10 deployments in the online setting, significantly outperforming existing off-policy and offline RL algorithms in deployment efficiency while keeping sample efficiency. + +# 2 PRELIMINARIES + +We consider a Markov Decision Process (MDP) setting, characterized by the tuple $\begin{array} { r l } { \mathcal { M } } & { { } = } \end{array}$ $( S , \mathcal { A } , p , r , \gamma )$ , where $s$ is the state space, $\mathcal { A }$ is the action space, $p ( s ^ { \prime } | s , a )$ is the transition probability distribution or dynamics, $r ( s )$ is the reward function and $\gamma \in ( 0 , 1 )$ is the discount factor. A policy $\pi$ is a function that determines the agent behavior, mapping from states to probability distributions over actions. The goal is to obtain the optimal policy $\pi ^ { * }$ , which maximizes the expectation of discounted sum of rewards. The transition probability $p ( s ^ { \prime } | s , a )$ is usually unknown, and estimated with a parameterized dynamics model $f _ { \phi }$ (e.g. a neural network) in model-based RL. For simplicity, we assume that the reward function $r ( s )$ is known, and the reward can be computed for any arbitrary state, but we may extend to the unknown setting and predict it using a parameterized function. + +On-policy vs Off-policy, Online vs Offline At a high-level, most RL algorithms alternate many times between collecting a batch of transitions (deployments) and optimizing the policy (learning). If the algorithms discard data after each policy update, they are on-policy (Schulman et al., 2015; 2017), while if they accumulate data in a buffer $\mathcal { D }$ , i.e. experience replay (Lin, 1992), they are off-policy (Mnih et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; 2017b; Haarnoja et al., 2018; Fujimoto et al., 2019; Fakoor et al., 2019) because not all the data in buffer comes from the current policy. However, we consider all these algorithms to be online RL algorithms, since they involve many deployments during learning, ranging from hundreds to millions. On the other hand, in pure offline RL, one does not assume direct interaction and learns a policy from only a fixed dataset, which effectively corresponds to a single deployment allowed for learning. Classically, interpolating these two extremes were semi-batch RL algorithms (Lange et al., 2012; Singh et al., 1995), which improve the policy through repetitions of collecting a large batch of transitions $\mathcal { D } = \{ ( s , a , s ^ { \prime } , r ) \}$ and performing many or full policy updates. While these semi-batch RL also realize good deployment efficiency, they have not been extensively studied with neural network function approximators or in off-policy settings with experience replay for scalable sample-efficient learning. In our work, we aim to have both high deployment efficiency and sample efficiency by developing an algorithm that can solve the tasks with minimal policy deployments as well as transition samples. + +# 3 DEPLOYMENT EFFICIENCY + +Deploying a new policy for data collection can be associated with a number of costs and risks for many real-world applications like medicine, dialogue systems, or robotic control (Murphy et al., 2001; Mandel et al., 2014; Gu et al., 2017a; Kalashnikov et al., 2018; Nachum et al., 2019; Jaques et al., 2019). While there are abundant works on safety for RL (Chow et al., 2015; Eysenbach et al., 2018; Chow et al., 2018; Ray et al., 2019; Chow et al., 2019), they often do not provide guarantees in practice when combined with neural networks and stochastic optimization. It is therefore necessary to verify each policy before deployment (e.g. measuring the variance of rewards or checking out-of-bounds actions). Due to such costs associated with each deployment, it is desirable to minimize the number of distinct deployments needed during the learning process. Even ignoring safety considerations, frequent updates to a deployed policy can exacerbate communication bottlenecks in large-scale distributed RL systems, which are becoming more prevalent (Nair et al., 2015; Espeholt et al., 2018; 2019). We additionally discuss on the importance of the deployment efficiency in real-world applications. See Appendix C. + +In order to focus research on these practical bottlenecks, we propose a novel measure of RL algorithms, namely, deployment efficiency, which counts how many times the data-collection policy has been changed during improvement from random policy to solve the task. For example, if an RL algorithm operates by using its learned policy to collect transitions from the environment $I$ times, each time collecting a batch of $B$ new transitions, then the number of deployments is $I$ , while the total number of samples collected is $I \times B$ . The lower $I$ is, the more deployment-efficient the algorithm is; in contrast, sample efficiency looks at $I \times B$ . Online RL algorithms, whether they are on-policy or off-policy, typically update the policy and acquire new transitions by deploying the newly updated policy at every iteration. This corresponds to performing hundreds to millions of deployments during learning on standard benchmarks (Haarnoja et al., 2018), which is severely deployment inefficient. On the other hand, offline RL literature only studies the case of 1 deployment. A deployment-efficient algorithm would stand in the middle of these two extremes and ideally learn a successful policy from scratch while deploying only a few distinct policies, as illustrated in Figure 1. + +Recent deep RL literature seldom emphasizes deployment efficiency, with few exceptions in specific applications (Kalashnikov et al., 2018) where such a learning procedure is necessary. Deploymentinefficient algorithms will fail in scenarios where the deployment of each new policy is exorbitantly expensive, such as safety-critical robotics or user-facing products. Although current state-of-the-art algorithms on continuous control have substantially improved sample or data efficiency, they have not optimized for deployment efficiency. For example, SAC (Haarnoja et al., 2018), an efficient model-free off-policy algorithm, performs half a million to one million policy deployments during learning on MuJoCo (Todorov et al., 2012) benchmarks. ME-TRPO (Kurutach et al., 2018), a model-based algorithm, performs a much lower 100-300 policy deployments, although this is still relatively high for practical settings.2 In our work, we demonstrate successful learning on standard benchmark environments with only 5-10 deployments. + +# 4 BEHAVIOR-REGULARIZED MODEL-ENSEMBLE + +To achieve a favorable combination of both high deployment and sample efficiency, we propose Behavior-Regularized Model-ENsemble (BREMEN). BREMEN incorporates Dyna-style (Sutton, 1991; Kurutach et al., 2018) model-based RL, learning an ensemble of dynamics models in conjunction with a policy using imaginary rollouts and behavior regularization via conservative trust-region updates. + +# 4.1 IMAGINARY ROLLOUT FROM MODEL ENSEMBLE + +As in recent Dyna-style model-based RL methods (Kurutach et al., 2018; Wang et al., 2019), BREMEN uses an ensemble of $K$ deterministic dynamics models $\hat { f } _ { \phi } = \left\{ \hat { f } _ { \phi _ { 1 } } , \dots , \hat { f } _ { \phi _ { K } } \right\}$ to alleviate the problem of model bias. Each model $\hat { f } _ { \phi _ { i } }$ is parameterized by $\phi _ { i }$ and trained by the following objective, which minimizes mean squared error between the prediction of next state $\hat { f } _ { \phi _ { i } } \left( s _ { t } , a _ { t } \right)$ and true next state $s _ { t + 1 }$ over a dataset $\mathcal { D }$ : + +$$ +\operatorname* { m i n } _ { \phi _ { i } } \frac { 1 } { | \mathcal { D } | } \sum _ { \left( s _ { t } , a _ { t } , s _ { t + 1 } \right) \in \mathcal { D } } \frac { 1 } { 2 } \left. s _ { t + 1 } - \hat { f } _ { \phi _ { i } } \left( s _ { t } , a _ { t } \right) \right. _ { 2 } ^ { 2 } . +$$ + +During training of a policy $\pi _ { \theta }$ , imagined trajectories of states and actions are generated sequentially, using a dynamics model $\hat { f } _ { \phi _ { i } }$ that is randomly selected at each time step: + +$$ +a _ { t } \sim \pi _ { \theta } ( \cdot | \hat { s } _ { t } ) , \quad \hat { s } _ { t + 1 } = \hat { f } _ { \phi _ { i } } ( \hat { s } _ { t } , a _ { t } ) \quad \mathrm { w h e r e } \quad i \sim \{ 1 \cdot \cdot \cdot K \} . +$$ + +# 4.2 POLICY UPDATE WITH BEHAVIOR REGULARIZATION + +In order to manage the discrepancy between the true dynamics and the learned model caused by the distribution shift in batch settings, we propose to use iterative policy updates via a trust-region constraint, re-initialized with a behavior-cloned policy after every deployment. Specifically, after each deployment, we are given an updated dataset of experience transitions $\mathcal { D }$ . With this dataset, we approximate the true behavior policy $\pi _ { b }$ through behavior cloning (BC), utilizing a neural network $\hat { \pi } _ { \beta }$ parameterized by $\beta$ , where we implicitly assume a fixed variance, a common practice in BC (Rajeswaran et al., 2017): + +$$ +\operatorname* { m i n } _ { \beta } \frac { 1 } { | \mathscr { D } | } \sum _ { ( s _ { t } , a _ { t } ) \in \mathscr { D } } \frac { 1 } { 2 } \left. a _ { t } - \hat { \pi } _ { \beta } \left( s _ { t } \right) \right. _ { 2 } ^ { 2 } . +$$ + +After obtaining the estimated behavior policy, we initialize the target policy $\pi _ { \theta }$ as a Gaussian policy with mean from $\hat { \pi } _ { \beta }$ and standard deviation of 1. This BC initialization in conjunction with gradient descent based optimization may be seen as implicitly biasing the optimized $\pi _ { \theta }$ to be close to the data-collection policy (Nagarajan & Kolter, 2019), and thus works as a remedy for the distribution shift problem (Ross et al., 2011). To further bias the learned policy to be close to the data-collection + +# Algorithm 1 BREMEN for Deployment-Efficient RL + +
Input: Empty dataset Dau,D,Initial parameters Φ = {1,·,Φk},β,Number of policy optimization T
Numberof deploymentsI.
1:Randomly initialize the target policy πθ .
2:for deploymenti=1,·.,I do
3:Collect B transitions in the true environment using T and add them to dataset
Dall←DalU{St,at,rt,St+1},D←{st,at,rt,St+1}.
4:Train K dynamics models f using Dau via Equation 1.
5: 6:Train estimated behavior policy πβ using D by behavior cloning via Equation 3.
7:Re-initialize target policy πeo = Normal(β,1). for policy optimization k =1,..·,T do
8:Generate imaginary rollout via Equation 2.
9:Optimize target policy Tβ satisfying Equation 4 with the rollout.
+ +policy, we opt to use a KL-based trust-region optimization (Schulman et al., 2015). Therefore, the optimization of BREMEN becomes + +$$ +\begin{array} { r l } & { \theta _ { k + 1 } = \underset { \theta } { \arg \operatorname* { m a x } } \ \underset { s , a \sim \pi _ { \theta _ { k } } , \hat { f } _ { \phi _ { i } } } { \mathbb { E } } [ \frac { \pi _ { \theta } ( a | s ) } { \pi _ { \theta _ { k } } ( a | s ) } A ^ { \pi _ { \theta _ { k } } } ( s , a ) ] } \\ & { \mathrm { s . t . } \quad \underset { s \sim \pi _ { \theta _ { k } } , \hat { f } _ { \phi _ { i } } } { \mathbb { E } } [ D _ { \mathrm { K L } } ( \pi _ { \theta } ( \cdot | s ) | | \pi _ { \theta _ { k } } ( \cdot | s ) ) ] \leq \delta , \quad \pi _ { \theta _ { 0 } } = \mathrm { N o r m a l } ( \hat { \pi } _ { \beta } , 1 ) , } \end{array} +$$ + +where $A ^ { \pi _ { \theta _ { k } } } ( s , a )$ is the advantage of $\pi _ { \theta _ { k } }$ computed using model-based rollouts in the learned dynamics model and $\delta$ is the maximum step size. + +The combination of BC for initialization and finite iterative trust-region updates serves as an implicit KL regularization. This is in contrast to many previous offline RL algorithms that augment the value function with a penalty of explicit KL divergence (Siegel et al., 2020; Wu et al., 2019) or maximum mean discrepancy (Kumar et al., 2019). Empirically, we found that our regularization technique outperforms the explicit KL penalty (Section 5.3). Furthermore, we provide a mathematical intuition explaining how our methods works as an implicit regularization of distributional shift in Appendix A. + +By recursively performing offline procedure, BREMEN can be used for deployment-efficient learning as shown in Algorithm 1, starting from a randomly initialized policy, collecting experience data, and performing offline policy updates. + +# 5 EXPERIMENTS + +In order to realize a deployment-efficient RL algorithm, the batch policy optimizer has to be stable and sample-efficient. We first evaluate BREMEN in the offline setting, where the algorithm learns the policy from a static dataset. Standard benchmarks of MuJoCo physics simulator shown in $\mathrm { W u }$ et al., 2019) and more recent datasets (Fu et al., 2020) are used in the evaluation, and we compared the asymptotic performance of BREMEN with other offline RL methods including the concurrent model-based approaches. We then tested the sample-efficiency of offline algorithms using smaller datasets. We lastly extend the experiment to deployment-efficient settings, where the algorithms learn their policies from scratch via a limited number of deployments and perform some ablations to see how components in BREMEN affect performance. See Appendix F for further details. + +# 5.1 EVALUATING OFFLINE RL PERFORMANCES + +Standard Benchmarks We evaluate BREMEN on standard offline RL benchmarks following and identical protocol as in Wu et al. (2019): We first train online SAC to a certain cumulative reward threshold, 4,000 in HalfCheetah, 1,000 in Ant, Hopper, and Walker2d, and collect offline datasets. We evaluate agents with the offline dataset of one million (1M) transitions, which is standard for BCQ and BRAC. Table 1 (top) shows that BREMEN can achieve performance competitive with state-of-the-art model-free offline RL algorithms when using the standard dataset size of 1M. We also test BREMEN with more recent benchmarks of D4RL (Fu et al., 2020) and compared the performance with the existing model-free and model-based methods. See Appendix D for the results. + +
1,000,000(1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset BC1191 1321±141412611281376
4281±12 5783±2721341±161 1130±1271421±147 2153±753
BCQ2021±31 2072±2851422±90
BRAC7192±1152239±1124
BRAC (max Q)2369±2347320±911916±3432409±1210
BREMEN (Ours)3328±2758055±1032058±8522346±230
ME-TRPO (offline)1258±5501804±924518±91211±154
100,000(100K)transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191406611281376
BC1330±814266±211322±1091426±47
BCQ1363±1993915±4111129±2382187±196
BRAC-157±3832505±25011310±702162±1109
BRAC (max Q)-226±3872332±24221422±1012164±1114
BREMEN (Ours)1633±1276095±3702191±4552132±301
ME-TRPO (offline)974±42±434307±17010±61
50,000 (50K) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191413811281376
BC1270±654230±491249±611420±194
BCQ1329±951319±6261178±2351841±439
BRAC-878±244-597±731277±102976±1207
BRAC (max Q)-843±279-590±561276±225903±1137
BREMEN(Ours)1347±2835823±1461632±7962280±647
938±32
ME-TRPO (offfline)-73±95152±13176±343
+ +Table 1: Comparison of BREMEN to the existing offline methods on static datasets. Each cell shows the average cumulative reward and their standard deviation, where the number of samples is 1M, 100K, and 50K, respectively. The maximum steps per episode is 1,000. BRAC applies a primal form of KL value penalty, and BRAC (max Q) means its variant of sampling multiple actions and taking the maximum according to the learned Q function. + +Evaluating Sample-Efficiency We then evaluate the sample-efficiency by making much smaller datasets of $5 0 \mathrm { k }$ and $1 0 0 \mathrm { k }$ transitions $5 \sim 1 0 \%$ of Wu et al. (2019)). Surprisingly, Table 1 (middle and bottom) shows that BREMEN can also learn with smaller datasets, where BCQ and BRAC are unable to exceed even BC baseline. This is a novel evaluation protocol we proposed, and our BREMEN’s superior performance here is exactly what enables recursive BREMEN in the next section to be an effective algorithm in deployment-constrained settings. + +# 5.2 EVALUATING DEPLOYMENT EFFICIENCY IN ONLINE RL BENCHMARKS + +We compare BREMEN to ME-TRPO, SAC, BCQ, and BRAC applied to limited deployment settings. To adapt offline methods (BCQ, BRAC) to this setting, we simply apply them in a recursive fashion;3 at each deployment iteration, we collect a batch of data with the most recent policy and then run the offline update with this dataset. As for SAC, we simply change the replay buffer to update only at specific deployment intervals. For the sake of comparison, we align the number of deployments and the amount of data collection at each deployment (either $1 0 0 \mathrm { k }$ or $2 0 0 \mathrm { k }$ ) for all methods.4 + +Figure 2 shows the results with $2 0 0 \mathrm { k }$ (top) and $1 0 0 \mathrm { k }$ (bottom) batched transitions per deployment. Regardless of the environments and the batch size per update, BREMEN achieves remarkable performance while existing online and offline RL methods struggle to make any progress. As a point of comparison, we also include results for online SAC and ME-TRPO without deployment-limits but using the same number of transitions. We additionally compare BREMEN to the model-based offline RL methods with uncertainty-based penalties. See Appendix E for further details. + +Following the motivation of deployment efficiency, obtaining a successful policy under data-collection constraint conditions in the real application, we extensively evaluate our algorithm on more realistic robotics environments in OpenAI Gym. The experimental procedure is the same as above, while we limit the batch size at each deployment as only $2 5 \mathrm { k }$ . Figure 3 presents the reaching tasks with Fetch robot and 20-DoF shadow hand (Plappert et al., 2018), and the experimental results in both environments. Only BREMEN shows stable improvement and high performance, while other offline and online algorithms fail to learn. These results suggest that a model-based method is a desirable approach for satisfying practical requirements in robotics, i.e. sample and deployment efficiency. + +![](images/6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg) +Figure 2: Evaluation of BREMEN with the existing methods (ME-TRPO, SAC, BCQ, BRAC) under deployment constraints (to 5-10 deployments with batch sizes of 200k and 100k). The average cumulative rewards and their standard deviations with 5 random seeds are shown. Vertical dotted lines represent where each policy deployment and data collection happen. BREMEN is able to learn successful policies with only 5-10 deployments, while the state-of-the-art off-policy (SAC), model-based (ME-TRPO), and recursively-applied offline RL algorithms (BCQ, BRAC) often struggle to make any progress. For completeness, we show ME-TRPO(online) and SAC(online) which are their original optimal learning curves without deployment constraints, plotted with respect to samples normalized by the batch size. While SAC(online) substantially outperforms BREMEN in sample efficiency, it uses 1 deployment per sample, leading to 100k-500k deployments required for learning. Interestingly, BREMEN achieves even better performance than the original ME-TRPO(online), suggesting the effectiveness of implicit behavior regularization. For SAC and ME-TRPO under deployment-constrained evaluation, their batch size between policy deployments differs substantially from their standard settings, and therefore we performed extensive hyper-parameter search on the relevant parameters such as the number of policy updates between deployments, as discussed in Appendix F.2.1. + +![](images/aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg) +Figure 3: Robotics environments and the results under deployment constraints (10 deployments with batch sizes of 25k). The performances are averaged over 5 seeds. BREMEN seems the only method that shows both stable improvement and solving tasks without large degradation or sub-optimal convergence. + +# 5.3 ABLATION: EVALUATING EFFECTIVENESS OF IMPLICIT KL CONTROL + +In this section, we present an experiment to better understand the effect of BREMEN’s implicit regularization. Figure 4 shows the KL divergence of learned policies from the last deployed policy. We compare BREMEN to variants of BREMEN that use an explicit KL penalty on value instead of BC initialization (conservative KL trust-region updates are still used). We find that the explicit KL without behavior initialization variants learn policies that move farther away from the last deployed policy than behavior initialized policies. This suggests that the implicit behavior regularization employed by BREMEN is more effective as a conservative policy learning protocol. In addition, to assess the effect of repeated behavior cloning initialization, we also evaluate a variant of BREMEN without behavior cloning re-initialization (grey). This variant works in easier environments (Ant, Halfcheetah), but does not show remarkable progress in more challenging ones with termination (Hopper, Walker2d). + +![](images/caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg) +Figure 4: We examine average cumulative rewards (top) and corresponding KL divergence between the last deployed policy and the target policy (bottom) with batch size 200K in limited deployment settings. The behavior initialized policy remains close to the last deployed policy during improvement without explicit value penalty $- \alpha D _ { \mathrm { K L } } ( { \bar { \pi _ { \theta } } } \| { \hat { \pi } } _ { \beta } )$ . The explicit penalty is controlled by a coefficient $\alpha$ . + +This result empirically supports the need for repeated behavior initialization after each deployment. +The results of further experiments are shown in Appendix G. + +# 6 RELATED WORK + +Deployment Efficiency and Offline RL Although we are not aware of any previous works which explicitly proposed the concept of deployment efficiency, its necessity in many real-world applications has been generally known. One may consider previously proposed semi-batch RL algorithms (Ernst et al., 2005; Lange et al., 2012; Singh et al., 1994; Roux, 2016) or theoretical analysis of switching cost under the tabular PAC-MDP settings (Bai et al., 2019; Guo & Brunskill, 2015) as approaching this issue. More recently, a related but distinct problem known as offline RL has gained popularity (Levine et al., 2020; Wu et al., 2019; Agarwal et al., 2019; Kumar et al., 2020). These works consider an extreme version of 1 deployment, and typically collect the static batch with a partially trained policy rather than a random policy. While offline RL has shown promising results for a variety of real-world applications, such as robotics (Mandlekar et al., 2019), dialogue systems (Jaques et al., 2019), or medical treatments (Gottesman et al., 2018), these algorithms struggle when learning a policy from scratch or when the dataset is small. Nevertheless, common themes of many offline RL algorithms – regularizing the learned policy to the behavior policy (Fujimoto et al., 2019; Kumar et al., 2019; Siegel et al., 2020; Wu et al., 2019) and utilizing ensembles to handle uncertainty (Kumar et al., 2019; Wu et al., 2019) – served as inspirations for the proposed our algorithm. A major difference of BREMEN from prior works is that the target policy is not explicitly forced to stick close to the estimated behavior policy through the policy update except for the initial iteration. Rather, BREMEN employs a more implicit regularization by initializing the learned policy with a behavior cloned policy and then applying conservative trust-region updates. Another major difference is the application of model-based approaches to fully offline settings, which has not been extensively studied in prior works (Levine et al., 2020), except the two concurrent works (Kidambi et al., 2020; Yu et al., 2020) that study pessimistic or uncertainty penalized MDPs with guarantees – closely related to Liu et al. (2019). By contrast, our work shows that a simple technique can already enable model-based offline algorithms to significantly outperform the prior model-free methods, and is, to the best of our knowledge, the first to define and extensively evaluate deployment efficiency with recursive experiments. + +Model-Based RL There are many types of model-based RL algorithms (Sutton, 1991; Deisenroth & Rasmussen, 2011; Heess et al., 2015). A simple algorithmic choice is Dyna-style (Sutton, 1991), which uses a parameterized model to estimate the true MDP transition function, stochastically mapping states and actions to next states. The dynamics model can then serve as a simulator of the environment during policy updates. Dyna-style algorithms often suffer from the distributional shift, also known as model bias, which leads RL agents to exploit regions where the data is insufficient, and significant performance degradation. A variety of remedies have been proposed to relieve the issue of model bias, such as the use of multiple dynamics models as an ensemble (Chua et al., 2018; Kurutach et al., 2018; Janner et al., 2019), meta-learning (Clavera et al., 2018), energy-based regularizer (Boney et al., 2019), game-theoretic framework (Rajeswaran et al., 2020), and explicit penalty for unknown states (Kidambi et al., 2020; Yu et al., 2020). Notably, we have employed a subset of these remedies – model ensembles and trust-region updates (Kurutach et al., 2018) – for BREMEN. Compared to prior works, our work is notable for using BC initialization in conjunction with trust-region updates to alleviate the distribution shift of the learned policy from the dataset used to train the dynamics model. + +# 7 CONCLUSION + +In this work, we introduced deployment efficiency, a novel measure for RL performance that counts the number of changes in the data-collection policy during learning. To enhance deployment efficiency, we proposed a novel model-based offline algorithm, Behavior-Regularized Model-ENsemble (BREMEN), combining model-ensembles with trust region updates from model-based RL literature (Kurutach et al., 2018), and policy initialization with behavior cloning from offline RL literature (Fujimoto et al., 2019; Wu et al., 2019). Crucially, BREMEN can improve policies offline sample-efficiently even when the batch size is 10-20 times smaller than prior works, allowing BREMEN to achieve impressive results in limited deployment settings, obtaining successful policies from scratch in only 5-10 deployments. Not only can this help alleviate costs and risks in real-world applications, but it can also reduce the amount of communication required during distributed learning and could form the basis for communication-efficient large-scale RL in contrast to prior works (Nair et al., 2015; Espeholt et al., 2018; 2019). Most critically, we show that under deployment efficiency constraints, most prior algorithms – model-free or model-based, online or offline – fail to achieve successful learning. One possible direction for future work is to incorporate verification efficiency into consideration, since a stochastic multi-modal policy could collect more diverse transitions while it takes more trajectories to be verified for safety than a uni-modal policy. While we presented promising results on some realistic simulated environments, validating BREMEN on real robots is another direction. We hope our work can gear the research community to value deployment efficiency as an important criterion for RL algorithms, and to eventually achieve similar sample efficiency and asymptotic performance as the state-of-the-art algorithms like SAC (Haarnoja et al., 2018) while having the deployment efficiency well-suited for safe and practical real-world reinforcement learning. + +# REFERENCES + +Fabian Abel, Yashar Deldjoo, Mehdi Elahi, and Daniel Kohlsdorf. Recsys challenge 2017: Offline and online evaluation. In ACM Conference on Recommender Systems, 2017. + +Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline reinforcement learning. arXiv preprint arXiv:1907.04543, 2019. + +Christopher G. Atkeson, Benzun P. Wisely Babu, Nandan Banerjee, Dmitry Berenson, Christoper P. Bove, Xiongyi Cui, Mathew DeDonato, Ruixiang Du, Siyuan Feng, Perry Franklin, Michael Gennert, Joshua P. Graff, Peng He, Aaron Jaeger, Joohyung Kim, Kevin Knoedler, Lening Li, Chenggang Liu, Xianchao Long, Taskin Padir, Felipe Polido, G. G. Tighe, and X Xinjilefu. No falls, no resets: Reliable humanoid behavior in the darpa robotics challenge. In International Conference on Humanoid Robots, 2015. + +Yu Bai, Tengyang Xie, Nan Jiang, and Yu-Xiang Wang. Provably efficient q-learning with low switching cost. In Advances in Neural Information Processing Systems, 2019. + +Gabriel Barth-Maron, Matthew Hoffman, David Budden, Will Dabney, Dan Horgan, Dhruva TB, Alistair Muldal, Nicolas Heess, and Timothy Lillicrap. Distributed distributional deterministic policy gradients. In International Conference on Learning Representations, 2018. + +Rinu Boney, Juho Kannala, and Alexander Ilin. Regularizing model-based planning with energy-based models. In Conference on Robot Learning, 2019. + +Serkan Cabi, Sergio Gómez Colmenarejo, Alexander Novikov, Ksenia Konyushova, Scott Reed, Rae Jeong, Konrad Zolna, Yusuf Aytar, David Budden, Mel Vecerik, Oleg Sushkov, David Barker, Jonathan Scholz, Misha Denil, Nando de Freitas, and Ziyu Wang. Scaling data-driven robotics with reward sketching and batch reinforcement learning. In Robotics: Science and Systems, 2020. + +Yinlam Chow, Aviv Tamar, Shie Mannor, and Marco Pavone. Risk-sensitive and robust decisionmaking: a cvar optimization approach. In Advances in Neural Information Processing Systems, 2015. + +Yinlam Chow, Ofir Nachum, Edgar Duenez-Guzman, and Mohammad Ghavamzadeh. A lyapunovbased approach to safe reinforcement learning. In Advances in neural information processing systems, 2018. + +Yinlam Chow, Ofir Nachum, Aleksandra Faust, Edgar Duenez-Guzman, and Mohammad Ghavamzadeh. Lyapunov-based safe policy optimization for continuous control. arXiv preprint arXiv:1901.10031, 2019. + +Kurtland Chua, Roberto Calandra, Rowan McAllister, and Sergey Levine. Deep reinforcement learning in a handful of trials using probabilistic dynamics models. In Advances in Neural Information Processing Systems, 2018. + +Ignasi Clavera, Jonas Rothfuss, John Schulman, Yasuhiro Fujita, Tamim Asfour, and Pieter Abbeel. Model-based reinforcement learning via meta-policy optimization. In Conference on Robot Learning, 2018. + +Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. arXiv preprint arXiv:1205.4839, 2012. + +Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to policy search. In International Conference on Machine Learning, 2011. + +Gabriel Dulac-Arnold, Daniel Mankowitz, and Todd Hester. Challenges of real-world reinforcement learning. arXiv preprint arXiv:1904.12901, 2019. + +Damien Ernst, Pierre Geurts, and Louis Wehenkel. Tree-based batch mode reinforcement learning. Journal of Machine Learning Research, 2005. + +Lasse Espeholt, Hubert Soyer, Remi Munos, Karen Simonyan, Vlad Mnih, Tom Ward, Yotam Doron, Vlad Firoiu, Tim Harley, Iain Dunning, et al. IMPALA: Scalable distributed deep-rl with importance weighted actor-learner architectures. In International Conference on Machine Learning, 2018. + +Lasse Espeholt, Raphaël Marinier, Piotr Stanczyk, Ke Wang, and Marcin Michalski. SEED RL: Scalable and efficient deep-rl with accelerated central inference. arXiv preprint arXiv:1910.06591, 2019. + +Benjamin Eysenbach, Shixiang Gu, Julian Ibarz, and Sergey Levine. Leave no trace: Learning to reset for safe and autonomous reinforcement learning. International Conference on Learning Representations, 2018. + +Rasool Fakoor, Pratik Chaudhari, and Alexander J. Smola. P3o: Policy-on policy-off policy optimization. arXiv preprint arXiv:1905.01756, 2019. + +Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine. D4RL: Datasets for deep data-driven reinforcement learning. arXiv preprint arXiv:2004.07219, 2020. + +Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. In International Conference on Machine Learning, 2019. + +Omer Gottesman, Fredrik Johansson, Joshua Meier, Jack Dent, Donghun Lee, Srivatsan Srinivasan, Linying Zhang, Yi Ding, David Wihl, Xuefeng Peng, Jiayu Yao, Isaac Lage, Christopher Mosch, Li wei H. Lehman, Matthieu Komorowski, Matthieu Komorowski, Aldo Faisal, Leo Anthony Celi, David Sontag, and Finale Doshi-Velez. Evaluating reinforcement learning algorithms in observational health settings. arXiv preprint arXiv:1805.12298, 2018. + +Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In International Conference on Machine Learning, 2016. + +Shixiang Gu, Ethan Holly, Timothy Lillicrap, and Sergey Levine. Deep reinforcement learning for robotic manipulation with asynchronous off-policy updates. In International Conference on Robotics and Automation, 2017a. + +Shixiang Gu, Timothy Lillicrap, Zoubin Ghahramani, Richard E. Turner, and Sergey Levine. Q-Prop: Sample-efficient policy gradient with an off-policy critic. In International Conference on Learning Representations, 2017b. + +Zhaohan Guo and Emma Brunskill. Concurrent pac rl. In AAAI Conference on Artificial Intelligence, 2015. + +Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In International Conference on Machine Learning, 2018. + +Nicolas Heess, Gregory Wayne, David Silver, Timothy Lillicrap, Tom Erez, and Yuval Tassa. Learning continuous control policies by stochastic value gradients. In Advances in Neural Information Processing Systems, 2015. + +Matteo Hessel, Joseph Modayil, Hado Van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney, Dan Horgan, Bilal Piot, Mohammad Azar, and David Silver. Rainbow: Combining improvements in deep reinforcement learning. In AAAI Conference on Artificial Intelligence, 2018. + +Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine. When to trust your model: Model-based policy optimization. In Advances in Neural Information Processing Systems, 2019. + +Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019. + +Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre Quillen, Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, and Sergey Levine. QT-Opt: Scalable deep reinforcement learning for vision-based robotic manipulation. In Conference on Robot Learning, 2018. + +Rahul Kidambi, Aravind Rajeswaran, Praneeth Netrapalli, and Thorsten Joachims. MOReL : Modelbased offline reinforcement learning. arXiv preprint arXiv:2005.05951, 2020. + +D. Kingma and J. Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations, 2014. + +Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. In Advances in Neural Information Processing Systems, 2019. + +Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine. Conservative q-learning for offline reinforcement learning. arXiv preprint arXiv:2006.04779, 2020. + +Thanard Kurutach, Ignasi Clavera, Yan Duan, Aviv Tamar, and Pieter Abbeel. Model-Ensemble Trust-Region Policy Optimization. In International Conference on Learning Representations, 2018. + +Sascha Lange, Thomas Gabel, and Martin Riedmiller. Batch reinforcement learning. In Reinforcement learning. Springer, 2012. + +Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial, review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020. + +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. In International Conference on Learning Representations, 2016. + +Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching. Machine learning, 1992. + +Yao Liu, Adith Swaminathan, Alekh Agarwal, and Emma Brunskill. Off-policy policy gradient with state distribution correction. arXiv preprint arXiv:1904.08473, 2019. + +Travis Mandel, Yun-En Liu, Sergey Levine, Emma Brunskill, and Zoran Popovic. Offline policy evaluation across representations with applications to educational games. In International Conference on Autonomous Agents and Multiagent Systems, 2014. + +Ajay Mandlekar, Fabio Ramos, Byron Boots, Li Fei-Fei, Animesh Garg, and Dieter Fox. IRIS: Implicit reinforcement without interaction at scale for learning control from offline robot manipulation data. arXiv preprint arXiv:1911.05321, 2019. + +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, 2015. + +Susan A Murphy, Mark J van der Laan, James M Robins, and Conduct Problems Prevention Research Group. Marginal mean models for dynamic regimes. Journal of the American Statistical Association, 2001. + +Ofir Nachum, Shixiang Shane Gu, Honglak Lee, and Sergey Levine. Data-efficient hierarchical reinforcement learning. In Advances in Neural Information Processing Systems, 2018. + +Ofir Nachum, Michael Ahn, Hugo Ponte, Shixiang Gu, and Vikash Kumar. Multi-agent manipulation via locomotion using hierarchical sim2real. In Conference on Robot Learning, 2019. + +Anusha Nagabandi, Gregory Kahn, Ronald S. Fearing, and Sergey Levine. Neural Network Dynamics for Model-Based Deep Reinforcement Learning with Model-Free Fine-Tuning. International Conference on Robotics and Automation, 2018. + +Vaishnavh Nagarajan and J Zico Kolter. Generalization in deep networks: The role of distance from initialization. arXiv preprint arXiv:1901.01672, 2019. + +Arun Nair, Praveen Srinivasan, Sam Blackwell, Cagdas Alcicek, Rory Fearon, Alessandro De Maria, Vedavyas Panneershelvam, Mustafa Suleyman, Charles Beattie, Stig Petersen, et al. Massively parallel methods for deep reinforcement learning. arXiv preprint arXiv:1507.04296, 2015. + +Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement learning with offline datasets. arXiv preprint arXiv:2006.09359, 2020. + +Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning. arXiv preprint arXiv:1910.00177, 2019. + +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. + +Doina Precup, Richard S Sutton, and Sanjoy Dasgupta. Off-policy temporal-difference learning with function approximation. In International Conference on Machine Learning, 2001. + +Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel Todorov, and Sergey Levine. Learning complex dexterous manipulation with deep reinforcement learning and demonstrations. arXiv preprint arXiv:1709.10087, 2017. + +Aravind Rajeswaran, Igor Mordatch, and Vikash Kumar. A game theoretic framework for model based reinforcement learning. arXiv preprint arXiv:2004.07804, 2020. + +Alex Ray, Joshua Achiam, and Dario Amodei. Benchmarking safe exploration in deep reinforcement learning. arXiv preprint arXiv:1910.01708, 2019. + +Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured prediction to no-regret online learning. In International conference on artificial intelligence and statistics, 2011. + +Nicolas Le Roux. Efficient iterative policy optimization. arXiv preprint arXiv:1612.08967, 2016. + +John Schulman, Sergey Levine, Philipp Moritz, Michael Jordan, and Pieter Abbeel. Trust region policy optimization. In International Conference on Machine Learning, 2015. + +John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. + +Noah Y. Siegel, Jost Tobias Springenberg, Felix Berkenkamp, Abbas Abdolmaleki, Michael Neunert, Thomas Lampe, Roland Hafner, and Martin A. Riedmiller. Keep doing what worked: Behavioral modelling priors for offline reinforcement learning. In International Conference on Learning Representations, 2020. + +Satinder P Singh, Tommi Jaakkola, and Michael I Jordan. Learning without state-estimation in partially observable markovian decision processes. In Machine Learning Proceedings. Elsevier, 1994. + +Satinder P. Singh, Tommi Jaakkola, and Michael I. Jordan. Reinforcement learning with soft state aggregation. In Advances in Neural Information Processing Systems, 1995. + +Sungryull Sohn, Yinlam Chow, Jayden Ooi, Ofir Nachum, Honglak Lee, Ed Chi, and Craig Boutilier. BRPO: Batch residual policy optimization. arXiv preprint arXiv:2002.05522, 2020. + +Richard S Sutton. Dyna, an integrated architecture for learning, planning, and reacting. ACM Sigart Bulletin, 1991. + +Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In International Conference on Intelligent Robots and Systems, 2012. + +Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi Zhang, Guodong Zhang, Pieter Abbeel, and Jimmy Ba. Benchmarking model-based reinforcement learning. arXiv preprint arXiv:1907.02057, 2019. + +Yifan Wu, George Tucker, and Ofir Nachum. Behavior Regularized Offline Reinforcement Learning. arXiv preprint arXiv:1911.11361, 2019. + +Tianhe Yu, Garrett Thomas, Lantao Yu, Stefano Ermon, James Zou, Sergey Levine, Chelsea Finn, and Tengyu Ma. MOPO: Model-based offline policy optimization. arXiv preprint arXiv:2005.13239, 2020. + +# APPENDIX + +# A IMPLICIT KL CONTROL FROM A MATHEMATICAL PERSPECTIVE + +We can intuitively understand that behavior cloning initialization with trust-region updates works as a regularization of distributional shift, and this can be supported by theory. Following the notation of Janner et al. (2019), we denote the generalization error of a dynamics model on the state distribution under the true behavior policy as $\begin{array} { r } { \epsilon _ { m } = \operatorname* { m a x } _ { t } \mathbb { E } _ { s \sim d _ { t } ^ { \pi _ { b } } } D _ { T V } ( \bar { p ( } s _ { t + 1 } | s _ { t } , a _ { t } ) | | p _ { \phi } ( s _ { t + 1 } | s _ { t } , a _ { t } ) ) } \end{array}$ , where $D _ { T V }$ represents the total variation distance between true dynamics $p$ and learned model $p _ { \phi }$ . We also denote the distribution shift on the target policy as $\begin{array} { r } { \operatorname* { m a x } _ { s } D _ { T V } ( \pi _ { b } | | \pi ) \le \epsilon _ { \pi } } \end{array}$ . A bound relating the true returns $\eta [ \pi ]$ and the model returns $\hat { \eta } [ \pi ]$ on the target policy is given in Janner et al. (2019) as, + +$$ +\eta [ \pi ] \ge \hat { \eta } [ \pi ] - \left[ \frac { 2 \gamma r _ { m a x } ( \epsilon _ { m } + 2 \epsilon _ { \pi } ) } { ( 1 - \gamma ) ^ { 2 } } + \frac { 4 r _ { m a x } \epsilon _ { \pi } } { ( 1 - \gamma ) } \right] . +$$ + +This bound guarantees the improvement under the true returns as long as the improvement under the model returns increases by more than the slack in the bound due to $\epsilon _ { m } , \epsilon _ { \pi }$ (Janner et al., 2019; Levine et al., 2020). + +We may relate this bound to the specific learning employed by BREMEN, which includes dynamics model learning, behavior cloning policy initialization, and conservative KL-based trust-region policy updates. To do so, we consider an idealized version of BREMEN, where the expectations over states in equations Equation 1, 3, 4 are replaced with supremums and the dynamics model is set to have unit variance. + +Proposition 1 (Policy and model error bound). Suppose we apply the idealized BREMEN on a dataset $\mathcal { D }$ , and define $\epsilon _ { \beta } , \epsilon _ { \phi }$ in terms of the behavior cloning and dynamics model losses as, + +$$ +\begin{array} { r l } & { \epsilon _ { \beta } : = \underset { s } { \operatorname* { s u p } } \mathbb { E } _ { a \sim \mathcal { D } ( - | s ) } [ \| a - \hat { \pi } _ { \beta } \left( s \right) \| _ { 2 } ^ { 2 } / 2 ] - \mathcal { H } ( \pi _ { b } ( - | s ) ) } \\ & { \epsilon _ { \phi } : = \underset { s , a } { \operatorname* { s u p } } \mathbb { E } _ { s ^ { \prime } \sim \mathcal { D } ( - | s , a ) } \left[ \| s ^ { \prime } - \hat { f } _ { \phi } ( s , a ) \| _ { 2 } ^ { 2 } / 2 \right] - \mathcal { H } ( p ( - | s , a ) ) , } \end{array} +$$ + +where $\mathcal { H }$ denotes the Shannon entropy. If one then applies $T$ KL-based trust-region steps of step size $\delta$ (Equation 4) using stochastic dynamics models with mean $\hat { f } _ { \phi }$ and standard deviation $^ { l }$ , then + +$$ +\epsilon _ { \pi } = \sqrt { \frac { 1 } { 2 } \epsilon _ { \beta } + \frac { d _ { a } } { 4 } \log 2 \pi } + T \sqrt { \frac { 1 } { 2 } \delta } ; \epsilon _ { m } \leq \sqrt { \frac { 1 } { 2 } \epsilon _ { \phi } + \frac { d _ { s } } { 4 } \log 2 \pi } , +$$ + +where $d _ { a }$ and $d _ { s }$ denotes the dimension of action and state space. + +Proof. We first consider $\epsilon _ { \pi }$ . The behavior cloning objective in its supremum form is, + +$$ +\begin{array} { r c l } { { \epsilon _ { \beta } } } & { { = } } & { { \displaystyle \operatorname* { s u p } _ { s \in \mathcal { D } } \mathbb { E } _ { a \sim \mathcal { D } ( - | s ) } [ \| a - \hat { \pi } _ { \beta } \left( s \right) \| _ { 2 } ^ { 2 } / 2 ] - \mathcal { H } ( \pi _ { b } ( - | s ) ) } } \\ { { } } & { { } } & { { \displaystyle = } } & { { \displaystyle \operatorname* { s u p } _ { s \in \mathcal { D } } \mathbb { E } _ { a \sim \mathcal { D } ( - | s ) } \left[ - \log \pi _ { \theta _ { 0 } } ( a | s ) \right] - \mathcal { H } ( \pi _ { b } ( - | s ) ) - \frac { d _ { a } } { 2 } \log 2 \pi } } \\ { { } } & { { } } & { { \displaystyle = } } & { { \displaystyle \operatorname* { s u p } _ { s \in \mathcal { D } } D _ { K L } ( \pi _ { b } ( - | s ) | | \pi _ { \theta _ { 0 } } ( - | s ) ) - \frac { d _ { a } } { 2 } \log 2 \pi . } } \end{array} +$$ + +We apply Pinsker’s inequality to the true and estimated behavior policy to yield + +$$ +\operatorname* { s u p } _ { s } D _ { T V } ( \pi _ { b } ( - | s ) | | \pi _ { \theta _ { 0 } } ( - | s ) ) \leq { \sqrt { { \frac { 1 } { 2 } } \epsilon _ { \beta } + { \frac { d _ { a } } { 4 } } \log 2 \pi } } . +$$ + +By the same Pinsker’s inequality, we have, + +$$ +\operatorname* { s u p } _ { s } D _ { T V } \big ( \pi _ { \theta _ { k } } ( - | s ) | | \pi _ { \theta _ { k + 1 } } ( - | s ) \big ) \leq \sqrt { \delta / 2 } . +$$ + +Therefore, by triangle inequality, we have + +$$ +\operatorname* { s u p } _ { s } D _ { T V } ( \pi _ { b } ( - | s ) | | \pi _ { \theta _ { T } } ( - | s ) ) \leq \sqrt { \frac { 1 } { 2 } \epsilon _ { \beta } + \frac { d _ { a } } { 4 } \log { 2 \pi } } + T \sqrt { \frac { 1 } { 2 } \delta } = \epsilon _ { \pi } , +$$ + +as desired. + +We perform similarly for $\epsilon _ { m }$ . The model dynamics loss is + +$$ +\begin{array} { r c l } { { \epsilon _ { \phi } } } & { { = } } & { { \displaystyle \operatorname* { s u p } _ { s , a } \mathbb { E } _ { s ^ { \prime } \sim \mathcal { D } ( - | s , a ) } \left[ \| s ^ { \prime } - \hat { f } _ { \phi } ( s , a ) \| _ { 2 } ^ { 2 } / 2 \right] - \mathcal { H } ( p ( - | s , a ) ) } } \\ { { } } & { { } } & { { } } \\ { { \displaystyle = } } & { { \displaystyle \operatorname* { s u p } _ { s , a } \mathbb { E } _ { s ^ { \prime } \sim \mathcal { D } ( - | s , a ) } \left[ - \log p _ { \phi } ( s ^ { \prime } | s , a ) \right] - \mathcal { H } ( p ( - | s , a ) ) - \frac { d _ { s } } { 2 } \log 2 \pi } } \\ { { } } & { { } } & { { } } \\ { { \displaystyle = } } & { { \displaystyle \operatorname* { s u p } _ { s , a } D _ { K L } ( p ( - | s , a ) | | p _ { \phi } ( - | s , a ) ) - \frac { d _ { s } } { 2 } \log 2 \pi . } } \end{array} +$$ + +We apply Pinsker’s inequality to the true dynamics and learned model to yield + +$$ +\epsilon _ { m } \leq \operatorname* { s u p } _ { s , a } D _ { T V } ( p ( - | s , a ) | | p _ { \phi } ( - | s , a ) ) \leq \sqrt { \frac { 1 } { 2 } \epsilon _ { \phi } + \frac { d _ { s } } { 4 } \log 2 \pi } , +$$ + +as desired. + +# B TRADE-OFF BETWEEN SAMPLE AND DEPLOYMENT EFFICIENCY + +An important aspect of deployment efficiency is the trade-off between sample and deployment efficiency. To collect multiple data points per experiment and show this trade-off, we run recursive BREMEN with different batch sizes, and record how many samples are required to cross different reward thresholds. + +HalfCheetah (Reward 7,000 result) and other results from Figure 5 generally show that high deployment efficiency lowers sample efficiency, confirming the inherent trade-off. However, in rare cases, e.g. Ant (Reward 5,000 result), it could be possible to achieve both high deployment efficiency and high sample efficiency through the right choice of the batch size hyper-parameter. + +![](images/e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg) +Figure 5: From the view of both sample and deployment efficiency at certain cumulative reward threshold, we evaluate BREMEN in Ant (left) and HalfCheetah (right). x and y axes respectively represent the number of samples and the number of deployments.Each data point comes from running BREMEN with different reward thresholds and batch sizes. The numbers above the points (e.g. 1000, 2000, ...) represent the reward threshold. The results (especially, reward 7,000 threshold in HalfCheetah) generally show that high deployment efficiency lowers sample efficiency, confirming the inherent trade-off. + +# C DISCUSSION: IMPORTANCE OF DEPLOYMENT EFFICIENCY IN REAL-WORLD APPLICATIONS + +Our notion of deployment-efficiency is necessitated by cost and safety constraints typical in many real world scenarios. Namely, a common approach to real-world applications (Cabi et al., 2020; DulacArnold et al., 2019; Kalashnikov et al., 2018) is the following iterative training and data-collection paradigm: + +1. Aggregate past previous dataset from worker(s) +2. Update policy based on the collected data +3. Deploy the policy to the worker(s) +4. Monitor the policy works as expected e.g. checking if it does not violate safety criterion +(this safety verification step may alternatively happen before step 3) +5. Let the worker(s) collect experiences with the latest policy. + +It is easy to see that the number of deployments is a critical bottleneck, as it involves both monitoring of the policy (Step 4) and communication to the workers (Step 3), and both of these steps can incur significant cost. Specifically, Step 4 requires evaluating the policy for safety, and often requires human monitors (Atkeson et al., 2015). As for Step 3, communication to workers can also be a bottleneck, especially in highly-parallelized distributed RL systems (Nair et al., 2015; Espeholt et al., 2018; 2019). Every policy deployment requires a potentially expensive communication between different machines/processes, and this can be a bottleneck on the whole system. + +As a concrete example of the necessity of good deployment efficiency, consider optimization of personalization in web apps or recommender systems (Abel et al., 2017). Once a policy is learned on a batch of past experiences, it is deployed to a collection of web-hosting servers. In this scenario, both safety and communication concerns are relevant: Safety of the new policy is typically ensured by initially deploying the policy to a small percentage of users; after monitoring the results for some length of time (e.g. the newly deployed policy does not deteriorate user experiences), one can expand the target user set. As for communication, deploying a new policy to web-hosting servers can be time intensive, especially in large-scale web applications where the policy must be deployed to a network of servers around the world. Thus, in this setting, it is clear that online updating of the policy is infeasible due to both safety and communication constraints. Accordingly, the deployment-efficiency of any candidate RL algorithm is of tantamount importance. + +The safe exploration might be mentioned as a potential alternative to deployment-efficiency. While safe exploration can arguably tackle the first concern above (safety risks of the policy), it does nothing to mitigate the latter (the engineering or communication costs associated with online deployment of a policy). Furthermore, this still ignores the fact that in many scenarios the ability to do safe exploration is not a given. While some safe RL algorithms can provide guarantees in tabular cases, these guarantees no longer hold when using function approximation with neural networks (Chow et al., 2018). In these cases, it can be much more difficult to perform “safe exploration” than it is to develop a deployment-efficient algorithm. + +# D EVALUATING OFFLINE PERFORMANCES ON D4RL DATASETS + +We compare BREMEN to MOPO (Yu et al., 2020), concurrently proposed model-based offline methods penalized by model epistemic uncertainty, and state-of-the-art model-free offline algorithms, namely, CQL (Kumar et al., 2020), BEAR (Kumar et al., 2019), BRAC (Wu et al., 2019), AWR (Peng et al., 2019) and BCQ (Fujimoto et al., 2019), on the D4RL MuJoCo locomotion datasets (Fu et al., 2020), used as standard offline RL benchmarks (Kumar et al., 2020; Nair et al., 2020). They have several types of offline data collected with different strategies. We choose the hyper parameters of BREMEN in Section 5.1 and F.2.2. Table 2 shows BREMEN beats recent state-of-the-art algorithms with the highest normalized score (around 100 corresponds to an expert) in several tasks, while none of the methods consistently achieves the best performance. This result suggests that the implicit regularization with the model-based method performs surprisingly well in offline settings despite of its simplicity. + +
Task NameBCBREMENMOPOCQLBEARBRAC-vAWRBCQ
halfcheetah-randomwalker2d-randomhopper-random2.11.69.836.93.712.231.913.013.335.47.025.17.311.431.21.912.22.51.510.22.24.910.6
10.8
halfcheetah-mediumwalker2d-mediumhopper-medium36.16.629.055.059.669.340.214.026.544.479.258.041.759.152.146.381.131.137.417.435.940.753.154.5
halfcheetah-medium-replaywalker2d-medium-replayhopper-medium-replay38.411.311.847.27.624.154.042.792.546.238.619.233.747.70.90.640.315.528.438.2
26.748.615.033.1
halfcheetah-medium-expertwalker2d-medium-experthopper-medium-expert35.86.4111.953.355.264.657.955.051.762.498.7111.053.440.196.341.981.60.852.753.827.164.757.5110.9
+ +Table 2: Evaluation on D4RL MuJoCo locomotion datasets. The normalized score of BREMEN are averaged over 4 random seeds. We refer the score of MOPO (Yu et al., 2020) and CQL (Kumar et al., 2020) from their original papers. Other results are cited from Fu et al. (2020). BREMEN achieves the best and competitive score in several domains, while none of the algorithms beats all other methods. + +# E INCORPORATING PESSIMISTIC MODEL-BASED OFFLINE METHODS INTO BREMEN + +The concurrent model-based offline RL methods prescribe the use of uncertainty-based penalties (Kidambi et al., 2020; Yu et al., 2020), which can be incorporated into BREMEN. We therefore augmented BREMEN with either a hard (MOReL-like, green) or soft (MOPO-like, orange) reward penalty according to model uncertainty. MOReL quantifies the uncertainty measuring the maximum discrepancy of the prediction across the ensembles of the models and receives constant negative reward (-5.0 in our experiments) if the discrepancy is larger than the threshold (we set 3.0). MOPO measures the uncertainty by the maximum standard deviation of the model ensembles and uses this as a reward penalty with a coefficient (0.1 in our experiments). Evaluations in Figure 6 reveal that the soft reward penalty has notable results in Hopper and Walker2d, where model uncertainty is more crucial due to the episode’s termination. Hard reward penalty seems overly pessimistic in deployment-efficient settings. + +![](images/b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg) +Figure 6: Comparison to the pessimistic reward shaping incorporated into BREMEN. Soft reward penalty (MOPO-like, orange) performs well in the environments where the incomplete models appear to be fatal. + +# F DETAILS OF EXPERIMENTAL SETTINGS + +# F.1 IMPLEMENTATION DETAILS + +For our baseline methods, we use the open-source implementations of SAC, BC, BCQ, and BRAC published in Wu et al. (2019). SAC and BRAC have (300, 300) Q-Network and (200, 200) policy network. BC has (200, 200) policy network, and BCQ has (300, 300) Q-Network, (300, 300) policy network, and (750, 750) conditional VAE. As for online ME-TRPO, we utilize the codebase of model-based RL benchmark (Wang et al., 2019). BREMEN and online ME-TRPO use the policy consisting of two hidden layers with 200 units. The dynamics model also consists of two hidden layers with 1,024 units. We use Adam (Kingma & Ba, 2014) as the optimizer with the learning rate of 0.001 for the dynamics model, and 0.0005 for behavior cloning in BREMEN. Especially in BREMEN and online ME-TRPO, we adopt a linear feature value function to stabilize the training. BREMEN in deployment-efficient settings takes about two or three hours per deployment on an NVIDIA TITAN V. + +To leverage neural networks as Dyna-style (Sutton, 1991) dynamics models, we modify reward and termination function so that they are not dependent on the internal physics engine for calculation, following model-based benchmark codebase (Wang et al., 2019); see Table 3. Note that the score of baselines (e.g., BCQ, BRAC) is slightly different from Wu et al. (2019) due to this modification of the reward function. We re-run each algorithm in our environments and got appropriate convergence. + +The maximum length of one episode is 1,000 steps without any termination in Ant and HalfCheetah; however, termination function is enabled in Hopper and Walker2d. The batch size of transitions for policy update is 50,000 in BREMEN and ME-TRPO, following Kurutach et al. (2018). The batch size of BC and BRAC is 256, and BCQ is 100, also following Wu et al. (2019). + +![](images/22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg) +Figure 7: Four standard MuJoCo benchmark environments used in our experiments. + +
EnvironmentRewardfunctionTerminationinrollouts
Antxt -0.1||atl²2-3.0 × (zt -0.57)² +1False
HalfCheetahxt -0.1||atll2False
Hopperxt - 0.001||atl2²+1True
Walker2dxt-0.001||atl2+1True
+ +Table 3: Reward function and termination in rollouts in the experiments. We remove all contact information from observation of Ant, basically following Wang et al. (2019). + +# F.2 HYPER PARAMETERS + +In this section, we describe the hyper-parameters in both deployment-efficient RL (Section F.2.1) and offline RL (Section F.2.2) settings. We run all of our experiments with five random seed, and the results are averaged. + +# F.2.1 DEPLOYMENT-EFFICIENT RL + +Table 4 shows the hyper-parameters of BREMEN. The rollout length is searched from {250, 500, $1 0 0 0 \}$ , and max step size $\delta$ is searched from {0.001, 0.01, 0.05, 0.1, 1.0}. As for the discount factor $\gamma$ and GAE $\lambda$ , we follow Wang et al. (2019). + +
ParameterAntHalfCheetahHopperWalker2d
Iteration per batch2,0002,0006.0002,000
Deployment551010
Total iteration10.00010.00060.00020.000
Rollouts length2502501,0001,000
Max step size δ0.050.10.050.05
Discount factor y0.990.990.990.99
GAE入0.970.950.950.95
Stationary noise o0.10.10.10.1
+ +Table 4: Hyper-parameters of BREMEN in deployment-efficient settings. + +Number of Iterations for Policy Optimization To achieve high deployment efficiency, the number of iterations for policy optimization between deployments is one of the important hyper-parameters for fast convergence. In the existing methods (BCQ, BRAC, SAC), we search over three values: {10,000, 50,000, 100,000}, and choose 10,000 in BCQ and BRAC, and 100,000 in SAC (Figure 8). For BREMEN, we also search over three values: {2,000, 4,000, 6,000}. Figure 9 shows the results of iteration search, and we choose 2,000 in Ant, HalfCheetah, and Walker2d, and 6,000 in Hopper. + +![](images/e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg) +Figure 8: Search on the number of iterations for SAC policy optimization between deployments. The number of transitions per one data-collection is $2 0 0 \mathrm { K }$ . + +![](images/e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg) +Figure 9: Search on the number of iterations for BREMEN policy optimization between deployments. The number of transitions per one data-collection is 200K. + +Stationary Noise in BREMEN To achieve effective exploration, the stochastic Gaussian policy is a good choice. We found that adding stationary Gaussian noise to the policy in the imaginary trajectories and data collection led to the notable improvement. Stationary Gaussian policy is written as, + +$$ +a _ { t } = \operatorname { t a n h } ( \mu _ { \theta } ( s _ { t } ) ) + \epsilon , \qquad \epsilon \sim \mathcal { N } ( 0 , \sigma ^ { 2 } ) . +$$ + +Another choice is a learned Gaussian policy, which parameterizes not only $\mu _ { \theta }$ but also $\sigma _ { \theta }$ . Learned gaussian policy is also written as, + +$$ +a _ { t } = \operatorname { t a n h } ( \mu _ { \theta } ( s _ { t } ) ) + \sigma _ { \theta } ( s _ { t } ) \odot \epsilon , \qquad \epsilon \sim \mathcal { N } ( 0 , \sigma ^ { 2 } ) . +$$ + +We utilize the zero-mean Gaussian ${ \mathcal { N } } ( 0 , \sigma ^ { 2 } )$ , and tune up $\sigma$ in Figure 10 with HalfCheetah, comparing stationary and learned strategies. From this experiment, we found that the stationary noise, the scale of 0.1, consistently performs well, and therefore we used it for all our experiments. + +![](images/e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg) +Figure 10: Search on the Gaussian noise parameter $\sigma$ in HalfCheetah. The number of transitions per one data-collection is 200K. + +Other Hyper-parameters in the Existing Methods As for online ME-TRPO, we collect 3,000 steps through online interaction with the environment per 25 iterations and split these transitions into a 2-to-1 ratio of training and validation dataset for learning dynamics models. In batch size 100,000 settings, we collect 2,000 steps and split with 1-to-1 ratio. Totally, we iterate 12,500 times policy optimization, which is equivalent to 500 deployments of the policy. Note that we carefully tune up the hyper-parameters of online ME-TRPO, and the performance is improved from Wang et al. (2019). + +Table 5 and Table 6 shows the tunable hyper-parameters of BCQ and BRAC, respectively. We refer Wu et al. (2019) to choose these values. In this work, BRAC applies a primal form of KL value penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum according to the learned Q function. + +Table 5: Hyper-parameters of BCQ. + +
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate3e-053e-043e-063e-05
Perturbation range Φ0.150.50.150.15
+ +Table 6: Hyper-parameters of BRAC. + +
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate1e-41e-33e-51e-5
Divergence penalty α0.30.10.30.3
+ +# F.2.2 OFFLINE RL + +In the offline experiments, we apply the same hyper-parameters as in the deployment-efficient settings described above, except for the iteration per batch. Algorithm 2 is pseudocode for BREMEN in offline RL settings where policies are updated only with one fixed batch dataset. The number of iteration $T$ is set to 6,250 in BREMEN, and 500,000 in BC, BCQ, and BRAC. + +The datasets for $5 0 \mathrm { k }$ or $1 0 0 \mathrm { k }$ experiments are sliced from the beginning of the 1M batched datasets without shuffling, but we observed that the distribution of rewards in 50k or $1 0 0 \mathrm { k }$ is not different from 1M. + +# Algorithm 2 BREMEN for Offline RL + +Input: Offline dataset $\mathcal { D } = \{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \}$ , Initial parameters $\phi = \{ \phi _ { 1 } , \cdot \cdot \cdot , \phi _ { K } \}$ , $\beta$ , Number of policy optimization $T$ . +1: Train $K$ dynamics models $\hat { f } _ { \phi }$ using $\mathcal { D }$ via Equation 1. +2: Train estimated behavior policy $\hat { \pi } _ { \beta }$ using $\mathcal { D }$ by behavior cloning via Equation 3. +3: Initialize target policy $\pi _ { \theta _ { 0 } } = \mathrm { N o r m a l } ( \hat { \pi } _ { \beta } , 1 )$ . +4: for policy optimization $k = 1 , \cdots , T$ do +5: Generate imaginary rollout. +6: Optimize target policy $\pi \theta$ satisfying Equation 4 with the rollout. + +# G ADDITIONAL EXPERIMENTAL RESULTS + +G.1 PERFORMANCE ON THE DATASET WITH DIFFERENT NOISE + +Following Wu et al. (2019) and Kidambi et al. (2020), we additionally compare BREMEN in offline settings to the other baselines (BC, BCQ, BRAC) with five datasets of different exploration noise. Each dataset has also one million transitions. + +• eps1: $40 \%$ of the dataset is collected by data-collection policy (partially trained SAC policy) $\pi _ { b }$ , $40 \%$ of the dataset is collected by epsilon greedy policy with $\epsilon = 0 . 1$ to take a random action, and $20 \%$ of dataset is collected by an uniformly random policy. +• eps3: Same as eps1, $40 \%$ of the dataset is collected by $\pi _ { b }$ , $40 \%$ is collected by epsilon greedy policy with $\epsilon = 0 . 3$ , and $20 \%$ is collected by an uniformly random policy. gaussian1: $40 \%$ of the dataset is collected by data-collection policy $\pi _ { b }$ , $40 \%$ is collected by the policy with adding zero-mean Gaussian noise $\mathcal { N } ( 0 , 0 . \bar { 1 } ^ { 2 } )$ to each action sampled from $\pi _ { b }$ , and $20 \%$ is collected by an uniformly random policy. +• gaussian3: $40 \%$ of the dataset is collected by data-collection policy $\pi _ { b }$ , $40 \%$ is collected by the policy with zero-mean Gaussian noise $\bar { \mathcal { N } ( 0 , 0 . 3 ^ { 2 } ) }$ , and $20 \%$ is collected by an uniformly random policy. +• random: All of the dataset is collected by an uniformly random policy. + +Table 7 shows that BREMEN can also achieve performance competitive with state-of-the-art modelfree offline RL algorithm even with noisy datasets. The training curves of each experiment are shown in Appendix G.4. + +# G.2 COMPARISON AMONG DIFFERENT NUMBER OF ENSEMBLES + +To deal with the distribution shift during policy optimization, also known as model bias, we introduce the dynamics model ensembles. We validate the performance of BREMEN with a different number of dynamics models $K$ . Figure 11 and Figure 12 show the performance of BREMEN with the different number of ensembles in deployment-efficient and offline settings. Ensembles with more dynamics models resulted in better performance due to the mitigation of distributional shift except for $K = 1 0$ , and then we choose $K = 5$ . + +![](images/6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg) +Figure 11: Comparison of the number of dynamics models in deployment-efficient settings. + +![](images/4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg) +Figure 12: Comparison of the number of dynamics models in offline settings. + +
Noise: eps1,1,000,000 (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10772936791815
BC1381±713788±740266±4861185±155
BCQ1937±1166046±276800±659479±537
BRAC2693±1557003±1181243±1623204±103
BRAC (max Q)2907±987070±811488±3863330±147
BREMEN (Ours)3519±1297585±4252818±761710±429
ME-TRPO (offline)1514±5031009±7311301±654128±153
+ +Noise: eps3, 1,000,000 (1M) transitions + +
MethodAntHalfCheetahHopperWalker2d
Dataset BC BCQ BRAC936 1364±121 1938±21 2718±90 2913±872408 2877±797 5739±188 6434±147662 519±532 1170±446 1224±71648 1066±176 1018±1231 2921±101
+ +Noise: gaussian1, 1,000,000 (1M) transitions + +
MethodAntHalfCheetahHopperWalker2d
Dataset107231508821070
BC1279±804142±18931±161137±477
BCQ1958±765854±498475±416608±416
BRAC2905±817026±1681456±1613030±103
BRAC (max Q)2910±1577026±1681575±893242±97
BREMEN (Ours)2912±1657928±3131999±6171402±290
ME-TRPO (offline)1275±6561275±656909±631171±119
+ +
Noise:gaussian3,1,0oo,0oo (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10582872781981
BC1300±344190±69611±4671217±361
BCQ1982±975781±5431137±582258±286
BRAC3084±1803933±27401432±4993253±118
BRAC (max Q)2916±993997±27611417±2673372±153
BREMEN (Ours)3432±1858124±1451867±3542299±474
ME-TRPO (offline)1237±3102141±872973±243219±145
+ +Noise: random, 1,000,000 (1M) transitions + +
MethodAntHalfCheetahHopperWalker2d
Dataset470-285342
BC989±10-2±1106±62108±110
BCQ1222±1142887±242206±7228±12
BRAC1057±923449±259227±3029±54
BRAC (max Q)683±573418±171224±3726±50
BREMEN (Ours)905±113627±193270±68254±6
ME-TRPO (offline)2221±6652701±120321±29262±13
+ +Table 7: Comparison of BREMEN to the existing offline methods in offline settings, namely, BC, BCQ (Fujimoto et al., 2019), and BRAC (Wu et al., 2019). Each cell shows the average cumulative reward and their standard deviation with 5 seeds. The maximum steps per episode is 1,000. Five different types of exploration noise are introduced during the data collection, eps1, eps3, gaussian1, gaussian3, and random. BRAC applies a primal form of KL value penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum according to the learned Q function. + +# G.3 IMPLICIT KL CONTROL IN OFFLINE SETTINGS + +Similar to Section 5.3, we present offline RL experiments to better understand the effect of implicit KL regularization. In contrast to the implicit KL regularization with Equation 4, the optimization of BREMEN with explicit KL value penalty becomes + +$$ +\begin{array} { r l } & { \theta _ { k + 1 } = \underset { \theta } { \arg \operatorname* { m a x } } \ \underset { s , a \sim \pi _ { \theta _ { k } } , \hat { f } _ { \phi _ { i } } } { \mathrm { E } } [ \frac { \pi _ { \theta } ( a | s ) } { \pi _ { \theta _ { k } } ( a | s ) } ( A ^ { \pi _ { \theta _ { k } } } ( s , a ) - \alpha D _ { \mathrm { K L } } ( \pi _ { \theta } ( \cdot | s ) | ) \hat { \pi } _ { \beta } ( \cdot | s ) ) ) ] } \\ & { \quad \mathrm { s . t . } \quad \underset { s \sim \pi _ { \theta _ { k } } } { \mathrm { E } } [ D _ { \mathrm { K L } } ( \pi _ { \theta } ( \cdot | s ) | | \pi _ { \theta _ { k } } ( \cdot | s ) ) ] \leq \delta , } \end{array} +$$ + +where $A ^ { \pi _ { \theta _ { k } } } ( s , a )$ is the advantage of $\pi _ { \theta _ { k } }$ computed using imaginary rollouts with the learned dynamics model and $\delta$ is the maximum step size. Note that BREMEN with explicit KL penalty does not utilize behavior cloning initialization. + +We empirically conclude that the explicit constraint $- \alpha D _ { \mathrm { K L } } \big ( \pi _ { \boldsymbol { \theta } } \big ( \cdot | \boldsymbol { s } \big ) \big | \big | \hat { \pi } _ { \boldsymbol { \beta } } \big ( \cdot | \boldsymbol { s } \big ) \big )$ is unnecessary and just TRPO update with behavior-initialization as implicit regularization is sufficient in BREMEN algorithm. Figure 13 shows the KL divergence between learned policies and the last deployed policies (top row) and model errors measured by a mean squared error of predicted next state from the true state (second row). We find that behavior initialized policy with conservative KL trust-region updates well stuck to the last deployed policy during improvement without explicit KL penalty. The policy initialized with behavior cloning also tended to suppress the increase of model error, which implies that behavior initialization alleviates the effect of the distribution shift. In Walker2d, the model error of BREMEN is relatively large, which may relate to the poor performance with noisy datasets in Section G.1. + +![](images/380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg) +Figure 13: Average cumulative rewards (top row) and corresponding KL divergence of learned policies from the last deployed policy (second row) and model errors (bottom row) in offline settings with 1M dataset (no noise). Behavior initialized policy (purple line) tends to suppress the policy and model error during training better than no-initialization (red line) or explicit KL penalty (green line). + +# G.4 TRAINING CURVES FOR OFFLINE RL WITH DIFFERENT NOISES + +In this section, we present training curves of our all experiments in offline settings. Figure 14 shows the results in Section 5.1. Figure 15, 16, 17, 18, and 19 also show the results in Section G.1. + +![](images/c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg) +Figure 14: Performance in Offline RL experiments (Table 1). (top row) dataset size is 1M, (second row) 100K, and (bottom row) 50K, respectively. Note that $\mathbf { X }$ -axis is the number of iterations with policy optimization in a log-scale. + +![](images/d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg) +Figure 15: Performance in Offline RL experiments with $\epsilon$ -greedy dataset noise $\epsilon = 0 . 1$ . Dataset size is 1M. + +![](images/f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg) +Figure 16: Performance in Offline RL experiments with $\epsilon$ -greedy dataset noise $\epsilon = 0 . 3$ . Dataset size is 1M. + +![](images/130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg) +Figure 17: Performance in Offline RL experiments with gaussian dataset noise $\mathcal { N } ( 0 , 0 . 1 ^ { 2 } )$ . Dataset size is 1M. + +![](images/b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg) +Figure 18: Performance in Offline RL experiments with gaussian dataset noise $\mathcal { N } ( 0 , 0 . 3 ^ { 2 } )$ . Dataset size is 1M. + +![](images/e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg) +Figure 19: Performance in Offline RL experiments with completely random behaviors. Dataset size is 1M. + +# G.5 DEPLOYMENT-EFFICIENT RL EXPERIMENT WITH DIFFERENT REWARD FUNCTION + +In addition to the main results in Section 5.2 (Figure 2), we also evaluate BREMEN in deploymentefficient setting with different reward function. We modified HalfCheetah environment into the one similar to cheetah-run task in Deep Mind Control Suite.5 The reward function is defined as + +$$ +r _ { t } = \left\{ \begin{array} { l l } { 0 . 1 \dot { x } _ { t } } & { ( 0 \leq \dot { x } _ { t } \leq 1 0 ) } \\ { 1 } & { ( \dot { x } _ { t } > 1 0 ) , } \end{array} \right. +$$ + +and the termination is turned off. Figure 20 shows the performance of BREMEN and existing methods. BREMEN also shows better deployment efficiency than other existing offline methods and online ME-TRPO, except for SAC, which is the same trend as that of main results. + +![](images/dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg) +Figure 20: Performance in Deployment-Efficient RL experiments with different reward function of HalfCheetah. \ No newline at end of file diff --git a/parse/train/3hGNqpI4WS/3hGNqpI4WS_content_list.json b/parse/train/3hGNqpI4WS/3hGNqpI4WS_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..ce118d7571152e30a53322526f188d8f915536f4 --- /dev/null +++ b/parse/train/3hGNqpI4WS/3hGNqpI4WS_content_list.json @@ -0,0 +1,2847 @@ +[ + { + "type": "text", + "text": "DEPLOYMENT-EFFICIENT REINFORCEMENT LEARNING VIA MODEL-BASED OFFLINE OPTIMIZATION ", + "text_level": 1, + "bbox": [ + 176, + 99, + 826, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Tatsuya Matsushima∗ Hiroki Furuta∗ Yutaka Matsuo The University of Tokyo {matsushima, furuta, matsuo}@weblab.t.u-tokyo.ac.jp ", + "bbox": [ + 184, + 169, + 686, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ofir Nachum ", + "text_level": 1, + "bbox": [ + 184, + 234, + 277, + 247 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Shixiang Shane Gu ", + "text_level": 1, + "bbox": [ + 312, + 233, + 447, + 247 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Google Research ", + "bbox": [ + 186, + 248, + 297, + 261 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "{ofirnachum, shanegu}@google.com ", + "bbox": [ + 186, + 262, + 498, + 275 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 313, + 544, + 327 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Most reinforcement learning (RL) algorithms assume online access to the environment, in which one may readily interleave updates to the policy with experience collection using that policy. However, in many real-world applications such as health, education, dialogue agents, and robotics, the cost or potential risk of deploying a new data-collection policy is high, to the point that it can become prohibitive to update the data-collection policy more than a few times during learning. With this view, we propose a novel concept of deployment efficiency, measuring the number of distinct data-collection policies that are used during policy learning. We observe that naïvely applying existing model-free offline RL algorithms recursively does not lead to a practical deployment-efficient and sample-efficient algorithm. We propose a novel model-based algorithm, Behavior-Regularized Model-ENsemble (BREMEN), that not only performs better than or comparably as the state-of-the-art dynamic-programming-based and concurrently-proposed model-based offline approaches on existing benchmarks, but can also effectively optimize a policy offline using 10-20 times fewer data than prior works. Furthermore, the recursive application of BREMEN achieves impressive deployment efficiency while maintaining the same or better sample efficiency, learning successful policies from scratch on simulated robotic environments with only 5-10 deployments, compared to typical values of hundreds to millions in standard RL baselines. ", + "bbox": [ + 232, + 344, + 766, + 608 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 637, + 334, + 652 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Reinforcement learning (RL) algorithms have recently demonstrated impressive success in learning behaviors for a variety of sequential decision-making tasks (Barth-Maron et al., 2018; Hessel et al., 2018; Nachum et al., 2019). Virtually all of these demonstrations have relied on highly-frequent online access to the environment, with the RL algorithms often interleaving each update to the policy with additional experience collection of that policy acting in the environment. However, in many real-world applications of RL, such as health (Murphy et al., 2001), education (Mandel et al., 2014), dialog agents (Jaques et al., 2019), and robotics (Gu et al., 2017a; Kalashnikov et al., 2018), the deployment of a new data-collection policy may be associated with a number of costs and risks. If we can learn tasks with a small number of data collection policies, we can substantially reduce them. ", + "bbox": [ + 174, + 670, + 825, + 794 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Based on this idea, we propose a novel measure of RL algorithm performance, namely deployment efficiency, which counts the number of changes in the data-collection policy during learning, as illustrated in Figure 1. This concept may be seen in contrast to sample efficiency or data efficiency (Precup et al., 2001; Degris et al., 2012; Gu et al., 2017b; Haarnoja et al., 2018; Lillicrap et al., 2016; Nachum et al., 2018), which measures the amount of environment interactions incurred during training, without regard to how many distinct policies were deployed to perform those interactions. Even when the data efficiency is high, the deployment efficiency could be low, since many on-policy and off-policy algorithms alternate data collection with each policy update (Schulman et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; Haarnoja et al., 2018). Such dependence on high-frequency policy deployments is best illustrated in the recent works in offline RL (Fujimoto et al., 2019; Jaques et al., 2019; Kumar et al., 2019; Levine et al., 2020; Wu et al., 2019), where baseline off-policy algorithms exhibited poor performance when trained on a static dataset. These offline RL works, however, limit their study to a single deployment, which is enough for achieving high performance with data collected from a sub-optimal behavior policy, but often not from a random policy. In contrast to those prior works, we aim to learn successful policies from scratch in a manner that is both sample and deployment-efficient. ", + "bbox": [ + 174, + 801, + 823, + 885 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg", + "image_caption": [ + "Figure 1: Deployment efficiency is defined as the number of changes in the data-collection policy $( I )$ , which is vital for managing costs and risks of new policy deployment. Online RL algorithms typically require many iterations of policy deployment and data collection, which leads to extremely low deployment efficiency. In contrast, most pure offline algorithms consider updating a policy from a fixed dataset without additional deployment and often fail to learn from a randomly initialized data-collection policy. Interestingly, most state-of-the-art off-policy algorithms are still evaluated in heavily online settings. For example, SAC (Haarnoja et al., 2018) collects one sample per policy update, amounting to 100,000 to 1 million deployments for learning standard benchmark domains. " + ], + "image_footnote": [], + "bbox": [ + 212, + 99, + 794, + 258 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 422, + 825, + 549 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Many existing model-free offline RL algorithms (Levine et al., 2020) are tuned and evaluated on massive datasets (e.g., one million transitions). In order to develop an algorithm that is both sample and deployment-efficient, each iteration of the algorithm between successive deployments has to work effectively on much smaller dataset sizes. We believe model-based RL is better suited to this setting due to its higher demonstrated sample efficiency than model-free RL (Kurutach et al., 2018; Nagabandi et al., 2018). Although the combination of model-based RL and offline or limiteddeployment settings seems straight-forward, we find this naïve approach leads to poor performance. This problem can be attributed to extrapolation errors (Fujimoto et al., 2019) similar to those observed in model-free methods. Specifically, the learned policy may choose sequences of actions which lead it to regions of the state space where the dynamics model cannot predict properly, due to poor coverage of the dataset. This can lead the policy to exploit approximation errors of the dynamics model and be disastrous for learning. In model-free settings, similar data distribution shift problems are typically remedied by regularizing policy updates explicitly with a divergence from the observed data distribution (Jaques et al., 2019; Kumar et al., 2019; Wu et al., 2019), which, however, can overly limit policies’ expressivity (Sohn et al., 2020). ", + "bbox": [ + 174, + 556, + 825, + 763 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In order to better approach these problems arising in limited deployment settings, we propose Behavior-Regularized Model-ENsemble (BREMEN), which learns an ensemble of dynamics models in conjunction with a policy using imaginary rollouts while implicitly regularizing the learned policy via appropriate parameter initialization and conservative trust-region learning updates. We evaluate BREMEN on standard offline RL benchmarks of high-dimensional continuous control tasks, where only a single static dataset is used. In this fixed-batch setting, our experiments show that BREMEN can not only achieve performance competitive with state-of-the-art when using standard dataset sizes but also learn with 10-20 times smaller datasets, which previous methods are unable to attain. Enabled by such stable and sample-efficient offline learning, we show that BREMEN can learn successful policies with only 5-10 deployments in the online setting, significantly outperforming existing off-policy and offline RL algorithms in deployment efficiency while keeping sample efficiency. ", + "bbox": [ + 174, + 771, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 338, + 117 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We consider a Markov Decision Process (MDP) setting, characterized by the tuple $\\begin{array} { r l } { \\mathcal { M } } & { { } = } \\end{array}$ $( S , \\mathcal { A } , p , r , \\gamma )$ , where $s$ is the state space, $\\mathcal { A }$ is the action space, $p ( s ^ { \\prime } | s , a )$ is the transition probability distribution or dynamics, $r ( s )$ is the reward function and $\\gamma \\in ( 0 , 1 )$ is the discount factor. A policy $\\pi$ is a function that determines the agent behavior, mapping from states to probability distributions over actions. The goal is to obtain the optimal policy $\\pi ^ { * }$ , which maximizes the expectation of discounted sum of rewards. The transition probability $p ( s ^ { \\prime } | s , a )$ is usually unknown, and estimated with a parameterized dynamics model $f _ { \\phi }$ (e.g. a neural network) in model-based RL. For simplicity, we assume that the reward function $r ( s )$ is known, and the reward can be computed for any arbitrary state, but we may extend to the unknown setting and predict it using a parameterized function. ", + "bbox": [ + 174, + 133, + 825, + 260 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "On-policy vs Off-policy, Online vs Offline At a high-level, most RL algorithms alternate many times between collecting a batch of transitions (deployments) and optimizing the policy (learning). If the algorithms discard data after each policy update, they are on-policy (Schulman et al., 2015; 2017), while if they accumulate data in a buffer $\\mathcal { D }$ , i.e. experience replay (Lin, 1992), they are off-policy (Mnih et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; 2017b; Haarnoja et al., 2018; Fujimoto et al., 2019; Fakoor et al., 2019) because not all the data in buffer comes from the current policy. However, we consider all these algorithms to be online RL algorithms, since they involve many deployments during learning, ranging from hundreds to millions. On the other hand, in pure offline RL, one does not assume direct interaction and learns a policy from only a fixed dataset, which effectively corresponds to a single deployment allowed for learning. Classically, interpolating these two extremes were semi-batch RL algorithms (Lange et al., 2012; Singh et al., 1995), which improve the policy through repetitions of collecting a large batch of transitions $\\mathcal { D } = \\{ ( s , a , s ^ { \\prime } , r ) \\}$ and performing many or full policy updates. While these semi-batch RL also realize good deployment efficiency, they have not been extensively studied with neural network function approximators or in off-policy settings with experience replay for scalable sample-efficient learning. In our work, we aim to have both high deployment efficiency and sample efficiency by developing an algorithm that can solve the tasks with minimal policy deployments as well as transition samples. ", + "bbox": [ + 174, + 266, + 825, + 502 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 DEPLOYMENT EFFICIENCY ", + "text_level": 1, + "bbox": [ + 178, + 523, + 428, + 540 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Deploying a new policy for data collection can be associated with a number of costs and risks for many real-world applications like medicine, dialogue systems, or robotic control (Murphy et al., 2001; Mandel et al., 2014; Gu et al., 2017a; Kalashnikov et al., 2018; Nachum et al., 2019; Jaques et al., 2019). While there are abundant works on safety for RL (Chow et al., 2015; Eysenbach et al., 2018; Chow et al., 2018; Ray et al., 2019; Chow et al., 2019), they often do not provide guarantees in practice when combined with neural networks and stochastic optimization. It is therefore necessary to verify each policy before deployment (e.g. measuring the variance of rewards or checking out-of-bounds actions). Due to such costs associated with each deployment, it is desirable to minimize the number of distinct deployments needed during the learning process. Even ignoring safety considerations, frequent updates to a deployed policy can exacerbate communication bottlenecks in large-scale distributed RL systems, which are becoming more prevalent (Nair et al., 2015; Espeholt et al., 2018; 2019). We additionally discuss on the importance of the deployment efficiency in real-world applications. See Appendix C. ", + "bbox": [ + 174, + 556, + 826, + 736 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In order to focus research on these practical bottlenecks, we propose a novel measure of RL algorithms, namely, deployment efficiency, which counts how many times the data-collection policy has been changed during improvement from random policy to solve the task. For example, if an RL algorithm operates by using its learned policy to collect transitions from the environment $I$ times, each time collecting a batch of $B$ new transitions, then the number of deployments is $I$ , while the total number of samples collected is $I \\times B$ . The lower $I$ is, the more deployment-efficient the algorithm is; in contrast, sample efficiency looks at $I \\times B$ . Online RL algorithms, whether they are on-policy or off-policy, typically update the policy and acquire new transitions by deploying the newly updated policy at every iteration. This corresponds to performing hundreds to millions of deployments during learning on standard benchmarks (Haarnoja et al., 2018), which is severely deployment inefficient. On the other hand, offline RL literature only studies the case of 1 deployment. A deployment-efficient algorithm would stand in the middle of these two extremes and ideally learn a successful policy from scratch while deploying only a few distinct policies, as illustrated in Figure 1. ", + "bbox": [ + 174, + 743, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Recent deep RL literature seldom emphasizes deployment efficiency, with few exceptions in specific applications (Kalashnikov et al., 2018) where such a learning procedure is necessary. Deploymentinefficient algorithms will fail in scenarios where the deployment of each new policy is exorbitantly expensive, such as safety-critical robotics or user-facing products. Although current state-of-the-art algorithms on continuous control have substantially improved sample or data efficiency, they have not optimized for deployment efficiency. For example, SAC (Haarnoja et al., 2018), an efficient model-free off-policy algorithm, performs half a million to one million policy deployments during learning on MuJoCo (Todorov et al., 2012) benchmarks. ME-TRPO (Kurutach et al., 2018), a model-based algorithm, performs a much lower 100-300 policy deployments, although this is still relatively high for practical settings.2 In our work, we demonstrate successful learning on standard benchmark environments with only 5-10 deployments. ", + "bbox": [ + 174, + 103, + 825, + 256 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 BEHAVIOR-REGULARIZED MODEL-ENSEMBLE ", + "text_level": 1, + "bbox": [ + 174, + 276, + 594, + 294 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To achieve a favorable combination of both high deployment and sample efficiency, we propose Behavior-Regularized Model-ENsemble (BREMEN). BREMEN incorporates Dyna-style (Sutton, 1991; Kurutach et al., 2018) model-based RL, learning an ensemble of dynamics models in conjunction with a policy using imaginary rollouts and behavior regularization via conservative trust-region updates. ", + "bbox": [ + 174, + 309, + 826, + 380 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 IMAGINARY ROLLOUT FROM MODEL ENSEMBLE ", + "text_level": 1, + "bbox": [ + 174, + 396, + 552, + 411 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As in recent Dyna-style model-based RL methods (Kurutach et al., 2018; Wang et al., 2019), BREMEN uses an ensemble of $K$ deterministic dynamics models $\\hat { f } _ { \\phi } = \\left\\{ \\hat { f } _ { \\phi _ { 1 } } , \\dots , \\hat { f } _ { \\phi _ { K } } \\right\\}$ to alleviate the problem of model bias. Each model $\\hat { f } _ { \\phi _ { i } }$ is parameterized by $\\phi _ { i }$ and trained by the following objective, which minimizes mean squared error between the prediction of next state $\\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right)$ and true next state $s _ { t + 1 }$ over a dataset $\\mathcal { D }$ : ", + "bbox": [ + 173, + 422, + 826, + 508 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/acece41c73ec2f834ca9cf9b6bd7fc9f42921e41dec46df584818bce145a09d4.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\phi _ { i } } \\frac { 1 } { | \\mathcal { D } | } \\sum _ { \\left( s _ { t } , a _ { t } , s _ { t + 1 } \\right) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\left. s _ { t + 1 } - \\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right) \\right. _ { 2 } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 516, + 660, + 556 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "During training of a policy $\\pi _ { \\theta }$ , imagined trajectories of states and actions are generated sequentially, using a dynamics model $\\hat { f } _ { \\phi _ { i } }$ that is randomly selected at each time step: ", + "bbox": [ + 169, + 563, + 825, + 594 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/dc95e3b3e4427eee9f1dd8c199b2f4aa7b26ef0533ddc221497d05deb5fd6650.jpg", + "text": "$$\na _ { t } \\sim \\pi _ { \\theta } ( \\cdot | \\hat { s } _ { t } ) , \\quad \\hat { s } _ { t + 1 } = \\hat { f } _ { \\phi _ { i } } ( \\hat { s } _ { t } , a _ { t } ) \\quad \\mathrm { w h e r e } \\quad i \\sim \\{ 1 \\cdot \\cdot \\cdot K \\} .\n$$", + "text_format": "latex", + "bbox": [ + 295, + 602, + 700, + 622 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.2 POLICY UPDATE WITH BEHAVIOR REGULARIZATION ", + "text_level": 1, + "bbox": [ + 174, + 637, + 580, + 652 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In order to manage the discrepancy between the true dynamics and the learned model caused by the distribution shift in batch settings, we propose to use iterative policy updates via a trust-region constraint, re-initialized with a behavior-cloned policy after every deployment. Specifically, after each deployment, we are given an updated dataset of experience transitions $\\mathcal { D }$ . With this dataset, we approximate the true behavior policy $\\pi _ { b }$ through behavior cloning (BC), utilizing a neural network $\\hat { \\pi } _ { \\beta }$ parameterized by $\\beta$ , where we implicitly assume a fixed variance, a common practice in BC (Rajeswaran et al., 2017): ", + "bbox": [ + 173, + 664, + 825, + 762 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/28f2399f44d1d36e1e311585fa4505b5585f6ceb535df8d77fee6acdc89a6c43.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\beta } \\frac { 1 } { | \\mathscr { D } | } \\sum _ { ( s _ { t } , a _ { t } ) \\in \\mathscr { D } } \\frac { 1 } { 2 } \\left. a _ { t } - \\hat { \\pi } _ { \\beta } \\left( s _ { t } \\right) \\right. _ { 2 } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 372, + 768, + 624, + 809 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "After obtaining the estimated behavior policy, we initialize the target policy $\\pi _ { \\theta }$ as a Gaussian policy with mean from $\\hat { \\pi } _ { \\beta }$ and standard deviation of 1. This BC initialization in conjunction with gradient descent based optimization may be seen as implicitly biasing the optimized $\\pi _ { \\theta }$ to be close to the data-collection policy (Nagarajan & Kolter, 2019), and thus works as a remedy for the distribution shift problem (Ross et al., 2011). To further bias the learned policy to be close to the data-collection ", + "bbox": [ + 174, + 815, + 825, + 886 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Algorithm 1 BREMEN for Deployment-Efficient RL ", + "text_level": 1, + "bbox": [ + 174, + 103, + 500, + 118 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/d3126046e5e54a3a6f42fe5bd2e6226e1b66a423e4c630c85402fa980d756fdb.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Input: Empty dataset Dau,D,Initial parameters Φ = {1,·,Φk},β,Number of policy optimization T
Numberof deploymentsI.
1:Randomly initialize the target policy πθ .
2:for deploymenti=1,·.,I do
3:Collect B transitions in the true environment using T and add them to dataset
Dall←DalU{St,at,rt,St+1},D←{st,at,rt,St+1}.
4:Train K dynamics models f using Dau via Equation 1.
5: 6:Train estimated behavior policy πβ using D by behavior cloning via Equation 3.
7:Re-initialize target policy πeo = Normal(β,1). for policy optimization k =1,..·,T do
8:Generate imaginary rollout via Equation 2.
9:Optimize target policy Tβ satisfying Equation 4 with the rollout.
", + "bbox": [ + 176, + 122, + 823, + 281 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "policy, we opt to use a KL-based trust-region optimization (Schulman et al., 2015). Therefore, the optimization of BREMEN becomes ", + "bbox": [ + 173, + 309, + 823, + 337 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8af682036a9c8970146000e325dfec08320cd1c07d20dafde4f6238f0d1bf694.jpg", + "text": "$$\n\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) ] } \\\\ & { \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , \\quad \\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 344, + 746, + 412 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $A ^ { \\pi _ { \\theta _ { k } } } ( s , a )$ is the advantage of $\\pi _ { \\theta _ { k } }$ computed using model-based rollouts in the learned dynamics model and $\\delta$ is the maximum step size. ", + "bbox": [ + 174, + 420, + 823, + 450 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The combination of BC for initialization and finite iterative trust-region updates serves as an implicit KL regularization. This is in contrast to many previous offline RL algorithms that augment the value function with a penalty of explicit KL divergence (Siegel et al., 2020; Wu et al., 2019) or maximum mean discrepancy (Kumar et al., 2019). Empirically, we found that our regularization technique outperforms the explicit KL penalty (Section 5.3). Furthermore, we provide a mathematical intuition explaining how our methods works as an implicit regularization of distributional shift in Appendix A. ", + "bbox": [ + 174, + 455, + 825, + 540 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "By recursively performing offline procedure, BREMEN can be used for deployment-efficient learning as shown in Algorithm 1, starting from a randomly initialized policy, collecting experience data, and performing offline policy updates. ", + "bbox": [ + 174, + 546, + 825, + 589 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 611, + 326, + 626 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In order to realize a deployment-efficient RL algorithm, the batch policy optimizer has to be stable and sample-efficient. We first evaluate BREMEN in the offline setting, where the algorithm learns the policy from a static dataset. Standard benchmarks of MuJoCo physics simulator shown in $\\mathrm { W u }$ et al., 2019) and more recent datasets (Fu et al., 2020) are used in the evaluation, and we compared the asymptotic performance of BREMEN with other offline RL methods including the concurrent model-based approaches. We then tested the sample-efficiency of offline algorithms using smaller datasets. We lastly extend the experiment to deployment-efficient settings, where the algorithms learn their policies from scratch via a limited number of deployments and perform some ablations to see how components in BREMEN affect performance. See Appendix F for further details. ", + "bbox": [ + 173, + 642, + 825, + 767 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5.1 EVALUATING OFFLINE RL PERFORMANCES ", + "text_level": 1, + "bbox": [ + 174, + 785, + 516, + 800 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Standard Benchmarks We evaluate BREMEN on standard offline RL benchmarks following and identical protocol as in Wu et al. (2019): We first train online SAC to a certain cumulative reward threshold, 4,000 in HalfCheetah, 1,000 in Ant, Hopper, and Walker2d, and collect offline datasets. We evaluate agents with the offline dataset of one million (1M) transitions, which is standard for BCQ and BRAC. Table 1 (top) shows that BREMEN can achieve performance competitive with state-of-the-art model-free offline RL algorithms when using the standard dataset size of 1M. We also test BREMEN with more recent benchmarks of D4RL (Fu et al., 2020) and compared the performance with the existing model-free and model-based methods. See Appendix D for the results. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/da843c61732773303b62a35fa53a00983025285105e1b4d41a644d386b72b9a6.jpg", + "table_caption": [], + "table_footnote": [ + "Table 1: Comparison of BREMEN to the existing offline methods on static datasets. Each cell shows the average cumulative reward and their standard deviation, where the number of samples is 1M, 100K, and 50K, respectively. The maximum steps per episode is 1,000. BRAC applies a primal form of KL value penalty, and BRAC (max Q) means its variant of sampling multiple actions and taking the maximum according to the learned Q function. " + ], + "table_body": "
1,000,000(1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset BC1191 1321±141412611281376
4281±12 5783±2721341±161 1130±1271421±147 2153±753
BCQ2021±31 2072±2851422±90
BRAC7192±1152239±1124
BRAC (max Q)2369±2347320±911916±3432409±1210
BREMEN (Ours)3328±2758055±1032058±8522346±230
ME-TRPO (offline)1258±5501804±924518±91211±154
100,000(100K)transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191406611281376
BC1330±814266±211322±1091426±47
BCQ1363±1993915±4111129±2382187±196
BRAC-157±3832505±25011310±702162±1109
BRAC (max Q)-226±3872332±24221422±1012164±1114
BREMEN (Ours)1633±1276095±3702191±4552132±301
ME-TRPO (offline)974±42±434307±17010±61
50,000 (50K) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191413811281376
BC1270±654230±491249±611420±194
BCQ1329±951319±6261178±2351841±439
BRAC-878±244-597±731277±102976±1207
BRAC (max Q)-843±279-590±561276±225903±1137
BREMEN(Ours)1347±2835823±1461632±7962280±647
938±32
ME-TRPO (offfline)-73±95152±13176±343
", + "bbox": [ + 250, + 103, + 746, + 450 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Evaluating Sample-Efficiency We then evaluate the sample-efficiency by making much smaller datasets of $5 0 \\mathrm { k }$ and $1 0 0 \\mathrm { k }$ transitions $5 \\sim 1 0 \\%$ of Wu et al. (2019)). Surprisingly, Table 1 (middle and bottom) shows that BREMEN can also learn with smaller datasets, where BCQ and BRAC are unable to exceed even BC baseline. This is a novel evaluation protocol we proposed, and our BREMEN’s superior performance here is exactly what enables recursive BREMEN in the next section to be an effective algorithm in deployment-constrained settings. ", + "bbox": [ + 174, + 534, + 825, + 617 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.2 EVALUATING DEPLOYMENT EFFICIENCY IN ONLINE RL BENCHMARKS ", + "text_level": 1, + "bbox": [ + 174, + 635, + 705, + 650 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We compare BREMEN to ME-TRPO, SAC, BCQ, and BRAC applied to limited deployment settings. To adapt offline methods (BCQ, BRAC) to this setting, we simply apply them in a recursive fashion;3 at each deployment iteration, we collect a batch of data with the most recent policy and then run the offline update with this dataset. As for SAC, we simply change the replay buffer to update only at specific deployment intervals. For the sake of comparison, we align the number of deployments and the amount of data collection at each deployment (either $1 0 0 \\mathrm { k }$ or $2 0 0 \\mathrm { k }$ ) for all methods.4 ", + "bbox": [ + 174, + 661, + 825, + 746 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Figure 2 shows the results with $2 0 0 \\mathrm { k }$ (top) and $1 0 0 \\mathrm { k }$ (bottom) batched transitions per deployment. Regardless of the environments and the batch size per update, BREMEN achieves remarkable performance while existing online and offline RL methods struggle to make any progress. As a point of comparison, we also include results for online SAC and ME-TRPO without deployment-limits but using the same number of transitions. We additionally compare BREMEN to the model-based offline RL methods with uncertainty-based penalties. See Appendix E for further details. ", + "bbox": [ + 174, + 752, + 825, + 837 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Following the motivation of deployment efficiency, obtaining a successful policy under data-collection constraint conditions in the real application, we extensively evaluate our algorithm on more realistic robotics environments in OpenAI Gym. The experimental procedure is the same as above, while we limit the batch size at each deployment as only $2 5 \\mathrm { k }$ . Figure 3 presents the reaching tasks with Fetch robot and 20-DoF shadow hand (Plappert et al., 2018), and the experimental results in both environments. Only BREMEN shows stable improvement and high performance, while other offline and online algorithms fail to learn. These results suggest that a model-based method is a desirable approach for satisfying practical requirements in robotics, i.e. sample and deployment efficiency. ", + "bbox": [ + 176, + 843, + 823, + 886 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg", + "image_caption": [ + "Figure 2: Evaluation of BREMEN with the existing methods (ME-TRPO, SAC, BCQ, BRAC) under deployment constraints (to 5-10 deployments with batch sizes of 200k and 100k). The average cumulative rewards and their standard deviations with 5 random seeds are shown. Vertical dotted lines represent where each policy deployment and data collection happen. BREMEN is able to learn successful policies with only 5-10 deployments, while the state-of-the-art off-policy (SAC), model-based (ME-TRPO), and recursively-applied offline RL algorithms (BCQ, BRAC) often struggle to make any progress. For completeness, we show ME-TRPO(online) and SAC(online) which are their original optimal learning curves without deployment constraints, plotted with respect to samples normalized by the batch size. While SAC(online) substantially outperforms BREMEN in sample efficiency, it uses 1 deployment per sample, leading to 100k-500k deployments required for learning. Interestingly, BREMEN achieves even better performance than the original ME-TRPO(online), suggesting the effectiveness of implicit behavior regularization. For SAC and ME-TRPO under deployment-constrained evaluation, their batch size between policy deployments differs substantially from their standard settings, and therefore we performed extensive hyper-parameter search on the relevant parameters such as the number of policy updates between deployments, as discussed in Appendix F.2.1. " + ], + "image_footnote": [], + "bbox": [ + 196, + 102, + 805, + 263 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg", + "image_caption": [ + "Figure 3: Robotics environments and the results under deployment constraints (10 deployments with batch sizes of 25k). The performances are averaged over 5 seeds. BREMEN seems the only method that shows both stable improvement and solving tasks without large degradation or sub-optimal convergence. " + ], + "image_footnote": [], + "bbox": [ + 212, + 484, + 776, + 595 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 669, + 825, + 739 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3 ABLATION: EVALUATING EFFECTIVENESS OF IMPLICIT KL CONTROL ", + "text_level": 1, + "bbox": [ + 176, + 757, + 696, + 772 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we present an experiment to better understand the effect of BREMEN’s implicit regularization. Figure 4 shows the KL divergence of learned policies from the last deployed policy. We compare BREMEN to variants of BREMEN that use an explicit KL penalty on value instead of BC initialization (conservative KL trust-region updates are still used). We find that the explicit KL without behavior initialization variants learn policies that move farther away from the last deployed policy than behavior initialized policies. This suggests that the implicit behavior regularization employed by BREMEN is more effective as a conservative policy learning protocol. In addition, to assess the effect of repeated behavior cloning initialization, we also evaluate a variant of BREMEN without behavior cloning re-initialization (grey). This variant works in easier environments (Ant, Halfcheetah), but does not show remarkable progress in more challenging ones with termination (Hopper, Walker2d). ", + "bbox": [ + 174, + 785, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg", + "image_caption": [ + "Figure 4: We examine average cumulative rewards (top) and corresponding KL divergence between the last deployed policy and the target policy (bottom) with batch size 200K in limited deployment settings. The behavior initialized policy remains close to the last deployed policy during improvement without explicit value penalty $- \\alpha D _ { \\mathrm { K L } } ( { \\bar { \\pi _ { \\theta } } } \\| { \\hat { \\pi } } _ { \\beta } )$ . The explicit penalty is controlled by a coefficient $\\alpha$ . " + ], + "image_footnote": [], + "bbox": [ + 191, + 101, + 810, + 282 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "This result empirically supports the need for repeated behavior initialization after each deployment. \nThe results of further experiments are shown in Appendix G. ", + "bbox": [ + 174, + 364, + 823, + 393 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 414, + 344, + 429 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Deployment Efficiency and Offline RL Although we are not aware of any previous works which explicitly proposed the concept of deployment efficiency, its necessity in many real-world applications has been generally known. One may consider previously proposed semi-batch RL algorithms (Ernst et al., 2005; Lange et al., 2012; Singh et al., 1994; Roux, 2016) or theoretical analysis of switching cost under the tabular PAC-MDP settings (Bai et al., 2019; Guo & Brunskill, 2015) as approaching this issue. More recently, a related but distinct problem known as offline RL has gained popularity (Levine et al., 2020; Wu et al., 2019; Agarwal et al., 2019; Kumar et al., 2020). These works consider an extreme version of 1 deployment, and typically collect the static batch with a partially trained policy rather than a random policy. While offline RL has shown promising results for a variety of real-world applications, such as robotics (Mandlekar et al., 2019), dialogue systems (Jaques et al., 2019), or medical treatments (Gottesman et al., 2018), these algorithms struggle when learning a policy from scratch or when the dataset is small. Nevertheless, common themes of many offline RL algorithms – regularizing the learned policy to the behavior policy (Fujimoto et al., 2019; Kumar et al., 2019; Siegel et al., 2020; Wu et al., 2019) and utilizing ensembles to handle uncertainty (Kumar et al., 2019; Wu et al., 2019) – served as inspirations for the proposed our algorithm. A major difference of BREMEN from prior works is that the target policy is not explicitly forced to stick close to the estimated behavior policy through the policy update except for the initial iteration. Rather, BREMEN employs a more implicit regularization by initializing the learned policy with a behavior cloned policy and then applying conservative trust-region updates. Another major difference is the application of model-based approaches to fully offline settings, which has not been extensively studied in prior works (Levine et al., 2020), except the two concurrent works (Kidambi et al., 2020; Yu et al., 2020) that study pessimistic or uncertainty penalized MDPs with guarantees – closely related to Liu et al. (2019). By contrast, our work shows that a simple technique can already enable model-based offline algorithms to significantly outperform the prior model-free methods, and is, to the best of our knowledge, the first to define and extensively evaluate deployment efficiency with recursive experiments. ", + "bbox": [ + 173, + 445, + 825, + 806 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Model-Based RL There are many types of model-based RL algorithms (Sutton, 1991; Deisenroth & Rasmussen, 2011; Heess et al., 2015). A simple algorithmic choice is Dyna-style (Sutton, 1991), which uses a parameterized model to estimate the true MDP transition function, stochastically mapping states and actions to next states. The dynamics model can then serve as a simulator of the environment during policy updates. Dyna-style algorithms often suffer from the distributional shift, also known as model bias, which leads RL agents to exploit regions where the data is insufficient, and significant performance degradation. A variety of remedies have been proposed to relieve the issue of model bias, such as the use of multiple dynamics models as an ensemble (Chua et al., 2018; Kurutach et al., 2018; Janner et al., 2019), meta-learning (Clavera et al., 2018), energy-based regularizer (Boney et al., 2019), game-theoretic framework (Rajeswaran et al., 2020), and explicit penalty for unknown states (Kidambi et al., 2020; Yu et al., 2020). Notably, we have employed a subset of these remedies – model ensembles and trust-region updates (Kurutach et al., 2018) – for BREMEN. Compared to prior works, our work is notable for using BC initialization in conjunction with trust-region updates to alleviate the distribution shift of the learned policy from the dataset used to train the dynamics model. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 208, + 318, + 223 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this work, we introduced deployment efficiency, a novel measure for RL performance that counts the number of changes in the data-collection policy during learning. To enhance deployment efficiency, we proposed a novel model-based offline algorithm, Behavior-Regularized Model-ENsemble (BREMEN), combining model-ensembles with trust region updates from model-based RL literature (Kurutach et al., 2018), and policy initialization with behavior cloning from offline RL literature (Fujimoto et al., 2019; Wu et al., 2019). Crucially, BREMEN can improve policies offline sample-efficiently even when the batch size is 10-20 times smaller than prior works, allowing BREMEN to achieve impressive results in limited deployment settings, obtaining successful policies from scratch in only 5-10 deployments. Not only can this help alleviate costs and risks in real-world applications, but it can also reduce the amount of communication required during distributed learning and could form the basis for communication-efficient large-scale RL in contrast to prior works (Nair et al., 2015; Espeholt et al., 2018; 2019). Most critically, we show that under deployment efficiency constraints, most prior algorithms – model-free or model-based, online or offline – fail to achieve successful learning. One possible direction for future work is to incorporate verification efficiency into consideration, since a stochastic multi-modal policy could collect more diverse transitions while it takes more trajectories to be verified for safety than a uni-modal policy. While we presented promising results on some realistic simulated environments, validating BREMEN on real robots is another direction. We hope our work can gear the research community to value deployment efficiency as an important criterion for RL algorithms, and to eventually achieve similar sample efficiency and asymptotic performance as the state-of-the-art algorithms like SAC (Haarnoja et al., 2018) while having the deployment efficiency well-suited for safe and practical real-world reinforcement learning. ", + "bbox": [ + 173, + 238, + 825, + 530 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fabian Abel, Yashar Deldjoo, Mehdi Elahi, and Daniel Kohlsdorf. Recsys challenge 2017: Offline and online evaluation. In ACM Conference on Recommender Systems, 2017. ", + "bbox": [ + 173, + 126, + 823, + 155 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline reinforcement learning. arXiv preprint arXiv:1907.04543, 2019. ", + "bbox": [ + 171, + 166, + 823, + 195 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Christopher G. Atkeson, Benzun P. Wisely Babu, Nandan Banerjee, Dmitry Berenson, Christoper P. Bove, Xiongyi Cui, Mathew DeDonato, Ruixiang Du, Siyuan Feng, Perry Franklin, Michael Gennert, Joshua P. Graff, Peng He, Aaron Jaeger, Joohyung Kim, Kevin Knoedler, Lening Li, Chenggang Liu, Xianchao Long, Taskin Padir, Felipe Polido, G. G. Tighe, and X Xinjilefu. No falls, no resets: Reliable humanoid behavior in the darpa robotics challenge. In International Conference on Humanoid Robots, 2015. ", + "bbox": [ + 174, + 207, + 825, + 291 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yu Bai, Tengyang Xie, Nan Jiang, and Yu-Xiang Wang. Provably efficient q-learning with low switching cost. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 169, + 301, + 823, + 332 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gabriel Barth-Maron, Matthew Hoffman, David Budden, Will Dabney, Dan Horgan, Dhruva TB, Alistair Muldal, Nicolas Heess, and Timothy Lillicrap. Distributed distributional deterministic policy gradients. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 176, + 342, + 823, + 386 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rinu Boney, Juho Kannala, and Alexander Ilin. Regularizing model-based planning with energy-based models. In Conference on Robot Learning, 2019. ", + "bbox": [ + 174, + 396, + 823, + 426 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Serkan Cabi, Sergio Gómez Colmenarejo, Alexander Novikov, Ksenia Konyushova, Scott Reed, Rae Jeong, Konrad Zolna, Yusuf Aytar, David Budden, Mel Vecerik, Oleg Sushkov, David Barker, Jonathan Scholz, Misha Denil, Nando de Freitas, and Ziyu Wang. Scaling data-driven robotics with reward sketching and batch reinforcement learning. In Robotics: Science and Systems, 2020. ", + "bbox": [ + 174, + 435, + 826, + 493 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yinlam Chow, Aviv Tamar, Shie Mannor, and Marco Pavone. Risk-sensitive and robust decisionmaking: a cvar optimization approach. In Advances in Neural Information Processing Systems, 2015. ", + "bbox": [ + 173, + 503, + 825, + 547 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yinlam Chow, Ofir Nachum, Edgar Duenez-Guzman, and Mohammad Ghavamzadeh. A lyapunovbased approach to safe reinforcement learning. In Advances in neural information processing systems, 2018. ", + "bbox": [ + 174, + 559, + 826, + 601 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yinlam Chow, Ofir Nachum, Aleksandra Faust, Edgar Duenez-Guzman, and Mohammad Ghavamzadeh. Lyapunov-based safe policy optimization for continuous control. arXiv preprint arXiv:1901.10031, 2019. ", + "bbox": [ + 174, + 612, + 825, + 655 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kurtland Chua, Roberto Calandra, Rowan McAllister, and Sergey Levine. Deep reinforcement learning in a handful of trials using probabilistic dynamics models. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 173, + 666, + 825, + 709 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ignasi Clavera, Jonas Rothfuss, John Schulman, Yasuhiro Fujita, Tamim Asfour, and Pieter Abbeel. Model-based reinforcement learning via meta-policy optimization. In Conference on Robot Learning, 2018. ", + "bbox": [ + 173, + 719, + 826, + 763 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. arXiv preprint arXiv:1205.4839, 2012. ", + "bbox": [ + 173, + 773, + 823, + 804 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to policy search. In International Conference on Machine Learning, 2011. ", + "bbox": [ + 169, + 814, + 823, + 844 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gabriel Dulac-Arnold, Daniel Mankowitz, and Todd Hester. Challenges of real-world reinforcement learning. arXiv preprint arXiv:1904.12901, 2019. ", + "bbox": [ + 171, + 854, + 825, + 883 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Damien Ernst, Pierre Geurts, and Louis Wehenkel. Tree-based batch mode reinforcement learning. Journal of Machine Learning Research, 2005. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lasse Espeholt, Hubert Soyer, Remi Munos, Karen Simonyan, Vlad Mnih, Tom Ward, Yotam Doron, Vlad Firoiu, Tim Harley, Iain Dunning, et al. IMPALA: Scalable distributed deep-rl with importance weighted actor-learner architectures. In International Conference on Machine Learning, 2018. ", + "bbox": [ + 173, + 103, + 825, + 160 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lasse Espeholt, Raphaël Marinier, Piotr Stanczyk, Ke Wang, and Marcin Michalski. SEED RL: Scalable and efficient deep-rl with accelerated central inference. arXiv preprint arXiv:1910.06591, 2019. ", + "bbox": [ + 176, + 166, + 825, + 210 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Benjamin Eysenbach, Shixiang Gu, Julian Ibarz, and Sergey Levine. Leave no trace: Learning to reset for safe and autonomous reinforcement learning. International Conference on Learning Representations, 2018. ", + "bbox": [ + 173, + 218, + 823, + 261 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rasool Fakoor, Pratik Chaudhari, and Alexander J. Smola. P3o: Policy-on policy-off policy optimization. arXiv preprint arXiv:1905.01756, 2019. ", + "bbox": [ + 171, + 267, + 825, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine. D4RL: Datasets for deep data-driven reinforcement learning. arXiv preprint arXiv:2004.07219, 2020. ", + "bbox": [ + 173, + 304, + 823, + 334 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 340, + 823, + 371 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Omer Gottesman, Fredrik Johansson, Joshua Meier, Jack Dent, Donghun Lee, Srivatsan Srinivasan, Linying Zhang, Yi Ding, David Wihl, Xuefeng Peng, Jiayu Yao, Isaac Lage, Christopher Mosch, Li wei H. Lehman, Matthieu Komorowski, Matthieu Komorowski, Aldo Faisal, Leo Anthony Celi, David Sontag, and Finale Doshi-Velez. Evaluating reinforcement learning algorithms in observational health settings. arXiv preprint arXiv:1805.12298, 2018. ", + "bbox": [ + 173, + 377, + 825, + 448 + ], + "page_idx": 10 + }, + { + "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, 2016. ", + "bbox": [ + 171, + 455, + 823, + 484 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shixiang Gu, Ethan Holly, Timothy Lillicrap, and Sergey Levine. Deep reinforcement learning for robotic manipulation with asynchronous off-policy updates. In International Conference on Robotics and Automation, 2017a. ", + "bbox": [ + 176, + 492, + 825, + 535 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shixiang Gu, Timothy Lillicrap, Zoubin Ghahramani, Richard E. Turner, and Sergey Levine. Q-Prop: Sample-efficient policy gradient with an off-policy critic. In International Conference on Learning Representations, 2017b. ", + "bbox": [ + 176, + 542, + 825, + 585 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhaohan Guo and Emma Brunskill. Concurrent pac rl. In AAAI Conference on Artificial Intelligence, 2015. ", + "bbox": [ + 171, + 592, + 825, + 622 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In International Conference on Machine Learning, 2018. ", + "bbox": [ + 174, + 628, + 823, + 672 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicolas Heess, Gregory Wayne, David Silver, Timothy Lillicrap, Tom Erez, and Yuval Tassa. Learning continuous control policies by stochastic value gradients. In Advances in Neural Information Processing Systems, 2015. ", + "bbox": [ + 176, + 679, + 825, + 723 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Matteo Hessel, Joseph Modayil, Hado Van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney, Dan Horgan, Bilal Piot, Mohammad Azar, and David Silver. Rainbow: Combining improvements in deep reinforcement learning. In AAAI Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 174, + 729, + 823, + 773 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine. When to trust your model: Model-based policy optimization. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 171, + 780, + 823, + 809 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019. ", + "bbox": [ + 173, + 816, + 823, + 859 + ], + "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, and Sergey Levine. QT-Opt: Scalable deep reinforcement learning for vision-based robotic manipulation. In Conference on Robot Learning, 2018. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rahul Kidambi, Aravind Rajeswaran, Praneeth Netrapalli, and Thorsten Joachims. MOReL : Modelbased offline reinforcement learning. arXiv preprint arXiv:2005.05951, 2020. ", + "bbox": [ + 171, + 103, + 825, + 133 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "D. Kingma and J. Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations, 2014. ", + "bbox": [ + 173, + 140, + 823, + 170 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 176, + 176, + 821, + 219 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine. Conservative q-learning for offline reinforcement learning. arXiv preprint arXiv:2006.04779, 2020. ", + "bbox": [ + 171, + 228, + 825, + 258 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Thanard Kurutach, Ignasi Clavera, Yan Duan, Aviv Tamar, and Pieter Abbeel. Model-Ensemble Trust-Region Policy Optimization. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 176, + 265, + 825, + 308 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sascha Lange, Thomas Gabel, and Martin Riedmiller. Batch reinforcement learning. In Reinforcement learning. Springer, 2012. ", + "bbox": [ + 173, + 315, + 825, + 345 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial, review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020. ", + "bbox": [ + 173, + 353, + 825, + 383 + ], + "page_idx": 11 + }, + { + "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. In International Conference on Learning Representations, 2016. ", + "bbox": [ + 176, + 390, + 823, + 434 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching. Machine learning, 1992. ", + "bbox": [ + 171, + 440, + 825, + 470 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yao Liu, Adith Swaminathan, Alekh Agarwal, and Emma Brunskill. Off-policy policy gradient with state distribution correction. arXiv preprint arXiv:1904.08473, 2019. ", + "bbox": [ + 173, + 478, + 823, + 508 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Travis Mandel, Yun-En Liu, Sergey Levine, Emma Brunskill, and Zoran Popovic. Offline policy evaluation across representations with applications to educational games. In International Conference on Autonomous Agents and Multiagent Systems, 2014. ", + "bbox": [ + 176, + 515, + 823, + 559 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ajay Mandlekar, Fabio Ramos, Byron Boots, Li Fei-Fei, Animesh Garg, and Dieter Fox. IRIS: Implicit reinforcement without interaction at scale for learning control from offline robot manipulation data. arXiv preprint arXiv:1911.05321, 2019. ", + "bbox": [ + 174, + 565, + 823, + 609 + ], + "page_idx": 11 + }, + { + "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, 2015. ", + "bbox": [ + 174, + 617, + 823, + 661 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Susan A Murphy, Mark J van der Laan, James M Robins, and Conduct Problems Prevention Research Group. Marginal mean models for dynamic regimes. Journal of the American Statistical Association, 2001. ", + "bbox": [ + 173, + 667, + 823, + 710 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ofir Nachum, Shixiang Shane Gu, Honglak Lee, and Sergey Levine. Data-efficient hierarchical reinforcement learning. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 173, + 718, + 823, + 748 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ofir Nachum, Michael Ahn, Hugo Ponte, Shixiang Gu, and Vikash Kumar. Multi-agent manipulation via locomotion using hierarchical sim2real. In Conference on Robot Learning, 2019. ", + "bbox": [ + 174, + 756, + 823, + 786 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Anusha Nagabandi, Gregory Kahn, Ronald S. Fearing, and Sergey Levine. Neural Network Dynamics for Model-Based Deep Reinforcement Learning with Model-Free Fine-Tuning. International Conference on Robotics and Automation, 2018. ", + "bbox": [ + 174, + 792, + 825, + 837 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Vaishnavh Nagarajan and J Zico Kolter. Generalization in deep networks: The role of distance from initialization. arXiv preprint arXiv:1901.01672, 2019. ", + "bbox": [ + 173, + 843, + 821, + 873 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Arun Nair, Praveen Srinivasan, Sam Blackwell, Cagdas Alcicek, Rory Fearon, Alessandro De Maria, Vedavyas Panneershelvam, Mustafa Suleyman, Charles Beattie, Stig Petersen, et al. Massively parallel methods for deep reinforcement learning. arXiv preprint arXiv:1507.04296, 2015. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement learning with offline datasets. arXiv preprint arXiv:2006.09359, 2020. ", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning. arXiv preprint arXiv:1910.00177, 2019. ", + "bbox": [ + 174, + 138, + 823, + 167 + ], + "page_idx": 12 + }, + { + "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": [ + 173, + 175, + 826, + 231 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Doina Precup, Richard S Sutton, and Sanjoy Dasgupta. Off-policy temporal-difference learning with function approximation. In International Conference on Machine Learning, 2001. ", + "bbox": [ + 174, + 238, + 823, + 267 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel Todorov, and Sergey Levine. Learning complex dexterous manipulation with deep reinforcement learning and demonstrations. arXiv preprint arXiv:1709.10087, 2017. ", + "bbox": [ + 176, + 273, + 823, + 318 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Aravind Rajeswaran, Igor Mordatch, and Vikash Kumar. A game theoretic framework for model based reinforcement learning. arXiv preprint arXiv:2004.07804, 2020. ", + "bbox": [ + 174, + 324, + 823, + 353 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Alex Ray, Joshua Achiam, and Dario Amodei. Benchmarking safe exploration in deep reinforcement learning. arXiv preprint arXiv:1910.01708, 2019. ", + "bbox": [ + 174, + 359, + 823, + 388 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured prediction to no-regret online learning. In International conference on artificial intelligence and statistics, 2011. ", + "bbox": [ + 174, + 395, + 825, + 438 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Nicolas Le Roux. Efficient iterative policy optimization. arXiv preprint arXiv:1612.08967, 2016. ", + "bbox": [ + 171, + 445, + 808, + 462 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "John Schulman, Sergey Levine, Philipp Moritz, Michael Jordan, and Pieter Abbeel. Trust region policy optimization. In International Conference on Machine Learning, 2015. ", + "bbox": [ + 171, + 467, + 821, + 496 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. ", + "bbox": [ + 171, + 502, + 823, + 532 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Noah Y. Siegel, Jost Tobias Springenberg, Felix Berkenkamp, Abbas Abdolmaleki, Michael Neunert, Thomas Lampe, Roland Hafner, and Martin A. Riedmiller. Keep doing what worked: Behavioral modelling priors for offline reinforcement learning. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 174, + 539, + 825, + 594 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Satinder P Singh, Tommi Jaakkola, and Michael I Jordan. Learning without state-estimation in partially observable markovian decision processes. In Machine Learning Proceedings. Elsevier, 1994. ", + "bbox": [ + 176, + 602, + 823, + 645 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Satinder P. Singh, Tommi Jaakkola, and Michael I. Jordan. Reinforcement learning with soft state aggregation. In Advances in Neural Information Processing Systems, 1995. ", + "bbox": [ + 171, + 651, + 823, + 681 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Sungryull Sohn, Yinlam Chow, Jayden Ooi, Ofir Nachum, Honglak Lee, Ed Chi, and Craig Boutilier. BRPO: Batch residual policy optimization. arXiv preprint arXiv:2002.05522, 2020. ", + "bbox": [ + 174, + 688, + 823, + 718 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Richard S Sutton. Dyna, an integrated architecture for learning, planning, and reacting. ACM Sigart Bulletin, 1991. ", + "bbox": [ + 174, + 723, + 823, + 752 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In International Conference on Intelligent Robots and Systems, 2012. ", + "bbox": [ + 173, + 760, + 825, + 789 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi Zhang, Guodong Zhang, Pieter Abbeel, and Jimmy Ba. Benchmarking model-based reinforcement learning. arXiv preprint arXiv:1907.02057, 2019. ", + "bbox": [ + 174, + 795, + 825, + 838 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yifan Wu, George Tucker, and Ofir Nachum. Behavior Regularized Offline Reinforcement Learning. arXiv preprint arXiv:1911.11361, 2019. ", + "bbox": [ + 174, + 844, + 823, + 875 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tianhe Yu, Garrett Thomas, Lantao Yu, Stefano Ermon, James Zou, Sergey Levine, Chelsea Finn, and Tengyu Ma. MOPO: Model-based offline policy optimization. arXiv preprint arXiv:2005.13239, 2020. ", + "bbox": [ + 176, + 881, + 825, + 922 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 102, + 263, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A IMPLICIT KL CONTROL FROM A MATHEMATICAL PERSPECTIVE ", + "text_level": 1, + "bbox": [ + 174, + 133, + 740, + 152 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We can intuitively understand that behavior cloning initialization with trust-region updates works as a regularization of distributional shift, and this can be supported by theory. Following the notation of Janner et al. (2019), we denote the generalization error of a dynamics model on the state distribution under the true behavior policy as $\\begin{array} { r } { \\epsilon _ { m } = \\operatorname* { m a x } _ { t } \\mathbb { E } _ { s \\sim d _ { t } ^ { \\pi _ { b } } } D _ { T V } ( \\bar { p ( } s _ { t + 1 } | s _ { t } , a _ { t } ) | | p _ { \\phi } ( s _ { t + 1 } | s _ { t } , a _ { t } ) ) } \\end{array}$ , where $D _ { T V }$ represents the total variation distance between true dynamics $p$ and learned model $p _ { \\phi }$ . We also denote the distribution shift on the target policy as $\\begin{array} { r } { \\operatorname* { m a x } _ { s } D _ { T V } ( \\pi _ { b } | | \\pi ) \\le \\epsilon _ { \\pi } } \\end{array}$ . A bound relating the true returns $\\eta [ \\pi ]$ and the model returns $\\hat { \\eta } [ \\pi ]$ on the target policy is given in Janner et al. (2019) as, ", + "bbox": [ + 173, + 165, + 825, + 267 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/d61ef7ba6dbba742a282990d7b12e361b9ee354446876eed6f9a57f566e8039b.jpg", + "text": "$$\n\\eta [ \\pi ] \\ge \\hat { \\eta } [ \\pi ] - \\left[ \\frac { 2 \\gamma r _ { m a x } ( \\epsilon _ { m } + 2 \\epsilon _ { \\pi } ) } { ( 1 - \\gamma ) ^ { 2 } } + \\frac { 4 r _ { m a x } \\epsilon _ { \\pi } } { ( 1 - \\gamma ) } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 330, + 271, + 666, + 306 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This bound guarantees the improvement under the true returns as long as the improvement under the model returns increases by more than the slack in the bound due to $\\epsilon _ { m } , \\epsilon _ { \\pi }$ (Janner et al., 2019; Levine et al., 2020). ", + "bbox": [ + 174, + 309, + 825, + 352 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We may relate this bound to the specific learning employed by BREMEN, which includes dynamics model learning, behavior cloning policy initialization, and conservative KL-based trust-region policy updates. To do so, we consider an idealized version of BREMEN, where the expectations over states in equations Equation 1, 3, 4 are replaced with supremums and the dynamics model is set to have unit variance. ", + "bbox": [ + 173, + 357, + 825, + 428 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proposition 1 (Policy and model error bound). Suppose we apply the idealized BREMEN on a dataset $\\mathcal { D }$ , and define $\\epsilon _ { \\beta } , \\epsilon _ { \\phi }$ in terms of the behavior cloning and dynamics model losses as, ", + "bbox": [ + 171, + 431, + 823, + 460 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c2f2c3d72e588942d1f90e27679108d3e13e651aa575885e47b8e07354fb2315.jpg", + "text": "$$\n\\begin{array} { r l } & { \\epsilon _ { \\beta } : = \\underset { s } { \\operatorname* { s u p } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } \\\\ & { \\epsilon _ { \\phi } : = \\underset { s , a } { \\operatorname* { s u p } } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 292, + 465, + 705, + 525 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $\\mathcal { H }$ denotes the Shannon entropy. If one then applies $T$ KL-based trust-region steps of step size $\\delta$ (Equation 4) using stochastic dynamics models with mean $\\hat { f } _ { \\phi }$ and standard deviation $^ { l }$ , then ", + "bbox": [ + 169, + 529, + 825, + 560 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/8ccdfa3eb115b464fecd2fe3267fdfdd209a81219d9b0a18cf587294a3b2cc52.jpg", + "text": "$$\n\\epsilon _ { \\pi } = \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log 2 \\pi } + T \\sqrt { \\frac { 1 } { 2 } \\delta } ; \\epsilon _ { m } \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ,\n$$", + "text_format": "latex", + "bbox": [ + 281, + 564, + 715, + 601 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $d _ { a }$ and $d _ { s }$ denotes the dimension of action and state space. ", + "bbox": [ + 174, + 604, + 602, + 619 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof. We first consider $\\epsilon _ { \\pi }$ . The behavior cloning objective in its supremum form is, ", + "bbox": [ + 176, + 633, + 728, + 648 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/510a7a6f4c53ed1fd9bf08aa7d02a389c968aa539179d59d749e976e7870b259.jpg", + "text": "$$\n\\begin{array} { r c l } { { \\epsilon _ { \\beta } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } \\left[ - \\log \\pi _ { \\theta _ { 0 } } ( a | s ) \\right] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } D _ { K L } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 652, + 727, + 752 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We apply Pinsker’s inequality to the true and estimated behavior policy to yield ", + "bbox": [ + 173, + 755, + 692, + 770 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/cd03e1a355c462e8c51673a94646e5c30e546ca5516d39be57268f3f2d32018e.jpg", + "text": "$$\n\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) \\leq { \\sqrt { { \\frac { 1 } { 2 } } \\epsilon _ { \\beta } + { \\frac { d _ { a } } { 4 } } \\log 2 \\pi } } .\n$$", + "text_format": "latex", + "bbox": [ + 320, + 773, + 676, + 810 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "By the same Pinsker’s inequality, we have, ", + "bbox": [ + 174, + 821, + 455, + 837 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/cc6a736a77029996a3131bc442a1cd7ba489b5215b67cb069131c1f6b0992f95.jpg", + "text": "$$\n\\operatorname* { s u p } _ { s } D _ { T V } \\big ( \\pi _ { \\theta _ { k } } ( - | s ) | | \\pi _ { \\theta _ { k + 1 } } ( - | s ) \\big ) \\leq \\sqrt { \\delta / 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 354, + 840, + 642, + 869 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Therefore, by triangle inequality, we have ", + "bbox": [ + 174, + 872, + 449, + 887 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/adbda65b070ce562bc17233c93098a26063b412526439385966fa8c83b1bd933.jpg", + "text": "$$\n\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { T } } ( - | s ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log { 2 \\pi } } + T \\sqrt { \\frac { 1 } { 2 } \\delta } = \\epsilon _ { \\pi } ,\n$$", + "text_format": "latex", + "bbox": [ + 266, + 892, + 728, + 928 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "as desired. ", + "bbox": [ + 173, + 103, + 245, + 117 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We perform similarly for $\\epsilon _ { m }$ . The model dynamics loss is ", + "bbox": [ + 173, + 125, + 553, + 140 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/aa87fc6f3057155c6737ed593a8a5dafd8d078ffdb95066df40607dddf37e869.jpg", + "text": "$$\n\\begin{array} { r c l } { { \\epsilon _ { \\phi } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ - \\log p _ { \\phi } ( s ^ { \\prime } | s , a ) \\right] - \\mathcal { H } ( p ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } D _ { K L } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 251, + 145, + 743, + 250 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We apply Pinsker’s inequality to the true dynamics and learned model to yield ", + "bbox": [ + 171, + 253, + 687, + 270 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/dc340071f12361b39a5e91cdb583922019af7ff05d0a8d67d4402eec2d3f9721.jpg", + "text": "$$\n\\epsilon _ { m } \\leq \\operatorname* { s u p } _ { s , a } D _ { T V } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ,\n$$", + "text_format": "latex", + "bbox": [ + 292, + 275, + 704, + 313 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "as desired. ", + "bbox": [ + 173, + 319, + 245, + 334 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B TRADE-OFF BETWEEN SAMPLE AND DEPLOYMENT EFFICIENCY ", + "text_level": 1, + "bbox": [ + 174, + 353, + 736, + 371 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "An important aspect of deployment efficiency is the trade-off between sample and deployment efficiency. To collect multiple data points per experiment and show this trade-off, we run recursive BREMEN with different batch sizes, and record how many samples are required to cross different reward thresholds. ", + "bbox": [ + 173, + 385, + 825, + 441 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "HalfCheetah (Reward 7,000 result) and other results from Figure 5 generally show that high deployment efficiency lowers sample efficiency, confirming the inherent trade-off. However, in rare cases, e.g. Ant (Reward 5,000 result), it could be possible to achieve both high deployment efficiency and high sample efficiency through the right choice of the batch size hyper-parameter. ", + "bbox": [ + 173, + 449, + 826, + 506 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg", + "image_caption": [ + "Figure 5: From the view of both sample and deployment efficiency at certain cumulative reward threshold, we evaluate BREMEN in Ant (left) and HalfCheetah (right). x and y axes respectively represent the number of samples and the number of deployments.Each data point comes from running BREMEN with different reward thresholds and batch sizes. The numbers above the points (e.g. 1000, 2000, ...) represent the reward threshold. The results (especially, reward 7,000 threshold in HalfCheetah) generally show that high deployment efficiency lowers sample efficiency, confirming the inherent trade-off. " + ], + "image_footnote": [], + "bbox": [ + 207, + 520, + 789, + 660 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C DISCUSSION: IMPORTANCE OF DEPLOYMENT EFFICIENCY IN REAL-WORLD APPLICATIONS ", + "text_level": 1, + "bbox": [ + 173, + 102, + 714, + 136 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Our notion of deployment-efficiency is necessitated by cost and safety constraints typical in many real world scenarios. Namely, a common approach to real-world applications (Cabi et al., 2020; DulacArnold et al., 2019; Kalashnikov et al., 2018) is the following iterative training and data-collection paradigm: ", + "bbox": [ + 174, + 151, + 826, + 207 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "1. Aggregate past previous dataset from worker(s) \n2. Update policy based on the collected data \n3. Deploy the policy to the worker(s) \n4. Monitor the policy works as expected e.g. checking if it does not violate safety criterion \n(this safety verification step may alternatively happen before step 3) \n5. Let the worker(s) collect experiences with the latest policy. ", + "bbox": [ + 210, + 219, + 825, + 324 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "It is easy to see that the number of deployments is a critical bottleneck, as it involves both monitoring of the policy (Step 4) and communication to the workers (Step 3), and both of these steps can incur significant cost. Specifically, Step 4 requires evaluating the policy for safety, and often requires human monitors (Atkeson et al., 2015). As for Step 3, communication to workers can also be a bottleneck, especially in highly-parallelized distributed RL systems (Nair et al., 2015; Espeholt et al., 2018; 2019). Every policy deployment requires a potentially expensive communication between different machines/processes, and this can be a bottleneck on the whole system. ", + "bbox": [ + 174, + 335, + 825, + 433 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "As a concrete example of the necessity of good deployment efficiency, consider optimization of personalization in web apps or recommender systems (Abel et al., 2017). Once a policy is learned on a batch of past experiences, it is deployed to a collection of web-hosting servers. In this scenario, both safety and communication concerns are relevant: Safety of the new policy is typically ensured by initially deploying the policy to a small percentage of users; after monitoring the results for some length of time (e.g. the newly deployed policy does not deteriorate user experiences), one can expand the target user set. As for communication, deploying a new policy to web-hosting servers can be time intensive, especially in large-scale web applications where the policy must be deployed to a network of servers around the world. Thus, in this setting, it is clear that online updating of the policy is infeasible due to both safety and communication constraints. Accordingly, the deployment-efficiency of any candidate RL algorithm is of tantamount importance. ", + "bbox": [ + 174, + 439, + 825, + 592 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The safe exploration might be mentioned as a potential alternative to deployment-efficiency. While safe exploration can arguably tackle the first concern above (safety risks of the policy), it does nothing to mitigate the latter (the engineering or communication costs associated with online deployment of a policy). Furthermore, this still ignores the fact that in many scenarios the ability to do safe exploration is not a given. While some safe RL algorithms can provide guarantees in tabular cases, these guarantees no longer hold when using function approximation with neural networks (Chow et al., 2018). In these cases, it can be much more difficult to perform “safe exploration” than it is to develop a deployment-efficient algorithm. ", + "bbox": [ + 174, + 598, + 825, + 710 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D EVALUATING OFFLINE PERFORMANCES ON D4RL DATASETS ", + "text_level": 1, + "bbox": [ + 173, + 102, + 717, + 118 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We compare BREMEN to MOPO (Yu et al., 2020), concurrently proposed model-based offline methods penalized by model epistemic uncertainty, and state-of-the-art model-free offline algorithms, namely, CQL (Kumar et al., 2020), BEAR (Kumar et al., 2019), BRAC (Wu et al., 2019), AWR (Peng et al., 2019) and BCQ (Fujimoto et al., 2019), on the D4RL MuJoCo locomotion datasets (Fu et al., 2020), used as standard offline RL benchmarks (Kumar et al., 2020; Nair et al., 2020). They have several types of offline data collected with different strategies. We choose the hyper parameters of BREMEN in Section 5.1 and F.2.2. Table 2 shows BREMEN beats recent state-of-the-art algorithms with the highest normalized score (around 100 corresponds to an expert) in several tasks, while none of the methods consistently achieves the best performance. This result suggests that the implicit regularization with the model-based method performs surprisingly well in offline settings despite of its simplicity. ", + "bbox": [ + 173, + 133, + 825, + 286 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/31dde696c0594367a80d70f9fc4587080fb5a3e4444ebb5e37b594bb636d18eb.jpg", + "table_caption": [], + "table_footnote": [ + "Table 2: Evaluation on D4RL MuJoCo locomotion datasets. The normalized score of BREMEN are averaged over 4 random seeds. We refer the score of MOPO (Yu et al., 2020) and CQL (Kumar et al., 2020) from their original papers. Other results are cited from Fu et al. (2020). BREMEN achieves the best and competitive score in several domains, while none of the algorithms beats all other methods. " + ], + "table_body": "
Task NameBCBREMENMOPOCQLBEARBRAC-vAWRBCQ
halfcheetah-randomwalker2d-randomhopper-random2.11.69.836.93.712.231.913.013.335.47.025.17.311.431.21.912.22.51.510.22.24.910.6
10.8
halfcheetah-mediumwalker2d-mediumhopper-medium36.16.629.055.059.669.340.214.026.544.479.258.041.759.152.146.381.131.137.417.435.940.753.154.5
halfcheetah-medium-replaywalker2d-medium-replayhopper-medium-replay38.411.311.847.27.624.154.042.792.546.238.619.233.747.70.90.640.315.528.438.2
26.748.615.033.1
halfcheetah-medium-expertwalker2d-medium-experthopper-medium-expert35.86.4111.953.355.264.657.955.051.762.498.7111.053.440.196.341.981.60.852.753.827.164.757.5110.9
", + "bbox": [ + 173, + 299, + 854, + 469 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "E INCORPORATING PESSIMISTIC MODEL-BASED OFFLINE METHODS INTO BREMEN ", + "text_level": 1, + "bbox": [ + 176, + 554, + 803, + 588 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The concurrent model-based offline RL methods prescribe the use of uncertainty-based penalties (Kidambi et al., 2020; Yu et al., 2020), which can be incorporated into BREMEN. We therefore augmented BREMEN with either a hard (MOReL-like, green) or soft (MOPO-like, orange) reward penalty according to model uncertainty. MOReL quantifies the uncertainty measuring the maximum discrepancy of the prediction across the ensembles of the models and receives constant negative reward (-5.0 in our experiments) if the discrepancy is larger than the threshold (we set 3.0). MOPO measures the uncertainty by the maximum standard deviation of the model ensembles and uses this as a reward penalty with a coefficient (0.1 in our experiments). Evaluations in Figure 6 reveal that the soft reward penalty has notable results in Hopper and Walker2d, where model uncertainty is more crucial due to the episode’s termination. Hard reward penalty seems overly pessimistic in deployment-efficient settings. ", + "bbox": [ + 173, + 603, + 825, + 757 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg", + "image_caption": [ + "Figure 6: Comparison to the pessimistic reward shaping incorporated into BREMEN. Soft reward penalty (MOPO-like, orange) performs well in the environments where the incomplete models appear to be fatal. " + ], + "image_footnote": [], + "bbox": [ + 186, + 772, + 813, + 867 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "F DETAILS OF EXPERIMENTAL SETTINGS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 532, + 118 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "F.1 IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 133, + 405, + 147 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "For our baseline methods, we use the open-source implementations of SAC, BC, BCQ, and BRAC published in Wu et al. (2019). SAC and BRAC have (300, 300) Q-Network and (200, 200) policy network. BC has (200, 200) policy network, and BCQ has (300, 300) Q-Network, (300, 300) policy network, and (750, 750) conditional VAE. As for online ME-TRPO, we utilize the codebase of model-based RL benchmark (Wang et al., 2019). BREMEN and online ME-TRPO use the policy consisting of two hidden layers with 200 units. The dynamics model also consists of two hidden layers with 1,024 units. We use Adam (Kingma & Ba, 2014) as the optimizer with the learning rate of 0.001 for the dynamics model, and 0.0005 for behavior cloning in BREMEN. Especially in BREMEN and online ME-TRPO, we adopt a linear feature value function to stabilize the training. BREMEN in deployment-efficient settings takes about two or three hours per deployment on an NVIDIA TITAN V. ", + "bbox": [ + 174, + 160, + 825, + 311 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "To leverage neural networks as Dyna-style (Sutton, 1991) dynamics models, we modify reward and termination function so that they are not dependent on the internal physics engine for calculation, following model-based benchmark codebase (Wang et al., 2019); see Table 3. Note that the score of baselines (e.g., BCQ, BRAC) is slightly different from Wu et al. (2019) due to this modification of the reward function. We re-run each algorithm in our environments and got appropriate convergence. ", + "bbox": [ + 174, + 319, + 825, + 388 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The maximum length of one episode is 1,000 steps without any termination in Ant and HalfCheetah; however, termination function is enabled in Hopper and Walker2d. The batch size of transitions for policy update is 50,000 in BREMEN and ME-TRPO, following Kurutach et al. (2018). The batch size of BC and BRAC is 256, and BCQ is 100, also following Wu et al. (2019). ", + "bbox": [ + 174, + 395, + 825, + 452 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg", + "image_caption": [ + "Figure 7: Four standard MuJoCo benchmark environments used in our experiments. " + ], + "image_footnote": [], + "bbox": [ + 228, + 477, + 771, + 597 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/c3dfc3126e61a5575c4040b8e48f97532d206a09c9889e721728d3fd7fd2dcf6.jpg", + "table_caption": [], + "table_footnote": [ + "Table 3: Reward function and termination in rollouts in the experiments. We remove all contact information from observation of Ant, basically following Wang et al. (2019). " + ], + "table_body": "
EnvironmentRewardfunctionTerminationinrollouts
Antxt -0.1||atl²2-3.0 × (zt -0.57)² +1False
HalfCheetahxt -0.1||atll2False
Hopperxt - 0.001||atl2²+1True
Walker2dxt-0.001||atl2+1True
", + "bbox": [ + 209, + 636, + 789, + 714 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "F.2 HYPER PARAMETERS ", + "text_level": 1, + "bbox": [ + 174, + 103, + 362, + 118 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "In this section, we describe the hyper-parameters in both deployment-efficient RL (Section F.2.1) and offline RL (Section F.2.2) settings. We run all of our experiments with five random seed, and the results are averaged. ", + "bbox": [ + 174, + 128, + 825, + 172 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "F.2.1 DEPLOYMENT-EFFICIENT RL ", + "text_level": 1, + "bbox": [ + 174, + 186, + 429, + 202 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Table 4 shows the hyper-parameters of BREMEN. The rollout length is searched from {250, 500, $1 0 0 0 \\}$ , and max step size $\\delta$ is searched from {0.001, 0.01, 0.05, 0.1, 1.0}. As for the discount factor $\\gamma$ and GAE $\\lambda$ , we follow Wang et al. (2019). ", + "bbox": [ + 176, + 210, + 823, + 253 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/5bde77e082d02bae1f8f57063a505c8389660c84c3e31f5bf115066a97eec5d1.jpg", + "table_caption": [], + "table_footnote": [ + "Table 4: Hyper-parameters of BREMEN in deployment-efficient settings. " + ], + "table_body": "
ParameterAntHalfCheetahHopperWalker2d
Iteration per batch2,0002,0006.0002,000
Deployment551010
Total iteration10.00010.00060.00020.000
Rollouts length2502501,0001,000
Max step size δ0.050.10.050.05
Discount factor y0.990.990.990.99
GAE入0.970.950.950.95
Stationary noise o0.10.10.10.1
", + "bbox": [ + 276, + 267, + 720, + 386 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Number of Iterations for Policy Optimization To achieve high deployment efficiency, the number of iterations for policy optimization between deployments is one of the important hyper-parameters for fast convergence. In the existing methods (BCQ, BRAC, SAC), we search over three values: {10,000, 50,000, 100,000}, and choose 10,000 in BCQ and BRAC, and 100,000 in SAC (Figure 8). For BREMEN, we also search over three values: {2,000, 4,000, 6,000}. Figure 9 shows the results of iteration search, and we choose 2,000 in Ant, HalfCheetah, and Walker2d, and 6,000 in Hopper. ", + "bbox": [ + 173, + 426, + 826, + 511 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg", + "image_caption": [ + "Figure 8: Search on the number of iterations for SAC policy optimization between deployments. The number of transitions per one data-collection is $2 0 0 \\mathrm { K }$ . " + ], + "image_footnote": [], + "bbox": [ + 189, + 529, + 812, + 640 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg", + "image_caption": [ + "Figure 9: Search on the number of iterations for BREMEN policy optimization between deployments. The number of transitions per one data-collection is 200K. " + ], + "image_footnote": [], + "bbox": [ + 187, + 696, + 810, + 808 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Stationary Noise in BREMEN To achieve effective exploration, the stochastic Gaussian policy is a good choice. We found that adding stationary Gaussian noise to the policy in the imaginary trajectories and data collection led to the notable improvement. Stationary Gaussian policy is written as, ", + "bbox": [ + 173, + 103, + 825, + 159 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/1486e0d667bf2f8e17e0cefd8e07b39e41c2baf506d7618fd466feb8080a194d.jpg", + "text": "$$\na _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 354, + 156, + 643, + 175 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Another choice is a learned Gaussian policy, which parameterizes not only $\\mu _ { \\theta }$ but also $\\sigma _ { \\theta }$ . Learned gaussian policy is also written as, ", + "bbox": [ + 171, + 178, + 823, + 207 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/398fcde4eaed74b5a84d11c3a19eb0c34bd1dd1bba4a64a1aaccbee32ce8a45e.jpg", + "text": "$$\na _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\sigma _ { \\theta } ( s _ { t } ) \\odot \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 323, + 212, + 674, + 231 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "We utilize the zero-mean Gaussian ${ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )$ , and tune up $\\sigma$ in Figure 10 with HalfCheetah, comparing stationary and learned strategies. From this experiment, we found that the stationary noise, the scale of 0.1, consistently performs well, and therefore we used it for all our experiments. ", + "bbox": [ + 174, + 236, + 826, + 279 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg", + "image_caption": [ + "Figure 10: Search on the Gaussian noise parameter $\\sigma$ in HalfCheetah. The number of transitions per one data-collection is 200K. " + ], + "image_footnote": [], + "bbox": [ + 269, + 295, + 725, + 479 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Other Hyper-parameters in the Existing Methods As for online ME-TRPO, we collect 3,000 steps through online interaction with the environment per 25 iterations and split these transitions into a 2-to-1 ratio of training and validation dataset for learning dynamics models. In batch size 100,000 settings, we collect 2,000 steps and split with 1-to-1 ratio. Totally, we iterate 12,500 times policy optimization, which is equivalent to 500 deployments of the policy. Note that we carefully tune up the hyper-parameters of online ME-TRPO, and the performance is improved from Wang et al. (2019). ", + "bbox": [ + 173, + 539, + 825, + 623 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Table 5 and Table 6 shows the tunable hyper-parameters of BCQ and BRAC, respectively. We refer Wu et al. (2019) to choose these values. In this work, BRAC applies a primal form of KL value penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum according to the learned Q function. ", + "bbox": [ + 174, + 630, + 825, + 686 + ], + "page_idx": 19 + }, + { + "type": "table", + "img_path": "images/2dc726091fb37dcc6a4987593fc89d0964cd16c8650d4f3f0031be344dce1213.jpg", + "table_caption": [ + "Table 5: Hyper-parameters of BCQ. " + ], + "table_footnote": [], + "table_body": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate3e-053e-043e-063e-05
Perturbation range Φ0.150.50.150.15
", + "bbox": [ + 272, + 699, + 722, + 742 + ], + "page_idx": 19 + }, + { + "type": "table", + "img_path": "images/cef09bad5b8d3e3b5d0b86ce182a0c4eaca4c96fbcfb6f4abd7c8531617b6820.jpg", + "table_caption": [ + "Table 6: Hyper-parameters of BRAC. " + ], + "table_footnote": [], + "table_body": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate1e-41e-33e-51e-5
Divergence penalty α0.30.10.30.3
", + "bbox": [ + 276, + 782, + 722, + 824 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "F.2.2 OFFLINE RL ", + "text_level": 1, + "bbox": [ + 174, + 103, + 313, + 117 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "In the offline experiments, we apply the same hyper-parameters as in the deployment-efficient settings described above, except for the iteration per batch. Algorithm 2 is pseudocode for BREMEN in offline RL settings where policies are updated only with one fixed batch dataset. The number of iteration $T$ is set to 6,250 in BREMEN, and 500,000 in BC, BCQ, and BRAC. ", + "bbox": [ + 174, + 127, + 825, + 184 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "The datasets for $5 0 \\mathrm { k }$ or $1 0 0 \\mathrm { k }$ experiments are sliced from the beginning of the 1M batched datasets without shuffling, but we observed that the distribution of rewards in 50k or $1 0 0 \\mathrm { k }$ is not different from 1M. ", + "bbox": [ + 174, + 190, + 823, + 233 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Algorithm 2 BREMEN for Offline RL ", + "text_level": 1, + "bbox": [ + 174, + 246, + 413, + 261 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Input: Offline dataset $\\mathcal { D } = \\{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \\}$ , Initial parameters $\\phi = \\{ \\phi _ { 1 } , \\cdot \\cdot \\cdot , \\phi _ { K } \\}$ , $\\beta$ , Number of policy optimization $T$ . \n1: Train $K$ dynamics models $\\hat { f } _ { \\phi }$ using $\\mathcal { D }$ via Equation 1. \n2: Train estimated behavior policy $\\hat { \\pi } _ { \\beta }$ using $\\mathcal { D }$ by behavior cloning via Equation 3. \n3: Initialize target policy $\\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 )$ . \n4: for policy optimization $k = 1 , \\cdots , T$ do \n5: Generate imaginary rollout. \n6: Optimize target policy $\\pi \\theta$ satisfying Equation 4 with the rollout. ", + "bbox": [ + 176, + 265, + 825, + 372 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "G ADDITIONAL EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 539, + 118 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "G.1 PERFORMANCE ON THE DATASET WITH DIFFERENT NOISE ", + "bbox": [ + 176, + 133, + 622, + 148 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Following Wu et al. (2019) and Kidambi et al. (2020), we additionally compare BREMEN in offline settings to the other baselines (BC, BCQ, BRAC) with five datasets of different exploration noise. Each dataset has also one million transitions. ", + "bbox": [ + 176, + 159, + 826, + 202 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "• eps1: $40 \\%$ of the dataset is collected by data-collection policy (partially trained SAC policy) $\\pi _ { b }$ , $40 \\%$ of the dataset is collected by epsilon greedy policy with $\\epsilon = 0 . 1$ to take a random action, and $20 \\%$ of dataset is collected by an uniformly random policy. \n• eps3: Same as eps1, $40 \\%$ of the dataset is collected by $\\pi _ { b }$ , $40 \\%$ is collected by epsilon greedy policy with $\\epsilon = 0 . 3$ , and $20 \\%$ is collected by an uniformly random policy. gaussian1: $40 \\%$ of the dataset is collected by data-collection policy $\\pi _ { b }$ , $40 \\%$ is collected by the policy with adding zero-mean Gaussian noise $\\mathcal { N } ( 0 , 0 . \\bar { 1 } ^ { 2 } )$ to each action sampled from $\\pi _ { b }$ , and $20 \\%$ is collected by an uniformly random policy. \n• gaussian3: $40 \\%$ of the dataset is collected by data-collection policy $\\pi _ { b }$ , $40 \\%$ is collected by the policy with zero-mean Gaussian noise $\\bar { \\mathcal { N } ( 0 , 0 . 3 ^ { 2 } ) }$ , and $20 \\%$ is collected by an uniformly random policy. \n• random: All of the dataset is collected by an uniformly random policy. ", + "bbox": [ + 215, + 213, + 825, + 401 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Table 7 shows that BREMEN can also achieve performance competitive with state-of-the-art modelfree offline RL algorithm even with noisy datasets. The training curves of each experiment are shown in Appendix G.4. ", + "bbox": [ + 174, + 412, + 826, + 454 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "G.2 COMPARISON AMONG DIFFERENT NUMBER OF ENSEMBLES", + "text_level": 1, + "bbox": [ + 176, + 470, + 632, + 486 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "To deal with the distribution shift during policy optimization, also known as model bias, we introduce the dynamics model ensembles. We validate the performance of BREMEN with a different number of dynamics models $K$ . Figure 11 and Figure 12 show the performance of BREMEN with the different number of ensembles in deployment-efficient and offline settings. Ensembles with more dynamics models resulted in better performance due to the mitigation of distributional shift except for $K = 1 0$ , and then we choose $K = 5$ . ", + "bbox": [ + 173, + 497, + 826, + 580 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg", + "image_caption": [ + "Figure 11: Comparison of the number of dynamics models in deployment-efficient settings. " + ], + "image_footnote": [], + "bbox": [ + 191, + 597, + 808, + 708 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg", + "image_caption": [ + "Figure 12: Comparison of the number of dynamics models in offline settings. " + ], + "image_footnote": [], + "bbox": [ + 191, + 752, + 808, + 863 + ], + "page_idx": 21 + }, + { + "type": "table", + "img_path": "images/88aced6a34cb4f97ea91ae388e1e86d3382eadf9999fc3997ee8d8ad4d836b10.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Noise: eps1,1,000,000 (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10772936791815
BC1381±713788±740266±4861185±155
BCQ1937±1166046±276800±659479±537
BRAC2693±1557003±1181243±1623204±103
BRAC (max Q)2907±987070±811488±3863330±147
BREMEN (Ours)3519±1297585±4252818±761710±429
ME-TRPO (offline)1514±5031009±7311301±654128±153
", + "bbox": [ + 251, + 180, + 746, + 296 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/ea8f638bbf7ff6349d977a1d93087eacd6ddcf16af53ed9bbe789657b09ce501.jpg", + "table_caption": [ + "Noise: eps3, 1,000,000 (1M) transitions " + ], + "table_footnote": [], + "table_body": "
MethodAntHalfCheetahHopperWalker2d
Dataset BC BCQ BRAC936 1364±121 1938±21 2718±90 2913±872408 2877±797 5739±188 6434±147662 519±532 1170±446 1224±71648 1066±176 1018±1231 2921±101
", + "bbox": [ + 251, + 308, + 745, + 411 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/a5c60f6d4dc2d15f32b77b3fe51506190ea36462050828690ddcd22320f35c19.jpg", + "table_caption": [ + "Noise: gaussian1, 1,000,000 (1M) transitions " + ], + "table_footnote": [], + "table_body": "
MethodAntHalfCheetahHopperWalker2d
Dataset107231508821070
BC1279±804142±18931±161137±477
BCQ1958±765854±498475±416608±416
BRAC2905±817026±1681456±1613030±103
BRAC (max Q)2910±1577026±1681575±893242±97
BREMEN (Ours)2912±1657928±3131999±6171402±290
ME-TRPO (offline)1275±6561275±656909±631171±119
", + "bbox": [ + 251, + 424, + 746, + 526 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/3efb47f42995fa78d09c7030250bb993ff41c7fa338cfb246aaf3d62b47b7b86.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Noise:gaussian3,1,0oo,0oo (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10582872781981
BC1300±344190±69611±4671217±361
BCQ1982±975781±5431137±582258±286
BRAC3084±1803933±27401432±4993253±118
BRAC (max Q)2916±993997±27611417±2673372±153
BREMEN (Ours)3432±1858124±1451867±3542299±474
ME-TRPO (offline)1237±3102141±872973±243219±145
", + "bbox": [ + 251, + 530, + 746, + 643 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/a5420d75a03349ea446e7f88e19e3708dd033674ec3b139281345a003d9b9ae8.jpg", + "table_caption": [ + "Noise: random, 1,000,000 (1M) transitions " + ], + "table_footnote": [ + "Table 7: Comparison of BREMEN to the existing offline methods in offline settings, namely, BC, BCQ (Fujimoto et al., 2019), and BRAC (Wu et al., 2019). Each cell shows the average cumulative reward and their standard deviation with 5 seeds. The maximum steps per episode is 1,000. Five different types of exploration noise are introduced during the data collection, eps1, eps3, gaussian1, gaussian3, and random. BRAC applies a primal form of KL value penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum according to the learned Q function. " + ], + "table_body": "
MethodAntHalfCheetahHopperWalker2d
Dataset470-285342
BC989±10-2±1106±62108±110
BCQ1222±1142887±242206±7228±12
BRAC1057±923449±259227±3029±54
BRAC (max Q)683±573418±171224±3726±50
BREMEN (Ours)905±113627±193270±68254±6
ME-TRPO (offline)2221±6652701±120321±29262±13
", + "bbox": [ + 250, + 655, + 746, + 761 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "G.3 IMPLICIT KL CONTROL IN OFFLINE SETTINGS ", + "text_level": 1, + "bbox": [ + 173, + 102, + 540, + 118 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Similar to Section 5.3, we present offline RL experiments to better understand the effect of implicit KL regularization. In contrast to the implicit KL regularization with Equation 4, the optimization of BREMEN with explicit KL value penalty becomes ", + "bbox": [ + 174, + 128, + 825, + 172 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/ce620e6424c73535e915a205c5e5502c596ac9ad74d58381048c4a153f0eb809.jpg", + "text": "$$\n\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathrm { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } ( A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) - \\alpha D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | ) \\hat { \\pi } _ { \\beta } ( \\cdot | s ) ) ) ] } \\\\ & { \\quad \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } } { \\mathrm { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 178, + 764, + 243 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "where $A ^ { \\pi _ { \\theta _ { k } } } ( s , a )$ is the advantage of $\\pi _ { \\theta _ { k } }$ computed using imaginary rollouts with the learned dynamics model and $\\delta$ is the maximum step size. Note that BREMEN with explicit KL penalty does not utilize behavior cloning initialization. ", + "bbox": [ + 178, + 250, + 820, + 292 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We empirically conclude that the explicit constraint $- \\alpha D _ { \\mathrm { K L } } \\big ( \\pi _ { \\boldsymbol { \\theta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big | \\big | \\hat { \\pi } _ { \\boldsymbol { \\beta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big )$ is unnecessary and just TRPO update with behavior-initialization as implicit regularization is sufficient in BREMEN algorithm. Figure 13 shows the KL divergence between learned policies and the last deployed policies (top row) and model errors measured by a mean squared error of predicted next state from the true state (second row). We find that behavior initialized policy with conservative KL trust-region updates well stuck to the last deployed policy during improvement without explicit KL penalty. The policy initialized with behavior cloning also tended to suppress the increase of model error, which implies that behavior initialization alleviates the effect of the distribution shift. In Walker2d, the model error of BREMEN is relatively large, which may relate to the poor performance with noisy datasets in Section G.1. ", + "bbox": [ + 173, + 297, + 825, + 438 + ], + "page_idx": 23 + }, + { + "type": "image", + "img_path": "images/380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg", + "image_caption": [ + "Figure 13: Average cumulative rewards (top row) and corresponding KL divergence of learned policies from the last deployed policy (second row) and model errors (bottom row) in offline settings with 1M dataset (no noise). Behavior initialized policy (purple line) tends to suppress the policy and model error during training better than no-initialization (red line) or explicit KL penalty (green line). " + ], + "image_footnote": [], + "bbox": [ + 187, + 452, + 810, + 732 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "G.4 TRAINING CURVES FOR OFFLINE RL WITH DIFFERENT NOISES ", + "text_level": 1, + "bbox": [ + 174, + 103, + 656, + 118 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "In this section, we present training curves of our all experiments in offline settings. Figure 14 shows the results in Section 5.1. Figure 15, 16, 17, 18, and 19 also show the results in Section G.1. ", + "bbox": [ + 173, + 128, + 825, + 159 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg", + "image_caption": [ + "Figure 14: Performance in Offline RL experiments (Table 1). (top row) dataset size is 1M, (second row) 100K, and (bottom row) 50K, respectively. Note that $\\mathbf { X }$ -axis is the number of iterations with policy optimization in a log-scale. " + ], + "image_footnote": [], + "bbox": [ + 189, + 172, + 810, + 468 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg", + "image_caption": [ + "Figure 15: Performance in Offline RL experiments with $\\epsilon$ -greedy dataset noise $\\epsilon = 0 . 1$ . Dataset size is 1M. " + ], + "image_footnote": [], + "bbox": [ + 191, + 536, + 808, + 650 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg", + "image_caption": [ + "Figure 16: Performance in Offline RL experiments with $\\epsilon$ -greedy dataset noise $\\epsilon = 0 . 3$ . Dataset size is 1M. " + ], + "image_footnote": [], + "bbox": [ + 191, + 694, + 808, + 806 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg", + "image_caption": [ + "Figure 17: Performance in Offline RL experiments with gaussian dataset noise $\\mathcal { N } ( 0 , 0 . 1 ^ { 2 } )$ . Dataset size is 1M. " + ], + "image_footnote": [], + "bbox": [ + 189, + 171, + 808, + 282 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg", + "image_caption": [ + "Figure 18: Performance in Offline RL experiments with gaussian dataset noise $\\mathcal { N } ( 0 , 0 . 3 ^ { 2 } )$ . Dataset size is 1M. " + ], + "image_footnote": [], + "bbox": [ + 191, + 448, + 808, + 559 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg", + "image_caption": [ + "Figure 19: Performance in Offline RL experiments with completely random behaviors. Dataset size is 1M. " + ], + "image_footnote": [], + "bbox": [ + 191, + 723, + 808, + 835 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "G.5 DEPLOYMENT-EFFICIENT RL EXPERIMENT WITH DIFFERENT REWARD FUNCTION ", + "text_level": 1, + "bbox": [ + 169, + 103, + 789, + 118 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "In addition to the main results in Section 5.2 (Figure 2), we also evaluate BREMEN in deploymentefficient setting with different reward function. We modified HalfCheetah environment into the one similar to cheetah-run task in Deep Mind Control Suite.5 The reward function is defined as ", + "bbox": [ + 173, + 128, + 826, + 171 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/7fcc04ad00beb4079f7af7b1ac686011f5d205f51c984d1fda920384d2e971df.jpg", + "text": "$$\nr _ { t } = \\left\\{ \\begin{array} { l l } { 0 . 1 \\dot { x } _ { t } } & { ( 0 \\leq \\dot { x } _ { t } \\leq 1 0 ) } \\\\ { 1 } & { ( \\dot { x } _ { t } > 1 0 ) , } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 398, + 179, + 598, + 215 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "and the termination is turned off. Figure 20 shows the performance of BREMEN and existing methods. BREMEN also shows better deployment efficiency than other existing offline methods and online ME-TRPO, except for SAC, which is the same trend as that of main results. ", + "bbox": [ + 174, + 222, + 825, + 265 + ], + "page_idx": 26 + }, + { + "type": "image", + "img_path": "images/dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg", + "image_caption": [ + "Figure 20: Performance in Deployment-Efficient RL experiments with different reward function of HalfCheetah. " + ], + "image_footnote": [], + "bbox": [ + 194, + 284, + 810, + 473 + ], + "page_idx": 26 + } +] \ No newline at end of file diff --git a/parse/train/3hGNqpI4WS/3hGNqpI4WS_middle.json b/parse/train/3hGNqpI4WS/3hGNqpI4WS_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..a494a4f3e2b23922871e51dfa108fe66f6c096c2 --- /dev/null +++ b/parse/train/3hGNqpI4WS/3hGNqpI4WS_middle.json @@ -0,0 +1,57108 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 507, + 97 + ], + "score": 1.0, + "content": "DEPLOYMENT-EFFICIENT REINFORCEMENT LEARN-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 468, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 468, + 118 + ], + "score": 1.0, + "content": "ING VIA MODEL-BASED OFFLINE OPTIMIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 134, + 420, + 168 + ], + "lines": [ + { + "bbox": [ + 113, + 134, + 371, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 207, + 146 + ], + "score": 1.0, + "content": "Tatsuya Matsushima∗", + "type": "text" + }, + { + "bbox": [ + 223, + 136, + 293, + 146 + ], + "score": 1.0, + "content": "Hiroki Furuta∗", + "type": "text" + }, + { + "bbox": [ + 303, + 134, + 371, + 147 + ], + "score": 1.0, + "content": "Yutaka Matsuo", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 213, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 213, + 158 + ], + "score": 1.0, + "content": "The University of Tokyo", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 156, + 420, + 171 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 420, + 171 + ], + "score": 1.0, + "content": "{matsushima, furuta, matsuo}@weblab.t.u-tokyo.ac.jp", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 113, + 186, + 170, + 196 + ], + "lines": [ + { + "bbox": [ + 112, + 185, + 171, + 197 + ], + "spans": [ + { + "bbox": [ + 112, + 185, + 171, + 197 + ], + "score": 1.0, + "content": "Ofir Nachum", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 191, + 185, + 274, + 196 + ], + "lines": [ + { + "bbox": [ + 190, + 184, + 275, + 198 + ], + "spans": [ + { + "bbox": [ + 190, + 184, + 275, + 198 + ], + "score": 1.0, + "content": "Shixiang Shane Gu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 114, + 197, + 182, + 207 + ], + "lines": [ + { + "bbox": [ + 112, + 195, + 183, + 209 + ], + "spans": [ + { + "bbox": [ + 112, + 195, + 183, + 209 + ], + "score": 1.0, + "content": "Google Research", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 114, + 208, + 305, + 218 + ], + "lines": [ + { + "bbox": [ + 113, + 207, + 307, + 220 + ], + "spans": [ + { + "bbox": [ + 113, + 207, + 307, + 220 + ], + "score": 1.0, + "content": "{ofirnachum, shanegu}@google.com", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 278, + 248, + 333, + 259 + ], + "lines": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "spans": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 142, + 273, + 469, + 482 + ], + "lines": [ + { + "bbox": [ + 142, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 142, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "Most reinforcement learning (RL) algorithms assume online access to the environ-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "score": 1.0, + "content": "ment, in which one may readily interleave updates to the policy with experience", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 296, + 469, + 308 + ], + "spans": [ + { + "bbox": [ + 142, + 296, + 469, + 308 + ], + "score": 1.0, + "content": "collection using that policy. However, in many real-world applications such as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 305, + 470, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 305, + 470, + 320 + ], + "score": 1.0, + "content": "health, education, dialogue agents, and robotics, the cost or potential risk of deploy-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 317, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 470, + 330 + ], + "score": 1.0, + "content": "ing a new data-collection policy is high, to the point that it can become prohibitive", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 328, + 470, + 341 + ], + "spans": [ + { + "bbox": [ + 141, + 328, + 470, + 341 + ], + "score": 1.0, + "content": "to update the data-collection policy more than a few times during learning. With", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "score": 1.0, + "content": "this view, we propose a novel concept of deployment efficiency, measuring the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 349, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 470, + 363 + ], + "score": 1.0, + "content": "number of distinct data-collection policies that are used during policy learning.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 361, + 471, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 471, + 374 + ], + "score": 1.0, + "content": "We observe that naïvely applying existing model-free offline RL algorithms re-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 372, + 469, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 469, + 384 + ], + "score": 1.0, + "content": "cursively does not lead to a practical deployment-efficient and sample-efficient", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 383, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 383, + 470, + 396 + ], + "score": 1.0, + "content": "algorithm. We propose a novel model-based algorithm, Behavior-Regularized", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 393, + 470, + 407 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 470, + 407 + ], + "score": 1.0, + "content": "Model-ENsemble (BREMEN), that not only performs better than or comparably", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 405, + 470, + 418 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 470, + 418 + ], + "score": 1.0, + "content": "as the state-of-the-art dynamic-programming-based and concurrently-proposed", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 415, + 471, + 429 + ], + "spans": [ + { + "bbox": [ + 141, + 415, + 471, + 429 + ], + "score": 1.0, + "content": "model-based offline approaches on existing benchmarks, but can also effectively op-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 427, + 471, + 439 + ], + "spans": [ + { + "bbox": [ + 141, + 427, + 471, + 439 + ], + "score": 1.0, + "content": "timize a policy offline using 10-20 times fewer data than prior works. Furthermore,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 438, + 469, + 451 + ], + "spans": [ + { + "bbox": [ + 141, + 438, + 469, + 451 + ], + "score": 1.0, + "content": "the recursive application of BREMEN achieves impressive deployment efficiency", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 449, + 470, + 461 + ], + "spans": [ + { + "bbox": [ + 141, + 449, + 470, + 461 + ], + "score": 1.0, + "content": "while maintaining the same or better sample efficiency, learning successful poli-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 459, + 471, + 472 + ], + "spans": [ + { + "bbox": [ + 141, + 459, + 471, + 472 + ], + "score": 1.0, + "content": "cies from scratch on simulated robotic environments with only 5-10 deployments,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 470, + 450, + 483 + ], + "spans": [ + { + "bbox": [ + 141, + 470, + 450, + 483 + ], + "score": 1.0, + "content": "compared to typical values of hundreds to millions in standard RL baselines.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 505, + 205, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 208, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 208, + 520 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "Reinforcement learning (RL) algorithms have recently demonstrated impressive success in learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "behaviors for a variety of sequential decision-making tasks (Barth-Maron et al., 2018; Hessel et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "2018; Nachum et al., 2019). Virtually all of these demonstrations have relied on highly-frequent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "score": 1.0, + "content": "online access to the environment, with the RL algorithms often interleaving each update to the policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "with additional experience collection of that policy acting in the environment. However, in many", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "real-world applications of RL, such as health (Murphy et al., 2001), education (Mandel et al., 2014),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "dialog agents (Jaques et al., 2019), and robotics (Gu et al., 2017a; Kalashnikov et al., 2018), the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "score": 1.0, + "content": "deployment of a new data-collection policy may be associated with a number of costs and risks. If", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "we can learn tasks with a small number of data collection policies, we can substantially reduce them.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "score": 1.0, + "content": "Based on this idea, we propose a novel measure of RL algorithm performance, namely deployment", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "score": 1.0, + "content": "efficiency, which counts the number of changes in the data-collection policy during learning, as illus-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 671 + ], + "score": 1.0, + "content": "trated in Figure 1. This concept may be seen in contrast to sample efficiency or data efficiency (Precup", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 668, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 680 + ], + "score": 1.0, + "content": "et al., 2001; Degris et al., 2012; Gu et al., 2017b; Haarnoja et al., 2018; Lillicrap et al., 2016; Nachum", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "et al., 2018), which measures the amount of environment interactions incurred during training, without", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "regard to how many distinct policies were deployed to perform those interactions. Even when the", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 712, + 482, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 194, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 194, + 722 + ], + "score": 1.0, + "content": "∗Equal contribution.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 718, + 481, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 718, + 481, + 733 + ], + "score": 1.0, + "content": "1Codes and pre-trained models are available at https://github.com/matsuolab/BREMEN.", + "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": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 507, + 97 + ], + "score": 1.0, + "content": "DEPLOYMENT-EFFICIENT REINFORCEMENT LEARN-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 468, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 468, + 118 + ], + "score": 1.0, + "content": "ING VIA MODEL-BASED OFFLINE OPTIMIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 134, + 420, + 168 + ], + "lines": [ + { + "bbox": [ + 113, + 134, + 371, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 207, + 146 + ], + "score": 1.0, + "content": "Tatsuya Matsushima∗", + "type": "text" + }, + { + "bbox": [ + 223, + 136, + 293, + 146 + ], + "score": 1.0, + "content": "Hiroki Furuta∗", + "type": "text" + }, + { + "bbox": [ + 303, + 134, + 371, + 147 + ], + "score": 1.0, + "content": "Yutaka Matsuo", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 213, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 213, + 158 + ], + "score": 1.0, + "content": "The University of Tokyo", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 156, + 420, + 171 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 420, + 171 + ], + "score": 1.0, + "content": "{matsushima, furuta, matsuo}@weblab.t.u-tokyo.ac.jp", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 112, + 134, + 420, + 171 + ] + }, + { + "type": "title", + "bbox": [ + 113, + 186, + 170, + 196 + ], + "lines": [ + { + "bbox": [ + 112, + 185, + 171, + 197 + ], + "spans": [ + { + "bbox": [ + 112, + 185, + 171, + 197 + ], + "score": 1.0, + "content": "Ofir Nachum", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 191, + 185, + 274, + 196 + ], + "lines": [ + { + "bbox": [ + 190, + 184, + 275, + 198 + ], + "spans": [ + { + "bbox": [ + 190, + 184, + 275, + 198 + ], + "score": 1.0, + "content": "Shixiang Shane Gu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 114, + 197, + 182, + 207 + ], + "lines": [ + { + "bbox": [ + 112, + 195, + 183, + 209 + ], + "spans": [ + { + "bbox": [ + 112, + 195, + 183, + 209 + ], + "score": 1.0, + "content": "Google Research", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 112, + 195, + 183, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 114, + 208, + 305, + 218 + ], + "lines": [ + { + "bbox": [ + 113, + 207, + 307, + 220 + ], + "spans": [ + { + "bbox": [ + 113, + 207, + 307, + 220 + ], + "score": 1.0, + "content": "{ofirnachum, shanegu}@google.com", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 113, + 207, + 307, + 220 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 248, + 333, + 259 + ], + "lines": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "spans": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 142, + 273, + 469, + 482 + ], + "lines": [ + { + "bbox": [ + 142, + 273, + 470, + 285 + ], + "spans": [ + { + "bbox": [ + 142, + 273, + 470, + 285 + ], + "score": 1.0, + "content": "Most reinforcement learning (RL) algorithms assume online access to the environ-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "score": 1.0, + "content": "ment, in which one may readily interleave updates to the policy with experience", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 296, + 469, + 308 + ], + "spans": [ + { + "bbox": [ + 142, + 296, + 469, + 308 + ], + "score": 1.0, + "content": "collection using that policy. However, in many real-world applications such as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 305, + 470, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 305, + 470, + 320 + ], + "score": 1.0, + "content": "health, education, dialogue agents, and robotics, the cost or potential risk of deploy-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 317, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 470, + 330 + ], + "score": 1.0, + "content": "ing a new data-collection policy is high, to the point that it can become prohibitive", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 328, + 470, + 341 + ], + "spans": [ + { + "bbox": [ + 141, + 328, + 470, + 341 + ], + "score": 1.0, + "content": "to update the data-collection policy more than a few times during learning. With", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "score": 1.0, + "content": "this view, we propose a novel concept of deployment efficiency, measuring the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 349, + 470, + 363 + ], + "spans": [ + { + "bbox": [ + 141, + 349, + 470, + 363 + ], + "score": 1.0, + "content": "number of distinct data-collection policies that are used during policy learning.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 361, + 471, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 471, + 374 + ], + "score": 1.0, + "content": "We observe that naïvely applying existing model-free offline RL algorithms re-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 372, + 469, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 469, + 384 + ], + "score": 1.0, + "content": "cursively does not lead to a practical deployment-efficient and sample-efficient", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 383, + 470, + 396 + ], + "spans": [ + { + "bbox": [ + 141, + 383, + 470, + 396 + ], + "score": 1.0, + "content": "algorithm. We propose a novel model-based algorithm, Behavior-Regularized", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 393, + 470, + 407 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 470, + 407 + ], + "score": 1.0, + "content": "Model-ENsemble (BREMEN), that not only performs better than or comparably", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 405, + 470, + 418 + ], + "spans": [ + { + "bbox": [ + 141, + 405, + 470, + 418 + ], + "score": 1.0, + "content": "as the state-of-the-art dynamic-programming-based and concurrently-proposed", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 415, + 471, + 429 + ], + "spans": [ + { + "bbox": [ + 141, + 415, + 471, + 429 + ], + "score": 1.0, + "content": "model-based offline approaches on existing benchmarks, but can also effectively op-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 427, + 471, + 439 + ], + "spans": [ + { + "bbox": [ + 141, + 427, + 471, + 439 + ], + "score": 1.0, + "content": "timize a policy offline using 10-20 times fewer data than prior works. Furthermore,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 438, + 469, + 451 + ], + "spans": [ + { + "bbox": [ + 141, + 438, + 469, + 451 + ], + "score": 1.0, + "content": "the recursive application of BREMEN achieves impressive deployment efficiency", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 449, + 470, + 461 + ], + "spans": [ + { + "bbox": [ + 141, + 449, + 470, + 461 + ], + "score": 1.0, + "content": "while maintaining the same or better sample efficiency, learning successful poli-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 459, + 471, + 472 + ], + "spans": [ + { + "bbox": [ + 141, + 459, + 471, + 472 + ], + "score": 1.0, + "content": "cies from scratch on simulated robotic environments with only 5-10 deployments,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 470, + 450, + 483 + ], + "spans": [ + { + "bbox": [ + 141, + 470, + 450, + 483 + ], + "score": 1.0, + "content": "compared to typical values of hundreds to millions in standard RL baselines.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 19, + "bbox_fs": [ + 141, + 273, + 471, + 483 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 505, + 205, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 208, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 208, + 520 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "Reinforcement learning (RL) algorithms have recently demonstrated impressive success in learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "behaviors for a variety of sequential decision-making tasks (Barth-Maron et al., 2018; Hessel et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "2018; Nachum et al., 2019). Virtually all of these demonstrations have relied on highly-frequent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "score": 1.0, + "content": "online access to the environment, with the RL algorithms often interleaving each update to the policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "with additional experience collection of that policy acting in the environment. However, in many", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "real-world applications of RL, such as health (Murphy et al., 2001), education (Mandel et al., 2014),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "dialog agents (Jaques et al., 2019), and robotics (Gu et al., 2017a; Kalashnikov et al., 2018), the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "score": 1.0, + "content": "deployment of a new data-collection policy may be associated with a number of costs and risks. If", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "we can learn tasks with a small number of data collection policies, we can substantially reduce them.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 529, + 506, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 648 + ], + "score": 1.0, + "content": "Based on this idea, we propose a novel measure of RL algorithm performance, namely deployment", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "score": 1.0, + "content": "efficiency, which counts the number of changes in the data-collection policy during learning, as illus-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 671 + ], + "score": 1.0, + "content": "trated in Figure 1. This concept may be seen in contrast to sample efficiency or data efficiency (Precup", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 668, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 680 + ], + "score": 1.0, + "content": "et al., 2001; Degris et al., 2012; Gu et al., 2017b; Haarnoja et al., 2018; Lillicrap et al., 2016; Nachum", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "et al., 2018), which measures the amount of environment interactions incurred during training, without", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "regard to how many distinct policies were deployed to perform those interactions. Even when the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 336, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 504, + 348 + ], + "score": 1.0, + "content": "data efficiency is high, the deployment efficiency could be low, since many on-policy and off-policy", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "score": 1.0, + "content": "algorithms alternate data collection with each policy update (Schulman et al., 2015; Lillicrap et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 358, + 504, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 504, + 370 + ], + "score": 1.0, + "content": "2016; Gu et al., 2016; Haarnoja et al., 2018). Such dependence on high-frequency policy deployments", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "is best illustrated in the recent works in offline RL (Fujimoto et al., 2019; Jaques et al., 2019; Kumar", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "et al., 2019; Levine et al., 2020; Wu et al., 2019), where baseline off-policy algorithms exhibited poor", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "performance when trained on a static dataset. These offline RL works, however, limit their study to", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "score": 1.0, + "content": "a single deployment, which is enough for achieving high performance with data collected from a", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "sub-optimal behavior policy, but often not from a random policy. In contrast to those prior works, we", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "aim to learn successful policies from scratch in a manner that is both sample and deployment-efficient.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 634, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 130, + 79, + 486, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 79, + 486, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 79, + 486, + 205 + ], + "spans": [ + { + "bbox": [ + 130, + 79, + 486, + 205 + ], + "score": 0.975, + "type": "image", + "image_path": "d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 79, + 486, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 121.0, + 486, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 163.0, + 486, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 209, + 506, + 289 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 465, + 219 + ], + "score": 1.0, + "content": "Figure 1: Deployment efficiency is defined as the number of changes in the data-collection policy", + "type": "text" + }, + { + "bbox": [ + 465, + 209, + 476, + 219 + ], + "score": 0.52, + "content": "( I )", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 208, + 505, + 219 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 217, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 506, + 231 + ], + "score": 1.0, + "content": "is vital for managing costs and risks of new policy deployment. Online RL algorithms typically require", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 227, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 104, + 227, + 506, + 241 + ], + "score": 1.0, + "content": "many iterations of policy deployment and data collection, which leads to extremely low deployment efficiency.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "score": 1.0, + "content": "In contrast, most pure offline algorithms consider updating a policy from a fixed dataset without additional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 248, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 260 + ], + "score": 1.0, + "content": "deployment and often fail to learn from a randomly initialized data-collection policy. Interestingly, most", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 506, + 271 + ], + "score": 1.0, + "content": "state-of-the-art off-policy algorithms are still evaluated in heavily online settings. For example, SAC (Haarnoja", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 104, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "et al., 2018) collects one sample per policy update, amounting to 100,000 to 1 million deployments for learning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 278, + 217, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 217, + 290 + ], + "score": 1.0, + "content": "standard benchmark domains.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 504, + 348 + ], + "score": 1.0, + "content": "data efficiency is high, the deployment efficiency could be low, since many on-policy and off-policy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "score": 1.0, + "content": "algorithms alternate data collection with each policy update (Schulman et al., 2015; Lillicrap et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 358, + 504, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 504, + 370 + ], + "score": 1.0, + "content": "2016; Gu et al., 2016; Haarnoja et al., 2018). Such dependence on high-frequency policy deployments", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "is best illustrated in the recent works in offline RL (Fujimoto et al., 2019; Jaques et al., 2019; Kumar", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "et al., 2019; Levine et al., 2020; Wu et al., 2019), where baseline off-policy algorithms exhibited poor", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "performance when trained on a static dataset. These offline RL works, however, limit their study to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "score": 1.0, + "content": "a single deployment, which is enough for achieving high performance with data collected from a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "sub-optimal behavior policy, but often not from a random policy. In contrast to those prior works, we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "aim to learn successful policies from scratch in a manner that is both sample and deployment-efficient.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "Many existing model-free offline RL algorithms (Levine et al., 2020) are tuned and evaluated on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "massive datasets (e.g., one million transitions). In order to develop an algorithm that is both sample", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "and deployment-efficient, each iteration of the algorithm between successive deployments has to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "work effectively on much smaller dataset sizes. We believe model-based RL is better suited to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "this setting due to its higher demonstrated sample efficiency than model-free RL (Kurutach et al.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "2018; Nagabandi et al., 2018). Although the combination of model-based RL and offline or limited-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "deployment settings seems straight-forward, we find this naïve approach leads to poor performance.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "This problem can be attributed to extrapolation errors (Fujimoto et al., 2019) similar to those observed", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "in model-free methods. Specifically, the learned policy may choose sequences of actions which", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "lead it to regions of the state space where the dynamics model cannot predict properly, due to poor", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "coverage of the dataset. This can lead the policy to exploit approximation errors of the dynamics", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "score": 1.0, + "content": "model and be disastrous for learning. In model-free settings, similar data distribution shift problems", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "are typically remedied by regularizing policy updates explicitly with a divergence from the observed", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "data distribution (Jaques et al., 2019; Kumar et al., 2019; Wu et al., 2019), which, however, can overly", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 594, + 293, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 293, + 606 + ], + "score": 1.0, + "content": "limit policies’ expressivity (Sohn et al., 2020).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "In order to better approach these problems arising in limited deployment settings, we propose", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "Behavior-Regularized Model-ENsemble (BREMEN), which learns an ensemble of dynamics models", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "score": 1.0, + "content": "in conjunction with a policy using imaginary rollouts while implicitly regularizing the learned policy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "via appropriate parameter initialization and conservative trust-region learning updates. We evaluate", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "BREMEN on standard offline RL benchmarks of high-dimensional continuous control tasks, where", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "only a single static dataset is used. In this fixed-batch setting, our experiments show that BREMEN", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "can not only achieve performance competitive with state-of-the-art when using standard dataset sizes", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "but also learn with 10-20 times smaller datasets, which previous methods are unable to attain. Enabled", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "by such stable and sample-efficient offline learning, we show that BREMEN can learn successful", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "policies with only 5-10 deployments in the online setting, significantly outperforming existing", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 487, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 487, + 734 + ], + "score": 1.0, + "content": "off-policy and offline RL algorithms in deployment efficiency while keeping sample efficiency.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40 + } + ], + "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": [ + 130, + 79, + 486, + 205 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 79, + 486, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 79, + 486, + 205 + ], + "spans": [ + { + "bbox": [ + 130, + 79, + 486, + 205 + ], + "score": 0.975, + "type": "image", + "image_path": "d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 130, + 79, + 486, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 130, + 121.0, + 486, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 130, + 163.0, + 486, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 209, + 506, + 289 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 465, + 219 + ], + "score": 1.0, + "content": "Figure 1: Deployment efficiency is defined as the number of changes in the data-collection policy", + "type": "text" + }, + { + "bbox": [ + 465, + 209, + 476, + 219 + ], + "score": 0.52, + "content": "( I )", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 208, + 505, + 219 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 217, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 217, + 506, + 231 + ], + "score": 1.0, + "content": "is vital for managing costs and risks of new policy deployment. Online RL algorithms typically require", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 227, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 104, + 227, + 506, + 241 + ], + "score": 1.0, + "content": "many iterations of policy deployment and data collection, which leads to extremely low deployment efficiency.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 250 + ], + "score": 1.0, + "content": "In contrast, most pure offline algorithms consider updating a policy from a fixed dataset without additional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 248, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 260 + ], + "score": 1.0, + "content": "deployment and often fail to learn from a randomly initialized data-collection policy. Interestingly, most", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 506, + 271 + ], + "score": 1.0, + "content": "state-of-the-art off-policy algorithms are still evaluated in heavily online settings. For example, SAC (Haarnoja", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 104, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "et al., 2018) collects one sample per policy update, amounting to 100,000 to 1 million deployments for learning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 278, + 217, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 217, + 290 + ], + "score": 1.0, + "content": "standard benchmark domains.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 435 + ], + "lines": [], + "index": 15, + "bbox_fs": [ + 105, + 336, + 506, + 436 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "Many existing model-free offline RL algorithms (Levine et al., 2020) are tuned and evaluated on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "massive datasets (e.g., one million transitions). In order to develop an algorithm that is both sample", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "and deployment-efficient, each iteration of the algorithm between successive deployments has to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "work effectively on much smaller dataset sizes. We believe model-based RL is better suited to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "this setting due to its higher demonstrated sample efficiency than model-free RL (Kurutach et al.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "2018; Nagabandi et al., 2018). Although the combination of model-based RL and offline or limited-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "deployment settings seems straight-forward, we find this naïve approach leads to poor performance.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "This problem can be attributed to extrapolation errors (Fujimoto et al., 2019) similar to those observed", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "in model-free methods. Specifically, the learned policy may choose sequences of actions which", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "lead it to regions of the state space where the dynamics model cannot predict properly, due to poor", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "coverage of the dataset. This can lead the policy to exploit approximation errors of the dynamics", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 504, + 573 + ], + "score": 1.0, + "content": "model and be disastrous for learning. In model-free settings, similar data distribution shift problems", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "are typically remedied by regularizing policy updates explicitly with a divergence from the observed", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "data distribution (Jaques et al., 2019; Kumar et al., 2019; Wu et al., 2019), which, however, can overly", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 594, + 293, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 293, + 606 + ], + "score": 1.0, + "content": "limit policies’ expressivity (Sohn et al., 2020).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 440, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "In order to better approach these problems arising in limited deployment settings, we propose", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "Behavior-Regularized Model-ENsemble (BREMEN), which learns an ensemble of dynamics models", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "score": 1.0, + "content": "in conjunction with a policy using imaginary rollouts while implicitly regularizing the learned policy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "via appropriate parameter initialization and conservative trust-region learning updates. We evaluate", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "BREMEN on standard offline RL benchmarks of high-dimensional continuous control tasks, where", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "only a single static dataset is used. In this fixed-batch setting, our experiments show that BREMEN", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "can not only achieve performance competitive with state-of-the-art when using standard dataset sizes", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "but also learn with 10-20 times smaller datasets, which previous methods are unable to attain. Enabled", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "by such stable and sample-efficient offline learning, we show that BREMEN can learn successful", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "policies with only 5-10 deployments in the online setting, significantly outperforming existing", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 487, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 487, + 734 + ], + "score": 1.0, + "content": "off-policy and offline RL algorithms in deployment efficiency while keeping sample efficiency.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 611, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 207, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 209, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 209, + 96 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 475, + 119 + ], + "score": 1.0, + "content": "We consider a Markov Decision Process (MDP) setting, characterized by the tuple", + "type": "text" + }, + { + "bbox": [ + 475, + 107, + 505, + 118 + ], + "score": 0.84, + "content": "\\begin{array} { r l } { \\mathcal { M } } & { { } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 161, + 129 + ], + "score": 0.91, + "content": "( S , \\mathcal { A } , p , r , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 116, + 194, + 131 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 194, + 118, + 203, + 128 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 116, + 281, + 131 + ], + "score": 1.0, + "content": "is the state space,", + "type": "text" + }, + { + "bbox": [ + 281, + 118, + 290, + 128 + ], + "score": 0.72, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 116, + 374, + 131 + ], + "score": 1.0, + "content": "is the action space,", + "type": "text" + }, + { + "bbox": [ + 374, + 118, + 413, + 129 + ], + "score": 0.92, + "content": "p ( s ^ { \\prime } | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 116, + 506, + 131 + ], + "score": 1.0, + "content": "is the transition prob-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 237, + 141 + ], + "score": 1.0, + "content": "ability distribution or dynamics,", + "type": "text" + }, + { + "bbox": [ + 237, + 129, + 256, + 141 + ], + "score": 0.92, + "content": "r ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 128, + 364, + 141 + ], + "score": 1.0, + "content": "is the reward function and", + "type": "text" + }, + { + "bbox": [ + 364, + 129, + 405, + 141 + ], + "score": 0.91, + "content": "\\gamma \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 128, + 506, + 141 + ], + "score": 1.0, + "content": "is the discount factor. A", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 507, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 133, + 153 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 133, + 142, + 141, + 150 + ], + "score": 0.71, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 138, + 507, + 153 + ], + "score": 1.0, + "content": "is a function that determines the agent behavior, mapping from states to probability distribu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 342, + 164 + ], + "score": 1.0, + "content": "tions over actions. The goal is to obtain the optimal policy", + "type": "text" + }, + { + "bbox": [ + 343, + 151, + 354, + 160 + ], + "score": 0.86, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 150, + 506, + 164 + ], + "score": 1.0, + "content": ", which maximizes the expectation of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 324, + 174 + ], + "score": 1.0, + "content": "discounted sum of rewards. The transition probability", + "type": "text" + }, + { + "bbox": [ + 325, + 162, + 363, + 173 + ], + "score": 0.93, + "content": "p ( s ^ { \\prime } | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 161, + 506, + 174 + ], + "score": 1.0, + "content": "is usually unknown, and estimated", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 259, + 186 + ], + "score": 1.0, + "content": "with a parameterized dynamics model", + "type": "text" + }, + { + "bbox": [ + 260, + 173, + 271, + 185 + ], + "score": 0.87, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "(e.g. a neural network) in model-based RL. For simplicity,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 248, + 196 + ], + "score": 1.0, + "content": "we assume that the reward function", + "type": "text" + }, + { + "bbox": [ + 248, + 184, + 266, + 195 + ], + "score": 0.9, + "content": "r ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "is known, and the reward can be computed for any arbitrary", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 483, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 483, + 207 + ], + "score": 1.0, + "content": "state, but we may extend to the unknown setting and predict it using a parameterized function.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 211, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 224 + ], + "score": 1.0, + "content": "On-policy vs Off-policy, Online vs Offline At a high-level, most RL algorithms alternate many", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "times between collecting a batch of transitions (deployments) and optimizing the policy (learning).", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "score": 1.0, + "content": "If the algorithms discard data after each policy update, they are on-policy (Schulman et al., 2015;", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 308, + 257 + ], + "score": 1.0, + "content": "2017), while if they accumulate data in a buffer", + "type": "text" + }, + { + "bbox": [ + 309, + 245, + 318, + 254 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 243, + 506, + 257 + ], + "score": 1.0, + "content": ", i.e. experience replay (Lin, 1992), they are", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "score": 1.0, + "content": "off-policy (Mnih et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; 2017b; Haarnoja et al., 2018;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "Fujimoto et al., 2019; Fakoor et al., 2019) because not all the data in buffer comes from the current", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "policy. However, we consider all these algorithms to be online RL algorithms, since they involve", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "score": 1.0, + "content": "many deployments during learning, ranging from hundreds to millions. On the other hand, in pure", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 299, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 507, + 311 + ], + "score": 1.0, + "content": "offline RL, one does not assume direct interaction and learns a policy from only a fixed dataset,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "score": 1.0, + "content": "which effectively corresponds to a single deployment allowed for learning. Classically, interpolating", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "these two extremes were semi-batch RL algorithms (Lange et al., 2012; Singh et al., 1995), which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 331, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 428, + 344 + ], + "score": 1.0, + "content": "improve the policy through repetitions of collecting a large batch of transitions", + "type": "text" + }, + { + "bbox": [ + 428, + 332, + 504, + 344 + ], + "score": 0.94, + "content": "\\mathcal { D } = \\{ ( s , a , s ^ { \\prime } , r ) \\}", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "and performing many or full policy updates. While these semi-batch RL also realize good deployment", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "efficiency, they have not been extensively studied with neural network function approximators or in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "off-policy settings with experience replay for scalable sample-efficient learning. In our work, we aim", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "to have both high deployment efficiency and sample efficiency by developing an algorithm that can", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 386, + 422, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 422, + 399 + ], + "score": 1.0, + "content": "solve the tasks with minimal policy deployments as well as transition samples.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 109, + 415, + 262, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 264, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 264, + 430 + ], + "score": 1.0, + "content": "3 DEPLOYMENT EFFICIENCY", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 506, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "score": 1.0, + "content": "Deploying a new policy for data collection can be associated with a number of costs and risks for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "many real-world applications like medicine, dialogue systems, or robotic control (Murphy et al., 2001;", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "Mandel et al., 2014; Gu et al., 2017a; Kalashnikov et al., 2018; Nachum et al., 2019; Jaques et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "2019). While there are abundant works on safety for RL (Chow et al., 2015; Eysenbach et al., 2018;", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "Chow et al., 2018; Ray et al., 2019; Chow et al., 2019), they often do not provide guarantees in practice", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "when combined with neural networks and stochastic optimization. It is therefore necessary to verify", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "each policy before deployment (e.g. measuring the variance of rewards or checking out-of-bounds", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "actions). Due to such costs associated with each deployment, it is desirable to minimize the number", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "of distinct deployments needed during the learning process. Even ignoring safety considerations,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "frequent updates to a deployed policy can exacerbate communication bottlenecks in large-scale", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "distributed RL systems, which are becoming more prevalent (Nair et al., 2015; Espeholt et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "2018; 2019). We additionally discuss on the importance of the deployment efficiency in real-world", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 572, + 230, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 230, + 584 + ], + "score": 1.0, + "content": "applications. See Appendix C.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 507, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 507, + 602 + ], + "score": 1.0, + "content": "In order to focus research on these practical bottlenecks, we propose a novel measure of RL algorithms,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "namely, deployment efficiency, which counts how many times the data-collection policy has been", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "changed during improvement from random policy to solve the task. For example, if an RL algorithm", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 428, + 635 + ], + "score": 1.0, + "content": "operates by using its learned policy to collect transitions from the environment", + "type": "text" + }, + { + "bbox": [ + 428, + 622, + 435, + 632 + ], + "score": 0.65, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "times, each time", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 189, + 645 + ], + "score": 1.0, + "content": "collecting a batch of", + "type": "text" + }, + { + "bbox": [ + 190, + 633, + 199, + 643 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 633, + 403, + 645 + ], + "score": 1.0, + "content": "new transitions, then the number of deployments is", + "type": "text" + }, + { + "bbox": [ + 403, + 633, + 410, + 643 + ], + "score": 0.7, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 633, + 506, + 645 + ], + "score": 1.0, + "content": ", while the total number", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 202, + 657 + ], + "score": 1.0, + "content": "of samples collected is", + "type": "text" + }, + { + "bbox": [ + 202, + 644, + 229, + 654 + ], + "score": 0.9, + "content": "I \\times B", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 643, + 278, + 657 + ], + "score": 1.0, + "content": ". The lower", + "type": "text" + }, + { + "bbox": [ + 279, + 644, + 285, + 654 + ], + "score": 0.73, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "is, the more deployment-efficient the algorithm is; in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 253, + 668 + ], + "score": 1.0, + "content": "contrast, sample efficiency looks at", + "type": "text" + }, + { + "bbox": [ + 254, + 655, + 280, + 665 + ], + "score": 0.9, + "content": "I \\times B", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 654, + 506, + 668 + ], + "score": 1.0, + "content": ". Online RL algorithms, whether they are on-policy or", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "off-policy, typically update the policy and acquire new transitions by deploying the newly updated", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "score": 1.0, + "content": "policy at every iteration. This corresponds to performing hundreds to millions of deployments during", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "learning on standard benchmarks (Haarnoja et al., 2018), which is severely deployment inefficient.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "On the other hand, offline RL literature only studies the case of 1 deployment. A deployment-efficient", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "algorithm would stand in the middle of these two extremes and ideally learn a successful policy from", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 721, + 417, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 417, + 732 + ], + "score": 1.0, + "content": "scratch while deploying only a few distinct policies, as illustrated in Figure 1.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 47 + } + ], + "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": "title", + "bbox": [ + 108, + 81, + 207, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 209, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 209, + 96 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 475, + 119 + ], + "score": 1.0, + "content": "We consider a Markov Decision Process (MDP) setting, characterized by the tuple", + "type": "text" + }, + { + "bbox": [ + 475, + 107, + 505, + 118 + ], + "score": 0.84, + "content": "\\begin{array} { r l } { \\mathcal { M } } & { { } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 506, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 161, + 129 + ], + "score": 0.91, + "content": "( S , \\mathcal { A } , p , r , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 116, + 194, + 131 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 194, + 118, + 203, + 128 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 116, + 281, + 131 + ], + "score": 1.0, + "content": "is the state space,", + "type": "text" + }, + { + "bbox": [ + 281, + 118, + 290, + 128 + ], + "score": 0.72, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 116, + 374, + 131 + ], + "score": 1.0, + "content": "is the action space,", + "type": "text" + }, + { + "bbox": [ + 374, + 118, + 413, + 129 + ], + "score": 0.92, + "content": "p ( s ^ { \\prime } | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 116, + 506, + 131 + ], + "score": 1.0, + "content": "is the transition prob-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 237, + 141 + ], + "score": 1.0, + "content": "ability distribution or dynamics,", + "type": "text" + }, + { + "bbox": [ + 237, + 129, + 256, + 141 + ], + "score": 0.92, + "content": "r ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 128, + 364, + 141 + ], + "score": 1.0, + "content": "is the reward function and", + "type": "text" + }, + { + "bbox": [ + 364, + 129, + 405, + 141 + ], + "score": 0.91, + "content": "\\gamma \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 128, + 506, + 141 + ], + "score": 1.0, + "content": "is the discount factor. A", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 507, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 133, + 153 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 133, + 142, + 141, + 150 + ], + "score": 0.71, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 138, + 507, + 153 + ], + "score": 1.0, + "content": "is a function that determines the agent behavior, mapping from states to probability distribu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 342, + 164 + ], + "score": 1.0, + "content": "tions over actions. The goal is to obtain the optimal policy", + "type": "text" + }, + { + "bbox": [ + 343, + 151, + 354, + 160 + ], + "score": 0.86, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 150, + 506, + 164 + ], + "score": 1.0, + "content": ", which maximizes the expectation of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 324, + 174 + ], + "score": 1.0, + "content": "discounted sum of rewards. The transition probability", + "type": "text" + }, + { + "bbox": [ + 325, + 162, + 363, + 173 + ], + "score": 0.93, + "content": "p ( s ^ { \\prime } | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 161, + 506, + 174 + ], + "score": 1.0, + "content": "is usually unknown, and estimated", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 259, + 186 + ], + "score": 1.0, + "content": "with a parameterized dynamics model", + "type": "text" + }, + { + "bbox": [ + 260, + 173, + 271, + 185 + ], + "score": 0.87, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "(e.g. a neural network) in model-based RL. For simplicity,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 248, + 196 + ], + "score": 1.0, + "content": "we assume that the reward function", + "type": "text" + }, + { + "bbox": [ + 248, + 184, + 266, + 195 + ], + "score": 0.9, + "content": "r ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "is known, and the reward can be computed for any arbitrary", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 483, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 483, + 207 + ], + "score": 1.0, + "content": "state, but we may extend to the unknown setting and predict it using a parameterized function.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 106, + 507, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 211, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 224 + ], + "score": 1.0, + "content": "On-policy vs Off-policy, Online vs Offline At a high-level, most RL algorithms alternate many", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "times between collecting a batch of transitions (deployments) and optimizing the policy (learning).", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 246 + ], + "score": 1.0, + "content": "If the algorithms discard data after each policy update, they are on-policy (Schulman et al., 2015;", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 308, + 257 + ], + "score": 1.0, + "content": "2017), while if they accumulate data in a buffer", + "type": "text" + }, + { + "bbox": [ + 309, + 245, + 318, + 254 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 243, + 506, + 257 + ], + "score": 1.0, + "content": ", i.e. experience replay (Lin, 1992), they are", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 267 + ], + "score": 1.0, + "content": "off-policy (Mnih et al., 2015; Lillicrap et al., 2016; Gu et al., 2016; 2017b; Haarnoja et al., 2018;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "Fujimoto et al., 2019; Fakoor et al., 2019) because not all the data in buffer comes from the current", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "policy. However, we consider all these algorithms to be online RL algorithms, since they involve", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "score": 1.0, + "content": "many deployments during learning, ranging from hundreds to millions. On the other hand, in pure", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 299, + 507, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 507, + 311 + ], + "score": 1.0, + "content": "offline RL, one does not assume direct interaction and learns a policy from only a fixed dataset,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 323 + ], + "score": 1.0, + "content": "which effectively corresponds to a single deployment allowed for learning. Classically, interpolating", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "these two extremes were semi-batch RL algorithms (Lange et al., 2012; Singh et al., 1995), which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 331, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 428, + 344 + ], + "score": 1.0, + "content": "improve the policy through repetitions of collecting a large batch of transitions", + "type": "text" + }, + { + "bbox": [ + 428, + 332, + 504, + 344 + ], + "score": 0.94, + "content": "\\mathcal { D } = \\{ ( s , a , s ^ { \\prime } , r ) \\}", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "and performing many or full policy updates. While these semi-batch RL also realize good deployment", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "efficiency, they have not been extensively studied with neural network function approximators or in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "off-policy settings with experience replay for scalable sample-efficient learning. In our work, we aim", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "to have both high deployment efficiency and sample efficiency by developing an algorithm that can", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 386, + 422, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 422, + 399 + ], + "score": 1.0, + "content": "solve the tasks with minimal policy deployments as well as transition samples.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 210, + 507, + 399 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 415, + 262, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 264, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 264, + 430 + ], + "score": 1.0, + "content": "3 DEPLOYMENT EFFICIENCY", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 506, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "score": 1.0, + "content": "Deploying a new policy for data collection can be associated with a number of costs and risks for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "many real-world applications like medicine, dialogue systems, or robotic control (Murphy et al., 2001;", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "Mandel et al., 2014; Gu et al., 2017a; Kalashnikov et al., 2018; Nachum et al., 2019; Jaques et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "2019). While there are abundant works on safety for RL (Chow et al., 2015; Eysenbach et al., 2018;", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "Chow et al., 2018; Ray et al., 2019; Chow et al., 2019), they often do not provide guarantees in practice", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "when combined with neural networks and stochastic optimization. It is therefore necessary to verify", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "each policy before deployment (e.g. measuring the variance of rewards or checking out-of-bounds", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "actions). Due to such costs associated with each deployment, it is desirable to minimize the number", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "of distinct deployments needed during the learning process. Even ignoring safety considerations,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "frequent updates to a deployed policy can exacerbate communication bottlenecks in large-scale", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "distributed RL systems, which are becoming more prevalent (Nair et al., 2015; Espeholt et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "2018; 2019). We additionally discuss on the importance of the deployment efficiency in real-world", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 572, + 230, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 230, + 584 + ], + "score": 1.0, + "content": "applications. See Appendix C.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 440, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 507, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 507, + 602 + ], + "score": 1.0, + "content": "In order to focus research on these practical bottlenecks, we propose a novel measure of RL algorithms,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "namely, deployment efficiency, which counts how many times the data-collection policy has been", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "changed during improvement from random policy to solve the task. For example, if an RL algorithm", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 428, + 635 + ], + "score": 1.0, + "content": "operates by using its learned policy to collect transitions from the environment", + "type": "text" + }, + { + "bbox": [ + 428, + 622, + 435, + 632 + ], + "score": 0.65, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "times, each time", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 189, + 645 + ], + "score": 1.0, + "content": "collecting a batch of", + "type": "text" + }, + { + "bbox": [ + 190, + 633, + 199, + 643 + ], + "score": 0.8, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 633, + 403, + 645 + ], + "score": 1.0, + "content": "new transitions, then the number of deployments is", + "type": "text" + }, + { + "bbox": [ + 403, + 633, + 410, + 643 + ], + "score": 0.7, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 633, + 506, + 645 + ], + "score": 1.0, + "content": ", while the total number", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 202, + 657 + ], + "score": 1.0, + "content": "of samples collected is", + "type": "text" + }, + { + "bbox": [ + 202, + 644, + 229, + 654 + ], + "score": 0.9, + "content": "I \\times B", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 643, + 278, + 657 + ], + "score": 1.0, + "content": ". The lower", + "type": "text" + }, + { + "bbox": [ + 279, + 644, + 285, + 654 + ], + "score": 0.73, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "is, the more deployment-efficient the algorithm is; in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 253, + 668 + ], + "score": 1.0, + "content": "contrast, sample efficiency looks at", + "type": "text" + }, + { + "bbox": [ + 254, + 655, + 280, + 665 + ], + "score": 0.9, + "content": "I \\times B", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 654, + 506, + 668 + ], + "score": 1.0, + "content": ". Online RL algorithms, whether they are on-policy or", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "off-policy, typically update the policy and acquire new transitions by deploying the newly updated", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "score": 1.0, + "content": "policy at every iteration. This corresponds to performing hundreds to millions of deployments during", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "learning on standard benchmarks (Haarnoja et al., 2018), which is severely deployment inefficient.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "On the other hand, offline RL literature only studies the case of 1 deployment. A deployment-efficient", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "algorithm would stand in the middle of these two extremes and ideally learn a successful policy from", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 721, + 417, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 417, + 732 + ], + "score": 1.0, + "content": "scratch while deploying only a few distinct policies, as illustrated in Figure 1.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 588, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Recent deep RL literature seldom emphasizes deployment efficiency, with few exceptions in specific", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "applications (Kalashnikov et al., 2018) where such a learning procedure is necessary. Deployment-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "inefficient algorithms will fail in scenarios where the deployment of each new policy is exorbitantly", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "expensive, such as safety-critical robotics or user-facing products. Although current state-of-the-art", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "algorithms on continuous control have substantially improved sample or data efficiency, they have", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "not optimized for deployment efficiency. For example, SAC (Haarnoja et al., 2018), an efficient", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "model-free off-policy algorithm, performs half a million to one million policy deployments during", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "learning on MuJoCo (Todorov et al., 2012) benchmarks. ME-TRPO (Kurutach et al., 2018), a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 504, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 182 + ], + "score": 1.0, + "content": "model-based algorithm, performs a much lower 100-300 policy deployments, although this is still", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "relatively high for practical settings.2 In our work, we demonstrate successful learning on standard", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 326, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 326, + 204 + ], + "score": 1.0, + "content": "benchmark environments with only 5-10 deployments.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 219, + 364, + 233 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 365, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 365, + 234 + ], + "score": 1.0, + "content": "4 BEHAVIOR-REGULARIZED MODEL-ENSEMBLE", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 506, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 259 + ], + "score": 1.0, + "content": "To achieve a favorable combination of both high deployment and sample efficiency, we propose", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 270 + ], + "score": 1.0, + "content": "Behavior-Regularized Model-ENsemble (BREMEN). BREMEN incorporates Dyna-style (Sutton,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 507, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 507, + 281 + ], + "score": 1.0, + "content": "1991; Kurutach et al., 2018) model-based RL, learning an ensemble of dynamics models in conjunc-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 292 + ], + "score": 1.0, + "content": "tion with a policy using imaginary rollouts and behavior regularization via conservative trust-region", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 143, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 143, + 302 + ], + "score": 1.0, + "content": "updates.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 314, + 338, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 339, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 339, + 327 + ], + "score": 1.0, + "content": "4.1 IMAGINARY ROLLOUT FROM MODEL ENSEMBLE", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 506, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "As in recent Dyna-style model-based RL methods (Kurutach et al., 2018; Wang et al., 2019), BRE-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 346, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 346, + 214, + 365 + ], + "score": 1.0, + "content": "MEN uses an ensemble of", + "type": "text" + }, + { + "bbox": [ + 214, + 351, + 224, + 360 + ], + "score": 0.8, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 346, + 352, + 365 + ], + "score": 1.0, + "content": "deterministic dynamics models", + "type": "text" + }, + { + "bbox": [ + 352, + 347, + 443, + 367 + ], + "score": 0.93, + "content": "\\hat { f } _ { \\phi } = \\left\\{ \\hat { f } _ { \\phi _ { 1 } } , \\dots , \\hat { f } _ { \\phi _ { K } } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 346, + 506, + 365 + ], + "score": 1.0, + "content": "to alleviate the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 365, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 248, + 380 + ], + "score": 1.0, + "content": "problem of model bias. Each model", + "type": "text" + }, + { + "bbox": [ + 248, + 365, + 262, + 380 + ], + "score": 0.92, + "content": "\\hat { f } _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 367, + 342, + 380 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 342, + 368, + 353, + 379 + ], + "score": 0.88, + "content": "\\phi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "and trained by the following objective,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 379, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 405, + 394 + ], + "score": 1.0, + "content": "which minimizes mean squared error between the prediction of next state", + "type": "text" + }, + { + "bbox": [ + 406, + 379, + 448, + 393 + ], + "score": 0.93, + "content": "\\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 379, + 505, + 394 + ], + "score": 1.0, + "content": "and true next", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 392, + 218, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 127, + 403 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 127, + 394, + 146, + 404 + ], + "score": 0.89, + "content": "s _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 393, + 205, + 403 + ], + "score": 1.0, + "content": "over a dataset", + "type": "text" + }, + { + "bbox": [ + 205, + 392, + 214, + 401 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 393, + 218, + 403 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 409, + 404, + 441 + ], + "lines": [ + { + "bbox": [ + 206, + 409, + 404, + 441 + ], + "spans": [ + { + "bbox": [ + 206, + 409, + 404, + 441 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\phi _ { i } } \\frac { 1 } { | \\mathcal { D } | } \\sum _ { \\left( s _ { t } , a _ { t } , s _ { t + 1 } \\right) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\left. s _ { t + 1 } - \\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right) \\right. _ { 2 } ^ { 2 } .", + "type": "interline_equation", + "image_path": "acece41c73ec2f834ca9cf9b6bd7fc9f42921e41dec46df584818bce145a09d4.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 409, + 404, + 425.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 206, + 425.0, + 404, + 441.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 446, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 215, + 461 + ], + "score": 1.0, + "content": "During training of a policy", + "type": "text" + }, + { + "bbox": [ + 215, + 449, + 226, + 458 + ], + "score": 0.84, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 445, + 506, + 461 + ], + "score": 1.0, + "content": ", imagined trajectories of states and actions are generated sequentially,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 458, + 396, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 205, + 473 + ], + "score": 1.0, + "content": "using a dynamics model", + "type": "text" + }, + { + "bbox": [ + 206, + 458, + 219, + 472 + ], + "score": 0.91, + "content": "\\hat { f } _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 458, + 396, + 473 + ], + "score": 1.0, + "content": "that is randomly selected at each time step:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 477, + 429, + 493 + ], + "lines": [ + { + "bbox": [ + 181, + 477, + 429, + 493 + ], + "spans": [ + { + "bbox": [ + 181, + 477, + 429, + 493 + ], + "score": 0.9, + "content": "a _ { t } \\sim \\pi _ { \\theta } ( \\cdot | \\hat { s } _ { t } ) , \\quad \\hat { s } _ { t + 1 } = \\hat { f } _ { \\phi _ { i } } ( \\hat { s } _ { t } , a _ { t } ) \\quad \\mathrm { w h e r e } \\quad i \\sim \\{ 1 \\cdot \\cdot \\cdot K \\} .", + "type": "interline_equation", + "image_path": "dc95e3b3e4427eee9f1dd8c199b2f4aa7b26ef0533ddc221497d05deb5fd6650.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 181, + 477, + 429, + 493 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 505, + 355, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 356, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 356, + 518 + ], + "score": 1.0, + "content": "4.2 POLICY UPDATE WITH BEHAVIOR REGULARIZATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "In order to manage the discrepancy between the true dynamics and the learned model caused by", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "the distribution shift in batch settings, we propose to use iterative policy updates via a trust-region", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "constraint, re-initialized with a behavior-cloned policy after every deployment. Specifically, after", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 418, + 571 + ], + "score": 1.0, + "content": "each deployment, we are given an updated dataset of experience transitions", + "type": "text" + }, + { + "bbox": [ + 418, + 560, + 427, + 569 + ], + "score": 0.78, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 560, + 506, + 571 + ], + "score": 1.0, + "content": ". With this dataset,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 281, + 583 + ], + "score": 1.0, + "content": "we approximate the true behavior policy", + "type": "text" + }, + { + "bbox": [ + 281, + 572, + 292, + 582 + ], + "score": 0.84, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "through behavior cloning (BC), utilizing a neural", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 141, + 594 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 141, + 582, + 153, + 594 + ], + "score": 0.89, + "content": "\\hat { \\pi } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 582, + 225, + 594 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 226, + 582, + 233, + 593 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 582, + 505, + 594 + ], + "score": 1.0, + "content": ", where we implicitly assume a fixed variance, a common practice in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 592, + 227, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 227, + 605 + ], + "score": 1.0, + "content": "BC (Rajeswaran et al., 2017):", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 609, + 382, + 641 + ], + "lines": [ + { + "bbox": [ + 228, + 609, + 382, + 641 + ], + "spans": [ + { + "bbox": [ + 228, + 609, + 382, + 641 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\beta } \\frac { 1 } { | \\mathscr { D } | } \\sum _ { ( s _ { t } , a _ { t } ) \\in \\mathscr { D } } \\frac { 1 } { 2 } \\left. a _ { t } - \\hat { \\pi } _ { \\beta } \\left( s _ { t } \\right) \\right. _ { 2 } ^ { 2 } .", + "type": "interline_equation", + "image_path": "28f2399f44d1d36e1e311585fa4505b5585f6ceb535df8d77fee6acdc89a6c43.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 228, + 609, + 382, + 625.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 228, + 625.0, + 382, + 641.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 408, + 660 + ], + "score": 1.0, + "content": "After obtaining the estimated behavior policy, we initialize the target policy", + "type": "text" + }, + { + "bbox": [ + 409, + 649, + 420, + 658 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 645, + 505, + 660 + ], + "score": 1.0, + "content": "as a Gaussian policy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 172, + 670 + ], + "score": 1.0, + "content": "with mean from", + "type": "text" + }, + { + "bbox": [ + 173, + 658, + 185, + 670 + ], + "score": 0.88, + "content": "\\hat { \\pi } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "and standard deviation of 1. This BC initialization in conjunction with gradient", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 419, + 681 + ], + "score": 1.0, + "content": "descent based optimization may be seen as implicitly biasing the optimized", + "type": "text" + }, + { + "bbox": [ + 419, + 670, + 430, + 680 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "to be close to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 680, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 691 + ], + "score": 1.0, + "content": "data-collection policy (Nagarajan & Kolter, 2019), and thus works as a remedy for the distribution", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "shift problem (Ross et al., 2011). To further bias the learned policy to be close to the data-collection", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 505, + 725 + ], + "score": 1.0, + "content": "2We examined the number of deployments by checking their original implementations, while the frequency", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 277, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 277, + 732 + ], + "score": 1.0, + "content": "of data collection is a tunable hyper-parameter.", + "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, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Recent deep RL literature seldom emphasizes deployment efficiency, with few exceptions in specific", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "applications (Kalashnikov et al., 2018) where such a learning procedure is necessary. Deployment-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "inefficient algorithms will fail in scenarios where the deployment of each new policy is exorbitantly", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "expensive, such as safety-critical robotics or user-facing products. Although current state-of-the-art", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "algorithms on continuous control have substantially improved sample or data efficiency, they have", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 149 + ], + "score": 1.0, + "content": "not optimized for deployment efficiency. For example, SAC (Haarnoja et al., 2018), an efficient", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "model-free off-policy algorithm, performs half a million to one million policy deployments during", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "learning on MuJoCo (Todorov et al., 2012) benchmarks. ME-TRPO (Kurutach et al., 2018), a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 504, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 182 + ], + "score": 1.0, + "content": "model-based algorithm, performs a much lower 100-300 policy deployments, although this is still", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "relatively high for practical settings.2 In our work, we demonstrate successful learning on standard", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 326, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 326, + 204 + ], + "score": 1.0, + "content": "benchmark environments with only 5-10 deployments.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 82, + 506, + 204 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 219, + 364, + 233 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 365, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 365, + 234 + ], + "score": 1.0, + "content": "4 BEHAVIOR-REGULARIZED MODEL-ENSEMBLE", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 506, + 301 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 259 + ], + "score": 1.0, + "content": "To achieve a favorable combination of both high deployment and sample efficiency, we propose", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 270 + ], + "score": 1.0, + "content": "Behavior-Regularized Model-ENsemble (BREMEN). BREMEN incorporates Dyna-style (Sutton,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 507, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 507, + 281 + ], + "score": 1.0, + "content": "1991; Kurutach et al., 2018) model-based RL, learning an ensemble of dynamics models in conjunc-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 292 + ], + "score": 1.0, + "content": "tion with a policy using imaginary rollouts and behavior regularization via conservative trust-region", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 143, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 143, + 302 + ], + "score": 1.0, + "content": "updates.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 244, + 507, + 302 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 314, + 338, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 339, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 339, + 327 + ], + "score": 1.0, + "content": "4.1 IMAGINARY ROLLOUT FROM MODEL ENSEMBLE", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 506, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "As in recent Dyna-style model-based RL methods (Kurutach et al., 2018; Wang et al., 2019), BRE-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 346, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 346, + 214, + 365 + ], + "score": 1.0, + "content": "MEN uses an ensemble of", + "type": "text" + }, + { + "bbox": [ + 214, + 351, + 224, + 360 + ], + "score": 0.8, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 346, + 352, + 365 + ], + "score": 1.0, + "content": "deterministic dynamics models", + "type": "text" + }, + { + "bbox": [ + 352, + 347, + 443, + 367 + ], + "score": 0.93, + "content": "\\hat { f } _ { \\phi } = \\left\\{ \\hat { f } _ { \\phi _ { 1 } } , \\dots , \\hat { f } _ { \\phi _ { K } } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 346, + 506, + 365 + ], + "score": 1.0, + "content": "to alleviate the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 365, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 248, + 380 + ], + "score": 1.0, + "content": "problem of model bias. Each model", + "type": "text" + }, + { + "bbox": [ + 248, + 365, + 262, + 380 + ], + "score": 0.92, + "content": "\\hat { f } _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 367, + 342, + 380 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 342, + 368, + 353, + 379 + ], + "score": 0.88, + "content": "\\phi _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "and trained by the following objective,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 379, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 405, + 394 + ], + "score": 1.0, + "content": "which minimizes mean squared error between the prediction of next state", + "type": "text" + }, + { + "bbox": [ + 406, + 379, + 448, + 393 + ], + "score": 0.93, + "content": "\\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 379, + 505, + 394 + ], + "score": 1.0, + "content": "and true next", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 392, + 218, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 127, + 403 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 127, + 394, + 146, + 404 + ], + "score": 0.89, + "content": "s _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 393, + 205, + 403 + ], + "score": 1.0, + "content": "over a dataset", + "type": "text" + }, + { + "bbox": [ + 205, + 392, + 214, + 401 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 393, + 218, + 403 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 335, + 506, + 404 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 409, + 404, + 441 + ], + "lines": [ + { + "bbox": [ + 206, + 409, + 404, + 441 + ], + "spans": [ + { + "bbox": [ + 206, + 409, + 404, + 441 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\phi _ { i } } \\frac { 1 } { | \\mathcal { D } | } \\sum _ { \\left( s _ { t } , a _ { t } , s _ { t + 1 } \\right) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\left. s _ { t + 1 } - \\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right) \\right. _ { 2 } ^ { 2 } .", + "type": "interline_equation", + "image_path": "acece41c73ec2f834ca9cf9b6bd7fc9f42921e41dec46df584818bce145a09d4.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 409, + 404, + 425.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 206, + 425.0, + 404, + 441.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 446, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 215, + 461 + ], + "score": 1.0, + "content": "During training of a policy", + "type": "text" + }, + { + "bbox": [ + 215, + 449, + 226, + 458 + ], + "score": 0.84, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 445, + 506, + 461 + ], + "score": 1.0, + "content": ", imagined trajectories of states and actions are generated sequentially,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 458, + 396, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 205, + 473 + ], + "score": 1.0, + "content": "using a dynamics model", + "type": "text" + }, + { + "bbox": [ + 206, + 458, + 219, + 472 + ], + "score": 0.91, + "content": "\\hat { f } _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 458, + 396, + 473 + ], + "score": 1.0, + "content": "that is randomly selected at each time step:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 445, + 506, + 473 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 477, + 429, + 493 + ], + "lines": [ + { + "bbox": [ + 181, + 477, + 429, + 493 + ], + "spans": [ + { + "bbox": [ + 181, + 477, + 429, + 493 + ], + "score": 0.9, + "content": "a _ { t } \\sim \\pi _ { \\theta } ( \\cdot | \\hat { s } _ { t } ) , \\quad \\hat { s } _ { t + 1 } = \\hat { f } _ { \\phi _ { i } } ( \\hat { s } _ { t } , a _ { t } ) \\quad \\mathrm { w h e r e } \\quad i \\sim \\{ 1 \\cdot \\cdot \\cdot K \\} .", + "type": "interline_equation", + "image_path": "dc95e3b3e4427eee9f1dd8c199b2f4aa7b26ef0533ddc221497d05deb5fd6650.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 181, + 477, + 429, + 493 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 505, + 355, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 356, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 356, + 518 + ], + "score": 1.0, + "content": "4.2 POLICY UPDATE WITH BEHAVIOR REGULARIZATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "In order to manage the discrepancy between the true dynamics and the learned model caused by", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "the distribution shift in batch settings, we propose to use iterative policy updates via a trust-region", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "constraint, re-initialized with a behavior-cloned policy after every deployment. Specifically, after", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 418, + 571 + ], + "score": 1.0, + "content": "each deployment, we are given an updated dataset of experience transitions", + "type": "text" + }, + { + "bbox": [ + 418, + 560, + 427, + 569 + ], + "score": 0.78, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 560, + 506, + 571 + ], + "score": 1.0, + "content": ". With this dataset,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 281, + 583 + ], + "score": 1.0, + "content": "we approximate the true behavior policy", + "type": "text" + }, + { + "bbox": [ + 281, + 572, + 292, + 582 + ], + "score": 0.84, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "through behavior cloning (BC), utilizing a neural", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 141, + 594 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 141, + 582, + 153, + 594 + ], + "score": 0.89, + "content": "\\hat { \\pi } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 582, + 225, + 594 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 226, + 582, + 233, + 593 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 582, + 505, + 594 + ], + "score": 1.0, + "content": ", where we implicitly assume a fixed variance, a common practice in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 592, + 227, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 227, + 605 + ], + "score": 1.0, + "content": "BC (Rajeswaran et al., 2017):", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 527, + 506, + 605 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 609, + 382, + 641 + ], + "lines": [ + { + "bbox": [ + 228, + 609, + 382, + 641 + ], + "spans": [ + { + "bbox": [ + 228, + 609, + 382, + 641 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\beta } \\frac { 1 } { | \\mathscr { D } | } \\sum _ { ( s _ { t } , a _ { t } ) \\in \\mathscr { D } } \\frac { 1 } { 2 } \\left. a _ { t } - \\hat { \\pi } _ { \\beta } \\left( s _ { t } \\right) \\right. _ { 2 } ^ { 2 } .", + "type": "interline_equation", + "image_path": "28f2399f44d1d36e1e311585fa4505b5585f6ceb535df8d77fee6acdc89a6c43.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 228, + 609, + 382, + 625.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 228, + 625.0, + 382, + 641.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 408, + 660 + ], + "score": 1.0, + "content": "After obtaining the estimated behavior policy, we initialize the target policy", + "type": "text" + }, + { + "bbox": [ + 409, + 649, + 420, + 658 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 645, + 505, + 660 + ], + "score": 1.0, + "content": "as a Gaussian policy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 172, + 670 + ], + "score": 1.0, + "content": "with mean from", + "type": "text" + }, + { + "bbox": [ + 173, + 658, + 185, + 670 + ], + "score": 0.88, + "content": "\\hat { \\pi } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "and standard deviation of 1. This BC initialization in conjunction with gradient", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 419, + 681 + ], + "score": 1.0, + "content": "descent based optimization may be seen as implicitly biasing the optimized", + "type": "text" + }, + { + "bbox": [ + 419, + 670, + 430, + 680 + ], + "score": 0.85, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "to be close to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 680, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 691 + ], + "score": 1.0, + "content": "data-collection policy (Nagarajan & Kolter, 2019), and thus works as a remedy for the distribution", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "shift problem (Ross et al., 2011). To further bias the learned policy to be close to the data-collection", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 645, + 505, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 306, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 307, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 307, + 95 + ], + "score": 1.0, + "content": "Algorithm 1 BREMEN for Deployment-Efficient RL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 108, + 97, + 504, + 223 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 97, + 504, + 223 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 97, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 108, + 97, + 504, + 223 + ], + "score": 0.943, + "html": "
Input: Empty dataset Dau,D,Initial parameters Φ = {1,·,Φk},β,Number of policy optimization T
Numberof deploymentsI.
1:Randomly initialize the target policy πθ .
2:for deploymenti=1,·.,I do
3:Collect B transitions in the true environment using T and add them to dataset
Dall←DalU{St,at,rt,St+1},D←{st,at,rt,St+1}.
4:Train K dynamics models f using Dau via Equation 1.
5: 6:Train estimated behavior policy πβ using D by behavior cloning via Equation 3.
7:Re-initialize target policy πeo = Normal(β,1). for policy optimization k =1,..·,T do
8:Generate imaginary rollout via Equation 2.
9:Optimize target policy Tβ satisfying Equation 4 with the rollout.
", + "type": "table", + "image_path": "d3126046e5e54a3a6f42fe5bd2e6226e1b66a423e4c630c85402fa980d756fdb.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 108, + 97, + 504, + 139.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 139.0, + 504, + 181.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 181.0, + 504, + 223.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "policy, we opt to use a KL-based trust-region optimization (Schulman et al., 2015). Therefore, the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 256, + 252, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 252, + 269 + ], + "score": 1.0, + "content": "optimization of BREMEN becomes", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 273, + 457, + 327 + ], + "lines": [ + { + "bbox": [ + 152, + 273, + 457, + 327 + ], + "spans": [ + { + "bbox": [ + 152, + 273, + 457, + 327 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) ] } \\\\ & { \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , \\quad \\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 ) , } \\end{array}", + "type": "interline_equation", + "image_path": "8af682036a9c8970146000e325dfec08320cd1c07d20dafde4f6238f0d1bf694.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 152, + 273, + 457, + 291.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 152, + 291.0, + 457, + 309.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 152, + 309.0, + 457, + 327.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 504, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 135, + 347 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 334, + 179, + 345 + ], + "score": 0.93, + "content": "A ^ { \\pi _ { \\theta _ { k } } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 332, + 265, + 347 + ], + "score": 1.0, + "content": "is the advantage of", + "type": "text" + }, + { + "bbox": [ + 266, + 336, + 281, + 346 + ], + "score": 0.88, + "content": "\\pi _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 332, + 505, + 347 + ], + "score": 1.0, + "content": "computed using model-based rollouts in the learned", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 344, + 305, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 191, + 357 + ], + "score": 1.0, + "content": "dynamics model and", + "type": "text" + }, + { + "bbox": [ + 192, + 345, + 198, + 355 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 344, + 305, + 357 + ], + "score": 1.0, + "content": "is the maximum step size.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "The combination of BC for initialization and finite iterative trust-region updates serves as an implicit", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "KL regularization. This is in contrast to many previous offline RL algorithms that augment the value", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "function with a penalty of explicit KL divergence (Siegel et al., 2020; Wu et al., 2019) or maximum", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "mean discrepancy (Kumar et al., 2019). Empirically, we found that our regularization technique", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "outperforms the explicit KL penalty (Section 5.3). Furthermore, we provide a mathematical intuition", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "explaining how our methods works as an implicit regularization of distributional shift in Appendix A.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 448 + ], + "score": 1.0, + "content": "By recursively performing offline procedure, BREMEN can be used for deployment-efficient learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 444, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 504, + 456 + ], + "score": 1.0, + "content": "as shown in Algorithm 1, starting from a randomly initialized policy, collecting experience data, and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 456, + 244, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 244, + 468 + ], + "score": 1.0, + "content": "performing offline policy updates.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 484, + 200, + 496 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 201, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 201, + 498 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "In order to realize a deployment-efficient RL algorithm, the batch policy optimizer has to be stable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "and sample-efficient. We first evaluate BREMEN in the offline setting, where the algorithm learns", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 488, + 543 + ], + "score": 1.0, + "content": "the policy from a static dataset. Standard benchmarks of MuJoCo physics simulator shown in", + "type": "text" + }, + { + "bbox": [ + 489, + 532, + 505, + 542 + ], + "score": 0.38, + "content": "\\mathrm { W u }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "score": 1.0, + "content": "et al., 2019) and more recent datasets (Fu et al., 2020) are used in the evaluation, and we compared", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "the asymptotic performance of BREMEN with other offline RL methods including the concurrent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "model-based approaches. We then tested the sample-efficiency of offline algorithms using smaller", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "score": 1.0, + "content": "datasets. We lastly extend the experiment to deployment-efficient settings, where the algorithms learn", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "their policies from scratch via a limited number of deployments and perform some ablations to see", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 597, + 453, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 453, + 609 + ], + "score": 1.0, + "content": "how components in BREMEN affect performance. See Appendix F for further details.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 622, + 316, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 317, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 317, + 635 + ], + "score": 1.0, + "content": "5.1 EVALUATING OFFLINE RL PERFORMANCES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "Standard Benchmarks We evaluate BREMEN on standard offline RL benchmarks following and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "identical protocol as in Wu et al. (2019): We first train online SAC to a certain cumulative reward", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "threshold, 4,000 in HalfCheetah, 1,000 in Ant, Hopper, and Walker2d, and collect offline datasets. We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "evaluate agents with the offline dataset of one million (1M) transitions, which is standard for BCQ and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "BRAC. Table 1 (top) shows that BREMEN can achieve performance competitive with state-of-the-art", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 698, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 710 + ], + "score": 1.0, + "content": "model-free offline RL algorithms when using the standard dataset size of 1M. We also test BREMEN", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "with more recent benchmarks of D4RL (Fu et al., 2020) and compared the performance with the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 424, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 424, + 732 + ], + "score": 1.0, + "content": "existing model-free and model-based methods. See Appendix D for the results.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 306, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 307, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 307, + 95 + ], + "score": 1.0, + "content": "Algorithm 1 BREMEN for Deployment-Efficient RL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 108, + 97, + 504, + 223 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 97, + 504, + 223 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 97, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 108, + 97, + 504, + 223 + ], + "score": 0.943, + "html": "
Input: Empty dataset Dau,D,Initial parameters Φ = {1,·,Φk},β,Number of policy optimization T
Numberof deploymentsI.
1:Randomly initialize the target policy πθ .
2:for deploymenti=1,·.,I do
3:Collect B transitions in the true environment using T and add them to dataset
Dall←DalU{St,at,rt,St+1},D←{st,at,rt,St+1}.
4:Train K dynamics models f using Dau via Equation 1.
5: 6:Train estimated behavior policy πβ using D by behavior cloning via Equation 3.
7:Re-initialize target policy πeo = Normal(β,1). for policy optimization k =1,..·,T do
8:Generate imaginary rollout via Equation 2.
9:Optimize target policy Tβ satisfying Equation 4 with the rollout.
", + "type": "table", + "image_path": "d3126046e5e54a3a6f42fe5bd2e6226e1b66a423e4c630c85402fa980d756fdb.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 108, + 97, + 504, + 139.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 139.0, + 504, + 181.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 181.0, + 504, + 223.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "policy, we opt to use a KL-based trust-region optimization (Schulman et al., 2015). Therefore, the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 256, + 252, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 252, + 269 + ], + "score": 1.0, + "content": "optimization of BREMEN becomes", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 244, + 505, + 269 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 273, + 457, + 327 + ], + "lines": [ + { + "bbox": [ + 152, + 273, + 457, + 327 + ], + "spans": [ + { + "bbox": [ + 152, + 273, + 457, + 327 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) ] } \\\\ & { \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , \\quad \\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 ) , } \\end{array}", + "type": "interline_equation", + "image_path": "8af682036a9c8970146000e325dfec08320cd1c07d20dafde4f6238f0d1bf694.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 152, + 273, + 457, + 291.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 152, + 291.0, + 457, + 309.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 152, + 309.0, + 457, + 327.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 504, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 135, + 347 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 334, + 179, + 345 + ], + "score": 0.93, + "content": "A ^ { \\pi _ { \\theta _ { k } } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 332, + 265, + 347 + ], + "score": 1.0, + "content": "is the advantage of", + "type": "text" + }, + { + "bbox": [ + 266, + 336, + 281, + 346 + ], + "score": 0.88, + "content": "\\pi _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 332, + 505, + 347 + ], + "score": 1.0, + "content": "computed using model-based rollouts in the learned", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 344, + 305, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 191, + 357 + ], + "score": 1.0, + "content": "dynamics model and", + "type": "text" + }, + { + "bbox": [ + 192, + 345, + 198, + 355 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 344, + 305, + 357 + ], + "score": 1.0, + "content": "is the maximum step size.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 332, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "The combination of BC for initialization and finite iterative trust-region updates serves as an implicit", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "KL regularization. This is in contrast to many previous offline RL algorithms that augment the value", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "function with a penalty of explicit KL divergence (Siegel et al., 2020; Wu et al., 2019) or maximum", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "mean discrepancy (Kumar et al., 2019). Empirically, we found that our regularization technique", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "outperforms the explicit KL penalty (Section 5.3). Furthermore, we provide a mathematical intuition", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "explaining how our methods works as an implicit regularization of distributional shift in Appendix A.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 361, + 506, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 448 + ], + "score": 1.0, + "content": "By recursively performing offline procedure, BREMEN can be used for deployment-efficient learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 444, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 504, + 456 + ], + "score": 1.0, + "content": "as shown in Algorithm 1, starting from a randomly initialized policy, collecting experience data, and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 456, + 244, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 244, + 468 + ], + "score": 1.0, + "content": "performing offline policy updates.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 432, + 505, + 468 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 484, + 200, + 496 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 201, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 201, + 498 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "In order to realize a deployment-efficient RL algorithm, the batch policy optimizer has to be stable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "and sample-efficient. We first evaluate BREMEN in the offline setting, where the algorithm learns", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 488, + 543 + ], + "score": 1.0, + "content": "the policy from a static dataset. Standard benchmarks of MuJoCo physics simulator shown in", + "type": "text" + }, + { + "bbox": [ + 489, + 532, + 505, + 542 + ], + "score": 0.38, + "content": "\\mathrm { W u }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 554 + ], + "score": 1.0, + "content": "et al., 2019) and more recent datasets (Fu et al., 2020) are used in the evaluation, and we compared", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "the asymptotic performance of BREMEN with other offline RL methods including the concurrent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "model-based approaches. We then tested the sample-efficiency of offline algorithms using smaller", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "score": 1.0, + "content": "datasets. We lastly extend the experiment to deployment-efficient settings, where the algorithms learn", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "their policies from scratch via a limited number of deployments and perform some ablations to see", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 597, + 453, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 453, + 609 + ], + "score": 1.0, + "content": "how components in BREMEN affect performance. See Appendix F for further details.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 508, + 506, + 609 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 622, + 316, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 317, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 317, + 635 + ], + "score": 1.0, + "content": "5.1 EVALUATING OFFLINE RL PERFORMANCES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "Standard Benchmarks We evaluate BREMEN on standard offline RL benchmarks following and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "identical protocol as in Wu et al. (2019): We first train online SAC to a certain cumulative reward", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "threshold, 4,000 in HalfCheetah, 1,000 in Ant, Hopper, and Walker2d, and collect offline datasets. We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "evaluate agents with the offline dataset of one million (1M) transitions, which is standard for BCQ and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "BRAC. Table 1 (top) shows that BREMEN can achieve performance competitive with state-of-the-art", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 698, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 710 + ], + "score": 1.0, + "content": "model-free offline RL algorithms when using the standard dataset size of 1M. We also test BREMEN", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "with more recent benchmarks of D4RL (Fu et al., 2020) and compared the performance with the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 424, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 424, + 732 + ], + "score": 1.0, + "content": "existing model-free and model-based methods. See Appendix D for the results.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 643, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 153, + 82, + 457, + 357 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 153, + 82, + 457, + 357 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 82, + 457, + 357 + ], + "spans": [ + { + "bbox": [ + 153, + 82, + 457, + 357 + ], + "score": 0.935, + "html": "
1,000,000(1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset BC1191 1321±141412611281376
4281±12 5783±2721341±161 1130±1271421±147 2153±753
BCQ2021±31 2072±2851422±90
BRAC7192±1152239±1124
BRAC (max Q)2369±2347320±911916±3432409±1210
BREMEN (Ours)3328±2758055±1032058±8522346±230
ME-TRPO (offline)1258±5501804±924518±91211±154
100,000(100K)transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191406611281376
BC1330±814266±211322±1091426±47
BCQ1363±1993915±4111129±2382187±196
BRAC-157±3832505±25011310±702162±1109
BRAC (max Q)-226±3872332±24221422±1012164±1114
BREMEN (Ours)1633±1276095±3702191±4552132±301
ME-TRPO (offline)974±42±434307±17010±61
50,000 (50K) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191413811281376
BC1270±654230±491249±611420±194
BCQ1329±951319±6261178±2351841±439
BRAC-878±244-597±731277±102976±1207
BRAC (max Q)-843±279-590±561276±225903±1137
BREMEN(Ours)1347±2835823±1461632±7962280±647
938±32
ME-TRPO (offfline)-73±95152±13176±343
", + "type": "table", + "image_path": "da843c61732773303b62a35fa53a00983025285105e1b4d41a644d386b72b9a6.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 153, + 82, + 457, + 94.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 153, + 94.5, + 457, + 107.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 153, + 107.0, + 457, + 119.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 153, + 119.5, + 457, + 132.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 153, + 132.0, + 457, + 144.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 153, + 144.5, + 457, + 157.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 153, + 157.0, + 457, + 169.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 153, + 169.5, + 457, + 182.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 153, + 182.0, + 457, + 194.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 153, + 194.5, + 457, + 207.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 153, + 207.0, + 457, + 219.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 153, + 219.5, + 457, + 232.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 153, + 232.0, + 457, + 244.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 153, + 244.5, + 457, + 257.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 153, + 257.0, + 457, + 269.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 153, + 269.5, + 457, + 282.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 282.0, + 457, + 294.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 153, + 294.5, + 457, + 307.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 153, + 307.0, + 457, + 319.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 153, + 319.5, + 457, + 332.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 153, + 332.0, + 457, + 344.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 153, + 344.5, + 457, + 357.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 107, + 361, + 505, + 402 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "Table 1: Comparison of BREMEN to the existing offline methods on static datasets. Each cell shows the average", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "cumulative reward and their standard deviation, where the number of samples is 1M, 100K, and 50K, respectively.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "The maximum steps per episode is 1,000. BRAC applies a primal form of KL value penalty, and BRAC (max Q)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 391, + 497, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 497, + 403 + ], + "score": 1.0, + "content": "means its variant of sampling multiple actions and taking the maximum according to the learned Q function.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + } + ], + "index": 17.0 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "score": 1.0, + "content": "Evaluating Sample-Efficiency We then evaluate the sample-efficiency by making much smaller", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 150, + 447 + ], + "score": 1.0, + "content": "datasets of", + "type": "text" + }, + { + "bbox": [ + 150, + 435, + 167, + 445 + ], + "score": 0.53, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 434, + 185, + 447 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 435, + 205, + 445 + ], + "score": 0.35, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 434, + 252, + 447 + ], + "score": 1.0, + "content": "transitions", + "type": "text" + }, + { + "bbox": [ + 252, + 435, + 287, + 445 + ], + "score": 0.89, + "content": "5 \\sim 1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "of Wu et al. (2019)). Surprisingly, Table 1 (middle and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "score": 1.0, + "content": "bottom) shows that BREMEN can also learn with smaller datasets, where BCQ and BRAC are unable", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 457, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 468 + ], + "score": 1.0, + "content": "to exceed even BC baseline. This is a novel evaluation protocol we proposed, and our BREMEN’s", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "superior performance here is exactly what enables recursive BREMEN in the next section to be an", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 478, + 329, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 329, + 492 + ], + "score": 1.0, + "content": "effective algorithm in deployment-constrained settings.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 107, + 503, + 432, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 434, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 434, + 516 + ], + "score": 1.0, + "content": "5.2 EVALUATING DEPLOYMENT EFFICIENCY IN ONLINE RL BENCHMARKS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 536 + ], + "score": 1.0, + "content": "We compare BREMEN to ME-TRPO, SAC, BCQ, and BRAC applied to limited deployment settings.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 534, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 504, + 548 + ], + "score": 1.0, + "content": "To adapt offline methods (BCQ, BRAC) to this setting, we simply apply them in a recursive fashion;3", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "at each deployment iteration, we collect a batch of data with the most recent policy and then run the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "offline update with this dataset. As for SAC, we simply change the replay buffer to update only at", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "score": 1.0, + "content": "specific deployment intervals. For the sake of comparison, we align the number of deployments and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 459, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 334, + 591 + ], + "score": 1.0, + "content": "the amount of data collection at each deployment (either", + "type": "text" + }, + { + "bbox": [ + 334, + 579, + 355, + 590 + ], + "score": 0.51, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 578, + 366, + 591 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 367, + 579, + 388, + 590 + ], + "score": 0.36, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 578, + 459, + 591 + ], + "score": 1.0, + "content": ") for all methods.4", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 235, + 609 + ], + "score": 1.0, + "content": "Figure 2 shows the results with", + "type": "text" + }, + { + "bbox": [ + 236, + 596, + 258, + 607 + ], + "score": 0.61, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 596, + 298, + 609 + ], + "score": 1.0, + "content": "(top) and", + "type": "text" + }, + { + "bbox": [ + 299, + 596, + 320, + 607 + ], + "score": 0.52, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "(bottom) batched transitions per deployment.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "Regardless of the environments and the batch size per update, BREMEN achieves remarkable", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 619, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 630 + ], + "score": 1.0, + "content": "performance while existing online and offline RL methods struggle to make any progress. As a point", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "of comparison, we also include results for online SAC and ME-TRPO without deployment-limits but", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "score": 1.0, + "content": "using the same number of transitions. We additionally compare BREMEN to the model-based offline", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 651, + 434, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 434, + 664 + ], + "score": 1.0, + "content": "RL methods with uncertainty-based penalties. See Appendix E for further details.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 108, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Following the motivation of deployment efficiency, obtaining a successful policy under data-collection", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "constraint conditions in the real application, we extensively evaluate our algorithm on more realistic", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "robotics environments in OpenAI Gym. The experimental procedure is the same as above, while", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 710, + 497, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 499, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 499, + 722 + ], + "score": 1.0, + "content": "3Recursive BCQ and BRAC also do behavioral cloning-based policy initialization after each deployment.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 718, + 430, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 718, + 430, + 734 + ], + "score": 1.0, + "content": "4We evaluate the trade-off between sample and deployment efficiency in Appendix B.", + "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": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 153, + 82, + 457, + 357 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 153, + 82, + 457, + 357 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 82, + 457, + 357 + ], + "spans": [ + { + "bbox": [ + 153, + 82, + 457, + 357 + ], + "score": 0.935, + "html": "
1,000,000(1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset BC1191 1321±141412611281376
4281±12 5783±2721341±161 1130±1271421±147 2153±753
BCQ2021±31 2072±2851422±90
BRAC7192±1152239±1124
BRAC (max Q)2369±2347320±911916±3432409±1210
BREMEN (Ours)3328±2758055±1032058±8522346±230
ME-TRPO (offline)1258±5501804±924518±91211±154
100,000(100K)transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191406611281376
BC1330±814266±211322±1091426±47
BCQ1363±1993915±4111129±2382187±196
BRAC-157±3832505±25011310±702162±1109
BRAC (max Q)-226±3872332±24221422±1012164±1114
BREMEN (Ours)1633±1276095±3702191±4552132±301
ME-TRPO (offline)974±42±434307±17010±61
50,000 (50K) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191413811281376
BC1270±654230±491249±611420±194
BCQ1329±951319±6261178±2351841±439
BRAC-878±244-597±731277±102976±1207
BRAC (max Q)-843±279-590±561276±225903±1137
BREMEN(Ours)1347±2835823±1461632±7962280±647
938±32
ME-TRPO (offfline)-73±95152±13176±343
", + "type": "table", + "image_path": "da843c61732773303b62a35fa53a00983025285105e1b4d41a644d386b72b9a6.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 153, + 82, + 457, + 94.5 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 153, + 94.5, + 457, + 107.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 153, + 107.0, + 457, + 119.5 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 153, + 119.5, + 457, + 132.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 153, + 132.0, + 457, + 144.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 153, + 144.5, + 457, + 157.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 153, + 157.0, + 457, + 169.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 153, + 169.5, + 457, + 182.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 153, + 182.0, + 457, + 194.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 153, + 194.5, + 457, + 207.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 153, + 207.0, + 457, + 219.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 153, + 219.5, + 457, + 232.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 153, + 232.0, + 457, + 244.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 153, + 244.5, + 457, + 257.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 153, + 257.0, + 457, + 269.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 153, + 269.5, + 457, + 282.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 282.0, + 457, + 294.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 153, + 294.5, + 457, + 307.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 153, + 307.0, + 457, + 319.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 153, + 319.5, + 457, + 332.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 153, + 332.0, + 457, + 344.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 153, + 344.5, + 457, + 357.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 107, + 361, + 505, + 402 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "Table 1: Comparison of BREMEN to the existing offline methods on static datasets. Each cell shows the average", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "cumulative reward and their standard deviation, where the number of samples is 1M, 100K, and 50K, respectively.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "The maximum steps per episode is 1,000. BRAC applies a primal form of KL value penalty, and BRAC (max Q)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 391, + 497, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 497, + 403 + ], + "score": 1.0, + "content": "means its variant of sampling multiple actions and taking the maximum according to the learned Q function.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + } + ], + "index": 17.0 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 435 + ], + "score": 1.0, + "content": "Evaluating Sample-Efficiency We then evaluate the sample-efficiency by making much smaller", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 150, + 447 + ], + "score": 1.0, + "content": "datasets of", + "type": "text" + }, + { + "bbox": [ + 150, + 435, + 167, + 445 + ], + "score": 0.53, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 434, + 185, + 447 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 435, + 205, + 445 + ], + "score": 0.35, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 434, + 252, + 447 + ], + "score": 1.0, + "content": "transitions", + "type": "text" + }, + { + "bbox": [ + 252, + 435, + 287, + 445 + ], + "score": 0.89, + "content": "5 \\sim 1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "of Wu et al. (2019)). Surprisingly, Table 1 (middle and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "score": 1.0, + "content": "bottom) shows that BREMEN can also learn with smaller datasets, where BCQ and BRAC are unable", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 457, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 468 + ], + "score": 1.0, + "content": "to exceed even BC baseline. This is a novel evaluation protocol we proposed, and our BREMEN’s", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "superior performance here is exactly what enables recursive BREMEN in the next section to be an", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 478, + 329, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 329, + 492 + ], + "score": 1.0, + "content": "effective algorithm in deployment-constrained settings.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 424, + 505, + 492 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 503, + 432, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 434, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 434, + 516 + ], + "score": 1.0, + "content": "5.2 EVALUATING DEPLOYMENT EFFICIENCY IN ONLINE RL BENCHMARKS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 536 + ], + "score": 1.0, + "content": "We compare BREMEN to ME-TRPO, SAC, BCQ, and BRAC applied to limited deployment settings.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 534, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 504, + 548 + ], + "score": 1.0, + "content": "To adapt offline methods (BCQ, BRAC) to this setting, we simply apply them in a recursive fashion;3", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "at each deployment iteration, we collect a batch of data with the most recent policy and then run the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "offline update with this dataset. As for SAC, we simply change the replay buffer to update only at", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "score": 1.0, + "content": "specific deployment intervals. For the sake of comparison, we align the number of deployments and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 459, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 334, + 591 + ], + "score": 1.0, + "content": "the amount of data collection at each deployment (either", + "type": "text" + }, + { + "bbox": [ + 334, + 579, + 355, + 590 + ], + "score": 0.51, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 578, + 366, + 591 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 367, + 579, + 388, + 590 + ], + "score": 0.36, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 578, + 459, + 591 + ], + "score": 1.0, + "content": ") for all methods.4", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 525, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 235, + 609 + ], + "score": 1.0, + "content": "Figure 2 shows the results with", + "type": "text" + }, + { + "bbox": [ + 236, + 596, + 258, + 607 + ], + "score": 0.61, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 596, + 298, + 609 + ], + "score": 1.0, + "content": "(top) and", + "type": "text" + }, + { + "bbox": [ + 299, + 596, + 320, + 607 + ], + "score": 0.52, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "(bottom) batched transitions per deployment.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "Regardless of the environments and the batch size per update, BREMEN achieves remarkable", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 619, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 630 + ], + "score": 1.0, + "content": "performance while existing online and offline RL methods struggle to make any progress. As a point", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "of comparison, we also include results for online SAC and ME-TRPO without deployment-limits but", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "score": 1.0, + "content": "using the same number of transitions. We additionally compare BREMEN to the model-based offline", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 651, + 434, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 434, + 664 + ], + "score": 1.0, + "content": "RL methods with uncertainty-based penalties. See Appendix E for further details.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 596, + 506, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Following the motivation of deployment efficiency, obtaining a successful policy under data-collection", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "constraint conditions in the real application, we extensively evaluate our algorithm on more realistic", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "robotics environments in OpenAI Gym. The experimental procedure is the same as above, while", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 314, + 543 + ], + "score": 1.0, + "content": "we limit the batch size at each deployment as only", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 314, + 531, + 331, + 541 + ], + "score": 0.68, + "content": "2 5 \\mathrm { k }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 331, + 530, + 505, + 543 + ], + "score": 1.0, + "content": ". Figure 3 presents the reaching tasks with", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "Fetch robot and 20-DoF shadow hand (Plappert et al., 2018), and the experimental results in both", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "environments. Only BREMEN shows stable improvement and high performance, while other offline", + "type": "text", + "cross_page": true + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "and online algorithms fail to learn. These results suggest that a model-based method is a desirable", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 574, + 495, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 495, + 587 + ], + "score": 1.0, + "content": "approach for satisfying practical requirements in robotics, i.e. sample and deployment efficiency.", + "type": "text", + "cross_page": true + } + ], + "index": 27 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 668, + 505, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 81, + 493, + 209 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 81, + 493, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 81, + 493, + 209 + ], + "spans": [ + { + "bbox": [ + 120, + 81, + 493, + 209 + ], + "score": 0.968, + "type": "image", + "image_path": "6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 81, + 493, + 123.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 123.66666666666666, + 493, + 166.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 166.33333333333331, + 493, + 208.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 213, + 506, + 353 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "Figure 2: Evaluation of BREMEN with the existing methods (ME-TRPO, SAC, BCQ, BRAC) under deployment", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 223, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 223, + 506, + 235 + ], + "score": 1.0, + "content": "constraints (to 5-10 deployments with batch sizes of 200k and 100k). The average cumulative rewards and their", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "score": 1.0, + "content": "standard deviations with 5 random seeds are shown. Vertical dotted lines represent where each policy deployment", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "and data collection happen. BREMEN is able to learn successful policies with only 5-10 deployments, while the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 254, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 506, + 265 + ], + "score": 1.0, + "content": "state-of-the-art off-policy (SAC), model-based (ME-TRPO), and recursively-applied offline RL algorithms (BCQ,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "BRAC) often struggle to make any progress. For completeness, we show ME-TRPO(online) and SAC(online)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 273, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 285 + ], + "score": 1.0, + "content": "which are their original optimal learning curves without deployment constraints, plotted with respect to samples", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "normalized by the batch size. While SAC(online) substantially outperforms BREMEN in sample efficiency, it", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "score": 1.0, + "content": "uses 1 deployment per sample, leading to 100k-500k deployments required for learning. Interestingly, BREMEN", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "achieves even better performance than the original ME-TRPO(online), suggesting the effectiveness of implicit", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "behavior regularization. For SAC and ME-TRPO under deployment-constrained evaluation, their batch size", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 323, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 334 + ], + "score": 1.0, + "content": "between policy deployments differs substantially from their standard settings, and therefore we performed", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "score": 1.0, + "content": "extensive hyper-parameter search on the relevant parameters such as the number of policy updates between", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 343, + 272, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 272, + 354 + ], + "score": 1.0, + "content": "deployments, as discussed in Appendix F.2.1.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 9.5 + } + ], + "index": 5.25 + }, + { + "type": "image", + "bbox": [ + 130, + 384, + 475, + 472 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 384, + 475, + 472 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 130, + 384, + 475, + 472 + ], + "spans": [ + { + "bbox": [ + 130, + 384, + 475, + 472 + ], + "score": 0.971, + "type": "image", + "image_path": "aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 130, + 384, + 475, + 413.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 130, + 413.3333333333333, + 475, + 442.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 130, + 442.66666666666663, + 475, + 471.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 477, + 504, + 508 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "score": 1.0, + "content": "Figure 3: Robotics environments and the results under deployment constraints (10 deployments with batch sizes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "of 25k). The performances are averaged over 5 seeds. BREMEN seems the only method that shows both stable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 497, + 419, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 419, + 509 + ], + "score": 1.0, + "content": "improvement and solving tasks without large degradation or sub-optimal convergence.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 314, + 543 + ], + "score": 1.0, + "content": "we limit the batch size at each deployment as only", + "type": "text" + }, + { + "bbox": [ + 314, + 531, + 331, + 541 + ], + "score": 0.68, + "content": "2 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 530, + 505, + 543 + ], + "score": 1.0, + "content": ". Figure 3 presents the reaching tasks with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "Fetch robot and 20-DoF shadow hand (Plappert et al., 2018), and the experimental results in both", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "environments. Only BREMEN shows stable improvement and high performance, while other offline", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "and online algorithms fail to learn. These results suggest that a model-based method is a desirable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 574, + 495, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 495, + 587 + ], + "score": 1.0, + "content": "approach for satisfying practical requirements in robotics, i.e. sample and deployment efficiency.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 600, + 426, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 428, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 428, + 614 + ], + "score": 1.0, + "content": "5.3 ABLATION: EVALUATING EFFECTIVENESS OF IMPLICIT KL CONTROL", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "In this section, we present an experiment to better understand the effect of BREMEN’s implicit", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "regularization. Figure 4 shows the KL divergence of learned policies from the last deployed policy.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "We compare BREMEN to variants of BREMEN that use an explicit KL penalty on value instead of BC", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "initialization (conservative KL trust-region updates are still used). We find that the explicit KL without", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "behavior initialization variants learn policies that move farther away from the last deployed policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "than behavior initialized policies. This suggests that the implicit behavior regularization employed by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "BREMEN is more effective as a conservative policy learning protocol. In addition, to assess the effect", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "of repeated behavior cloning initialization, we also evaluate a variant of BREMEN without behavior", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "cloning re-initialization (grey). This variant works in easier environments (Ant, Halfcheetah), but", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "does not show remarkable progress in more challenging ones with termination (Hopper, Walker2d).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + } + ], + "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, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 81, + 493, + 209 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 81, + 493, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 81, + 493, + 209 + ], + "spans": [ + { + "bbox": [ + 120, + 81, + 493, + 209 + ], + "score": 0.968, + "type": "image", + "image_path": "6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 81, + 493, + 123.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 123.66666666666666, + 493, + 166.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 166.33333333333331, + 493, + 208.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 213, + 506, + 353 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 225 + ], + "score": 1.0, + "content": "Figure 2: Evaluation of BREMEN with the existing methods (ME-TRPO, SAC, BCQ, BRAC) under deployment", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 223, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 104, + 223, + 506, + 235 + ], + "score": 1.0, + "content": "constraints (to 5-10 deployments with batch sizes of 200k and 100k). The average cumulative rewards and their", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "score": 1.0, + "content": "standard deviations with 5 random seeds are shown. Vertical dotted lines represent where each policy deployment", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "and data collection happen. BREMEN is able to learn successful policies with only 5-10 deployments, while the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 254, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 506, + 265 + ], + "score": 1.0, + "content": "state-of-the-art off-policy (SAC), model-based (ME-TRPO), and recursively-applied offline RL algorithms (BCQ,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "BRAC) often struggle to make any progress. For completeness, we show ME-TRPO(online) and SAC(online)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 273, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 285 + ], + "score": 1.0, + "content": "which are their original optimal learning curves without deployment constraints, plotted with respect to samples", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "normalized by the batch size. While SAC(online) substantially outperforms BREMEN in sample efficiency, it", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 305 + ], + "score": 1.0, + "content": "uses 1 deployment per sample, leading to 100k-500k deployments required for learning. Interestingly, BREMEN", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "achieves even better performance than the original ME-TRPO(online), suggesting the effectiveness of implicit", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "behavior regularization. For SAC and ME-TRPO under deployment-constrained evaluation, their batch size", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 323, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 334 + ], + "score": 1.0, + "content": "between policy deployments differs substantially from their standard settings, and therefore we performed", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "score": 1.0, + "content": "extensive hyper-parameter search on the relevant parameters such as the number of policy updates between", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 343, + 272, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 272, + 354 + ], + "score": 1.0, + "content": "deployments, as discussed in Appendix F.2.1.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 9.5 + } + ], + "index": 5.25 + }, + { + "type": "image", + "bbox": [ + 130, + 384, + 475, + 472 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 130, + 384, + 475, + 472 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 130, + 384, + 475, + 472 + ], + "spans": [ + { + "bbox": [ + 130, + 384, + 475, + 472 + ], + "score": 0.971, + "type": "image", + "image_path": "aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 130, + 384, + 475, + 413.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 130, + 413.3333333333333, + 475, + 442.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 130, + 442.66666666666663, + 475, + 471.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 477, + 504, + 508 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "score": 1.0, + "content": "Figure 3: Robotics environments and the results under deployment constraints (10 deployments with batch sizes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "of 25k). The performances are averaged over 5 seeds. BREMEN seems the only method that shows both stable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 497, + 419, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 419, + 509 + ], + "score": 1.0, + "content": "improvement and solving tasks without large degradation or sub-optimal convergence.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 586 + ], + "lines": [], + "index": 25, + "bbox_fs": [ + 105, + 530, + 506, + 587 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 600, + 426, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 428, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 428, + 614 + ], + "score": 1.0, + "content": "5.3 ABLATION: EVALUATING EFFECTIVENESS OF IMPLICIT KL CONTROL", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "In this section, we present an experiment to better understand the effect of BREMEN’s implicit", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "regularization. Figure 4 shows the KL divergence of learned policies from the last deployed policy.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "We compare BREMEN to variants of BREMEN that use an explicit KL penalty on value instead of BC", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "initialization (conservative KL trust-region updates are still used). We find that the explicit KL without", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "behavior initialization variants learn policies that move farther away from the last deployed policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "than behavior initialized policies. This suggests that the implicit behavior regularization employed by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "BREMEN is more effective as a conservative policy learning protocol. In addition, to assess the effect", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "of repeated behavior cloning initialization, we also evaluate a variant of BREMEN without behavior", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "cloning re-initialization (grey). This variant works in easier environments (Ant, Halfcheetah), but", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "does not show remarkable progress in more challenging ones with termination (Hopper, Walker2d).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 621, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 80, + 496, + 224 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 80, + 496, + 224 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 80, + 496, + 224 + ], + "spans": [ + { + "bbox": [ + 117, + 80, + 496, + 224 + ], + "score": 0.973, + "type": "image", + "image_path": "caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 80, + 496, + 128.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 128.0, + 496, + 176.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 176.0, + 496, + 224.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 228, + 505, + 268 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "score": 1.0, + "content": "Figure 4: We examine average cumulative rewards (top) and corresponding KL divergence between the last", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "deployed policy and the target policy (bottom) with batch size 200K in limited deployment settings. The behavior", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 246, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 504, + 259 + ], + "score": 1.0, + "content": "initialized policy remains close to the last deployed policy during improvement without explicit value penalty", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 257, + 363, + 270 + ], + "spans": [ + { + "bbox": [ + 107, + 257, + 170, + 269 + ], + "score": 0.91, + "content": "- \\alpha D _ { \\mathrm { K L } } ( { \\bar { \\pi _ { \\theta } } } \\| { \\hat { \\pi } } _ { \\beta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 257, + 352, + 270 + ], + "score": 1.0, + "content": ". The explicit penalty is controlled by a coefficient", + "type": "text" + }, + { + "bbox": [ + 352, + 259, + 359, + 267 + ], + "score": 0.61, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 257, + 363, + 270 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "score": 1.0, + "content": "This result empirically supports the need for repeated behavior initialization after each deployment.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 300, + 351, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 351, + 313 + ], + "score": 1.0, + "content": "The results of further experiments are shown in Appendix G.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 211, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 213, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 213, + 343 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 353, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "score": 1.0, + "content": "Deployment Efficiency and Offline RL Although we are not aware of any previous works which", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "score": 1.0, + "content": "explicitly proposed the concept of deployment efficiency, its necessity in many real-world applications", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "has been generally known. One may consider previously proposed semi-batch RL algorithms (Ernst", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "et al., 2005; Lange et al., 2012; Singh et al., 1994; Roux, 2016) or theoretical analysis of switching", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "cost under the tabular PAC-MDP settings (Bai et al., 2019; Guo & Brunskill, 2015) as approaching this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "issue. More recently, a related but distinct problem known as offline RL has gained popularity (Levine", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "et al., 2020; Wu et al., 2019; Agarwal et al., 2019; Kumar et al., 2020). These works consider an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 428, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 428, + 505, + 443 + ], + "score": 1.0, + "content": "extreme version of 1 deployment, and typically collect the static batch with a partially trained policy", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "rather than a random policy. While offline RL has shown promising results for a variety of real-world", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "applications, such as robotics (Mandlekar et al., 2019), dialogue systems (Jaques et al., 2019), or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "medical treatments (Gottesman et al., 2018), these algorithms struggle when learning a policy from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 474, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 485 + ], + "score": 1.0, + "content": "scratch or when the dataset is small. Nevertheless, common themes of many offline RL algorithms", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "– regularizing the learned policy to the behavior policy (Fujimoto et al., 2019; Kumar et al., 2019;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "Siegel et al., 2020; Wu et al., 2019) and utilizing ensembles to handle uncertainty (Kumar et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "2019; Wu et al., 2019) – served as inspirations for the proposed our algorithm. A major difference", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "of BREMEN from prior works is that the target policy is not explicitly forced to stick close to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "the estimated behavior policy through the policy update except for the initial iteration. Rather,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "BREMEN employs a more implicit regularization by initializing the learned policy with a behavior", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "cloned policy and then applying conservative trust-region updates. Another major difference is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "the application of model-based approaches to fully offline settings, which has not been extensively", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "studied in prior works (Levine et al., 2020), except the two concurrent works (Kidambi et al., 2020;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "Yu et al., 2020) that study pessimistic or uncertainty penalized MDPs with guarantees – closely", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "related to Liu et al. (2019). By contrast, our work shows that a simple technique can already enable", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "model-based offline algorithms to significantly outperform the prior model-free methods, and is, to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "the best of our knowledge, the first to define and extensively evaluate deployment efficiency with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 627, + 198, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 198, + 639 + ], + "score": 1.0, + "content": "recursive experiments.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "Model-Based RL There are many types of model-based RL algorithms (Sutton, 1991; Deisenroth", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "& Rasmussen, 2011; Heess et al., 2015). A simple algorithmic choice is Dyna-style (Sutton, 1991),", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "which uses a parameterized model to estimate the true MDP transition function, stochastically", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "mapping states and actions to next states. The dynamics model can then serve as a simulator of the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "score": 1.0, + "content": "environment during policy updates. Dyna-style algorithms often suffer from the distributional shift,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "also known as model bias, which leads RL agents to exploit regions where the data is insufficient, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "significant performance degradation. A variety of remedies have been proposed to relieve the issue of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "model bias, such as the use of multiple dynamics models as an ensemble (Chua et al., 2018; Kurutach", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.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, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 80, + 496, + 224 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 80, + 496, + 224 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 80, + 496, + 224 + ], + "spans": [ + { + "bbox": [ + 117, + 80, + 496, + 224 + ], + "score": 0.973, + "type": "image", + "image_path": "caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 80, + 496, + 128.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 128.0, + 496, + 176.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 176.0, + 496, + 224.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 228, + 505, + 268 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "score": 1.0, + "content": "Figure 4: We examine average cumulative rewards (top) and corresponding KL divergence between the last", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "deployed policy and the target policy (bottom) with batch size 200K in limited deployment settings. The behavior", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 246, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 504, + 259 + ], + "score": 1.0, + "content": "initialized policy remains close to the last deployed policy during improvement without explicit value penalty", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 257, + 363, + 270 + ], + "spans": [ + { + "bbox": [ + 107, + 257, + 170, + 269 + ], + "score": 0.91, + "content": "- \\alpha D _ { \\mathrm { K L } } ( { \\bar { \\pi _ { \\theta } } } \\| { \\hat { \\pi } } _ { \\beta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 257, + 352, + 270 + ], + "score": 1.0, + "content": ". The explicit penalty is controlled by a coefficient", + "type": "text" + }, + { + "bbox": [ + 352, + 259, + 359, + 267 + ], + "score": 0.61, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 257, + 363, + 270 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "list", + "bbox": [ + 107, + 289, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "score": 1.0, + "content": "This result empirically supports the need for repeated behavior initialization after each deployment.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 300, + 351, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 351, + 313 + ], + "score": 1.0, + "content": "The results of further experiments are shown in Appendix G.", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 288, + 505, + 313 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 211, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 213, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 213, + 343 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 353, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "score": 1.0, + "content": "Deployment Efficiency and Offline RL Although we are not aware of any previous works which", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "score": 1.0, + "content": "explicitly proposed the concept of deployment efficiency, its necessity in many real-world applications", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "has been generally known. One may consider previously proposed semi-batch RL algorithms (Ernst", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "et al., 2005; Lange et al., 2012; Singh et al., 1994; Roux, 2016) or theoretical analysis of switching", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "cost under the tabular PAC-MDP settings (Bai et al., 2019; Guo & Brunskill, 2015) as approaching this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "issue. More recently, a related but distinct problem known as offline RL has gained popularity (Levine", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "et al., 2020; Wu et al., 2019; Agarwal et al., 2019; Kumar et al., 2020). These works consider an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 428, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 428, + 505, + 443 + ], + "score": 1.0, + "content": "extreme version of 1 deployment, and typically collect the static batch with a partially trained policy", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "rather than a random policy. While offline RL has shown promising results for a variety of real-world", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "applications, such as robotics (Mandlekar et al., 2019), dialogue systems (Jaques et al., 2019), or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "medical treatments (Gottesman et al., 2018), these algorithms struggle when learning a policy from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 474, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 485 + ], + "score": 1.0, + "content": "scratch or when the dataset is small. Nevertheless, common themes of many offline RL algorithms", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "– regularizing the learned policy to the behavior policy (Fujimoto et al., 2019; Kumar et al., 2019;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "Siegel et al., 2020; Wu et al., 2019) and utilizing ensembles to handle uncertainty (Kumar et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "2019; Wu et al., 2019) – served as inspirations for the proposed our algorithm. A major difference", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "of BREMEN from prior works is that the target policy is not explicitly forced to stick close to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "the estimated behavior policy through the policy update except for the initial iteration. Rather,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "BREMEN employs a more implicit regularization by initializing the learned policy with a behavior", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "cloned policy and then applying conservative trust-region updates. Another major difference is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "the application of model-based approaches to fully offline settings, which has not been extensively", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "studied in prior works (Levine et al., 2020), except the two concurrent works (Kidambi et al., 2020;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "Yu et al., 2020) that study pessimistic or uncertainty penalized MDPs with guarantees – closely", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "related to Liu et al. (2019). By contrast, our work shows that a simple technique can already enable", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "model-based offline algorithms to significantly outperform the prior model-free methods, and is, to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "the best of our knowledge, the first to define and extensively evaluate deployment efficiency with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 627, + 198, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 198, + 639 + ], + "score": 1.0, + "content": "recursive experiments.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 353, + 506, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "Model-Based RL There are many types of model-based RL algorithms (Sutton, 1991; Deisenroth", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "& Rasmussen, 2011; Heess et al., 2015). A simple algorithmic choice is Dyna-style (Sutton, 1991),", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "which uses a parameterized model to estimate the true MDP transition function, stochastically", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "mapping states and actions to next states. The dynamics model can then serve as a simulator of the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 699 + ], + "score": 1.0, + "content": "environment during policy updates. Dyna-style algorithms often suffer from the distributional shift,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "also known as model bias, which leads RL agents to exploit regions where the data is insufficient, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "significant performance degradation. A variety of remedies have been proposed to relieve the issue of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "model bias, such as the use of multiple dynamics models as an ensemble (Chua et al., 2018; Kurutach", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "et al., 2018; Janner et al., 2019), meta-learning (Clavera et al., 2018), energy-based regularizer (Boney", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "et al., 2019), game-theoretic framework (Rajeswaran et al., 2020), and explicit penalty for unknown", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "states (Kidambi et al., 2020; Yu et al., 2020). Notably, we have employed a subset of these remedies –", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "model ensembles and trust-region updates (Kurutach et al., 2018) – for BREMEN. Compared to prior", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "works, our work is notable for using BC initialization in conjunction with trust-region updates to", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 506, + 149 + ], + "score": 1.0, + "content": "alleviate the distribution shift of the learned policy from the dataset used to train the dynamics model.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 642, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "et al., 2018; Janner et al., 2019), meta-learning (Clavera et al., 2018), energy-based regularizer (Boney", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "et al., 2019), game-theoretic framework (Rajeswaran et al., 2020), and explicit penalty for unknown", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "states (Kidambi et al., 2020; Yu et al., 2020). Notably, we have employed a subset of these remedies –", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "model ensembles and trust-region updates (Kurutach et al., 2018) – for BREMEN. Compared to prior", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "works, our work is notable for using BC initialization in conjunction with trust-region updates to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 506, + 149 + ], + "score": 1.0, + "content": "alleviate the distribution shift of the learned policy from the dataset used to train the dynamics model.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 195, + 177 + ], + "lines": [ + { + "bbox": [ + 104, + 163, + 197, + 181 + ], + "spans": [ + { + "bbox": [ + 104, + 163, + 197, + 181 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "In this work, we introduced deployment efficiency, a novel measure for RL performance that counts the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 200, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 104, + 200, + 507, + 215 + ], + "score": 1.0, + "content": "number of changes in the data-collection policy during learning. To enhance deployment efficiency,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 224 + ], + "score": 1.0, + "content": "we proposed a novel model-based offline algorithm, Behavior-Regularized Model-ENsemble (BRE-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "MEN), combining model-ensembles with trust region updates from model-based RL literature (Kuru-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "score": 1.0, + "content": "tach et al., 2018), and policy initialization with behavior cloning from offline RL literature (Fujimoto", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "et al., 2019; Wu et al., 2019). Crucially, BREMEN can improve policies offline sample-efficiently", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "even when the batch size is 10-20 times smaller than prior works, allowing BREMEN to achieve", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "impressive results in limited deployment settings, obtaining successful policies from scratch in only", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "5-10 deployments. Not only can this help alleviate costs and risks in real-world applications, but it", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 301 + ], + "score": 1.0, + "content": "can also reduce the amount of communication required during distributed learning and could form the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 311 + ], + "score": 1.0, + "content": "basis for communication-efficient large-scale RL in contrast to prior works (Nair et al., 2015; Espeholt", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "et al., 2018; 2019). Most critically, we show that under deployment efficiency constraints, most prior", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "algorithms – model-free or model-based, online or offline – fail to achieve successful learning. One", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "possible direction for future work is to incorporate verification efficiency into consideration, since a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "score": 1.0, + "content": "stochastic multi-modal policy could collect more diverse transitions while it takes more trajectories to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "be verified for safety than a uni-modal policy. While we presented promising results on some realistic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 377 + ], + "score": 1.0, + "content": "simulated environments, validating BREMEN on real robots is another direction. We hope our work", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "score": 1.0, + "content": "can gear the research community to value deployment efficiency as an important criterion for RL", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "algorithms, and to eventually achieve similar sample efficiency and asymptotic performance as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "state-of-the-art algorithms like SAC (Haarnoja et al., 2018) while having the deployment efficiency", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 408, + 379, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 379, + 423 + ], + "score": 1.0, + "content": "well-suited for safe and practical real-world reinforcement learning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17 + } + ], + "page_idx": 8, + "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, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 81, + 506, + 149 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 195, + 177 + ], + "lines": [ + { + "bbox": [ + 104, + 163, + 197, + 181 + ], + "spans": [ + { + "bbox": [ + 104, + 163, + 197, + 181 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "In this work, we introduced deployment efficiency, a novel measure for RL performance that counts the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 200, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 104, + 200, + 507, + 215 + ], + "score": 1.0, + "content": "number of changes in the data-collection policy during learning. To enhance deployment efficiency,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 224 + ], + "score": 1.0, + "content": "we proposed a novel model-based offline algorithm, Behavior-Regularized Model-ENsemble (BRE-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 235 + ], + "score": 1.0, + "content": "MEN), combining model-ensembles with trust region updates from model-based RL literature (Kuru-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 506, + 246 + ], + "score": 1.0, + "content": "tach et al., 2018), and policy initialization with behavior cloning from offline RL literature (Fujimoto", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "et al., 2019; Wu et al., 2019). Crucially, BREMEN can improve policies offline sample-efficiently", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "even when the batch size is 10-20 times smaller than prior works, allowing BREMEN to achieve", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "impressive results in limited deployment settings, obtaining successful policies from scratch in only", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "5-10 deployments. Not only can this help alleviate costs and risks in real-world applications, but it", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 288, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 301 + ], + "score": 1.0, + "content": "can also reduce the amount of communication required during distributed learning and could form the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 311 + ], + "score": 1.0, + "content": "basis for communication-efficient large-scale RL in contrast to prior works (Nair et al., 2015; Espeholt", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "et al., 2018; 2019). Most critically, we show that under deployment efficiency constraints, most prior", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "algorithms – model-free or model-based, online or offline – fail to achieve successful learning. One", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "possible direction for future work is to incorporate verification efficiency into consideration, since a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 355 + ], + "score": 1.0, + "content": "stochastic multi-modal policy could collect more diverse transitions while it takes more trajectories to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "be verified for safety than a uni-modal policy. While we presented promising results on some realistic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 377 + ], + "score": 1.0, + "content": "simulated environments, validating BREMEN on real robots is another direction. We hope our work", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 388 + ], + "score": 1.0, + "content": "can gear the research community to value deployment efficiency as an important criterion for RL", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "algorithms, and to eventually achieve similar sample efficiency and asymptotic performance as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "state-of-the-art algorithms like SAC (Haarnoja et al., 2018) while having the deployment efficiency", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 408, + 379, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 379, + 423 + ], + "score": 1.0, + "content": "well-suited for safe and practical real-world reinforcement learning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 189, + 507, + 423 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 114 + ], + "score": 1.0, + "content": "Fabian Abel, Yashar Deldjoo, Mehdi Elahi, and Daniel Kohlsdorf. Recsys challenge 2017: Offline", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 424, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 424, + 124 + ], + "score": 1.0, + "content": "and online evaluation. In ACM Conference on Recommender Systems, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 144, + 375, + 155 + ], + "spans": [ + { + "bbox": [ + 116, + 144, + 375, + 155 + ], + "score": 1.0, + "content": "reinforcement learning. arXiv preprint arXiv:1907.04543, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 164, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 176 + ], + "score": 1.0, + "content": "Christopher G. Atkeson, Benzun P. Wisely Babu, Nandan Banerjee, Dmitry Berenson, Christoper P.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "score": 1.0, + "content": "Bove, Xiongyi Cui, Mathew DeDonato, Ruixiang Du, Siyuan Feng, Perry Franklin, Michael", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 185, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 115, + 185, + 507, + 200 + ], + "score": 1.0, + "content": "Gennert, Joshua P. Graff, Peng He, Aaron Jaeger, Joohyung Kim, Kevin Knoedler, Lening Li,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "score": 1.0, + "content": "Chenggang Liu, Xianchao Long, Taskin Padir, Felipe Polido, G. G. Tighe, and X Xinjilefu. No", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "falls, no resets: Reliable humanoid behavior in the darpa robotics challenge. In International", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 279, + 231 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 279, + 231 + ], + "score": 1.0, + "content": "Conference on Humanoid Robots, 2015.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 104, + 239, + 504, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 254 + ], + "score": 1.0, + "content": "Yu Bai, Tengyang Xie, Nan Jiang, and Yu-Xiang Wang. Provably efficient q-learning with low", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 251, + 430, + 263 + ], + "spans": [ + { + "bbox": [ + 115, + 251, + 430, + 263 + ], + "score": 1.0, + "content": "switching cost. In Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 108, + 271, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "Gabriel Barth-Maron, Matthew Hoffman, David Budden, Will Dabney, Dan Horgan, Dhruva TB,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "Alistair Muldal, Nicolas Heess, and Timothy Lillicrap. Distributed distributional deterministic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 294, + 446, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 294, + 446, + 306 + ], + "score": 1.0, + "content": "policy gradients. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 314, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "Rinu Boney, Juho Kannala, and Alexander Ilin. Regularizing model-based planning with energy-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 326, + 315, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 315, + 338 + ], + "score": 1.0, + "content": "models. In Conference on Robot Learning, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 506, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "Serkan Cabi, Sergio Gómez Colmenarejo, Alexander Novikov, Ksenia Konyushova, Scott Reed, Rae", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 114, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "Jeong, Konrad Zolna, Yusuf Aytar, David Budden, Mel Vecerik, Oleg Sushkov, David Barker,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "Jonathan Scholz, Misha Denil, Nando de Freitas, and Ziyu Wang. Scaling data-driven robotics", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "score": 1.0, + "content": "with reward sketching and batch reinforcement learning. In Robotics: Science and Systems, 2020.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 413 + ], + "score": 1.0, + "content": "Yinlam Chow, Aviv Tamar, Shie Mannor, and Marco Pavone. Risk-sensitive and robust decision-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "making: a cvar optimization approach. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 420, + 144, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 144, + 435 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 506, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 506, + 456 + ], + "score": 1.0, + "content": "Yinlam Chow, Ofir Nachum, Edgar Duenez-Guzman, and Mohammad Ghavamzadeh. A lyapunov-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 505, + 468 + ], + "score": 1.0, + "content": "based approach to safe reinforcement learning. In Advances in neural information processing", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 465, + 177, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 465, + 177, + 476 + ], + "score": 1.0, + "content": "systems, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "Yinlam Chow, Ofir Nachum, Aleksandra Faust, Edgar Duenez-Guzman, and Mohammad", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 116, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Ghavamzadeh. Lyapunov-based safe policy optimization for continuous control. arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 508, + 219, + 518 + ], + "spans": [ + { + "bbox": [ + 116, + 508, + 219, + 518 + ], + "score": 1.0, + "content": "arXiv:1901.10031, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "Kurtland Chua, Roberto Calandra, Rowan McAllister, and Sergey Levine. Deep reinforcement", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 116, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "learning in a handful of trials using probabilistic dynamics models. In Advances in Neural", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 274, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 274, + 563 + ], + "score": 1.0, + "content": "Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 506, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 506, + 584 + ], + "score": 1.0, + "content": "Ignasi Clavera, Jonas Rothfuss, John Schulman, Yasuhiro Fujita, Tamim Asfour, and Pieter Abbeel.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 115, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "Model-based reinforcement learning via meta-policy optimization. In Conference on Robot", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 593, + 183, + 605 + ], + "spans": [ + { + "bbox": [ + 116, + 593, + 183, + 605 + ], + "score": 1.0, + "content": "Learning, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 504, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 627 + ], + "score": 1.0, + "content": "Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 624, + 214, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 214, + 637 + ], + "score": 1.0, + "content": "arXiv:1205.4839, 2012.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 104, + 645, + 504, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 656, + 406, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 406, + 670 + ], + "score": 1.0, + "content": "policy search. In International Conference on Machine Learning, 2011.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 105, + 677, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "Gabriel Dulac-Arnold, Daniel Mankowitz, and Todd Hester. Challenges of real-world reinforcement", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 689, + 317, + 701 + ], + "spans": [ + { + "bbox": [ + 116, + 689, + 317, + 701 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1904.12901, 2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "score": 1.0, + "content": "Damien Ernst, Pierre Geurts, and Louis Wehenkel. Tree-based batch mode reinforcement learning.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 720, + 302, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 302, + 732 + ], + "score": 1.0, + "content": "Journal of Machine Learning Research, 2005.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 114 + ], + "score": 1.0, + "content": "Fabian Abel, Yashar Deldjoo, Mehdi Elahi, and Daniel Kohlsdorf. Recsys challenge 2017: Offline", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 424, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 424, + 124 + ], + "score": 1.0, + "content": "and online evaluation. In ACM Conference on Recommender Systems, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 100, + 505, + 124 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 144, + 375, + 155 + ], + "spans": [ + { + "bbox": [ + 116, + 144, + 375, + 155 + ], + "score": 1.0, + "content": "reinforcement learning. arXiv preprint arXiv:1907.04543, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 131, + 505, + 155 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 164, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 176 + ], + "score": 1.0, + "content": "Christopher G. Atkeson, Benzun P. Wisely Babu, Nandan Banerjee, Dmitry Berenson, Christoper P.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "score": 1.0, + "content": "Bove, Xiongyi Cui, Mathew DeDonato, Ruixiang Du, Siyuan Feng, Perry Franklin, Michael", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 185, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 115, + 185, + 507, + 200 + ], + "score": 1.0, + "content": "Gennert, Joshua P. Graff, Peng He, Aaron Jaeger, Joohyung Kim, Kevin Knoedler, Lening Li,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "score": 1.0, + "content": "Chenggang Liu, Xianchao Long, Taskin Padir, Felipe Polido, G. G. Tighe, and X Xinjilefu. No", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "falls, no resets: Reliable humanoid behavior in the darpa robotics challenge. In International", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 279, + 231 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 279, + 231 + ], + "score": 1.0, + "content": "Conference on Humanoid Robots, 2015.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 165, + 507, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 239, + 504, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 239, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 254 + ], + "score": 1.0, + "content": "Yu Bai, Tengyang Xie, Nan Jiang, and Yu-Xiang Wang. Provably efficient q-learning with low", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 251, + 430, + 263 + ], + "spans": [ + { + "bbox": [ + 115, + 251, + 430, + 263 + ], + "score": 1.0, + "content": "switching cost. In Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 239, + 505, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 271, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "Gabriel Barth-Maron, Matthew Hoffman, David Budden, Will Dabney, Dan Horgan, Dhruva TB,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "Alistair Muldal, Nicolas Heess, and Timothy Lillicrap. Distributed distributional deterministic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 294, + 446, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 294, + 446, + 306 + ], + "score": 1.0, + "content": "policy gradients. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 271, + 505, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 314, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "Rinu Boney, Juho Kannala, and Alexander Ilin. Regularizing model-based planning with energy-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 326, + 315, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 315, + 338 + ], + "score": 1.0, + "content": "models. In Conference on Robot Learning, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 313, + 505, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 506, + 391 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "Serkan Cabi, Sergio Gómez Colmenarejo, Alexander Novikov, Ksenia Konyushova, Scott Reed, Rae", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 114, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "Jeong, Konrad Zolna, Yusuf Aytar, David Budden, Mel Vecerik, Oleg Sushkov, David Barker,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "Jonathan Scholz, Misha Denil, Nando de Freitas, and Ziyu Wang. Scaling data-driven robotics", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "score": 1.0, + "content": "with reward sketching and batch reinforcement learning. In Robotics: Science and Systems, 2020.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 345, + 506, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 413 + ], + "score": 1.0, + "content": "Yinlam Chow, Aviv Tamar, Shie Mannor, and Marco Pavone. Risk-sensitive and robust decision-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "making: a cvar optimization approach. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 420, + 144, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 144, + 435 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 399, + 506, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 506, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 506, + 456 + ], + "score": 1.0, + "content": "Yinlam Chow, Ofir Nachum, Edgar Duenez-Guzman, and Mohammad Ghavamzadeh. A lyapunov-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 505, + 468 + ], + "score": 1.0, + "content": "based approach to safe reinforcement learning. In Advances in neural information processing", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 465, + 177, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 465, + 177, + 476 + ], + "score": 1.0, + "content": "systems, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 442, + 506, + 476 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "Yinlam Chow, Ofir Nachum, Aleksandra Faust, Edgar Duenez-Guzman, and Mohammad", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 116, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Ghavamzadeh. Lyapunov-based safe policy optimization for continuous control. arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 508, + 219, + 518 + ], + "spans": [ + { + "bbox": [ + 116, + 508, + 219, + 518 + ], + "score": 1.0, + "content": "arXiv:1901.10031, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 484, + 505, + 518 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "Kurtland Chua, Roberto Calandra, Rowan McAllister, and Sergey Levine. Deep reinforcement", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 116, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "learning in a handful of trials using probabilistic dynamics models. In Advances in Neural", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 274, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 274, + 563 + ], + "score": 1.0, + "content": "Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 528, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 506, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 506, + 584 + ], + "score": 1.0, + "content": "Ignasi Clavera, Jonas Rothfuss, John Schulman, Yasuhiro Fujita, Tamim Asfour, and Pieter Abbeel.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 115, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "Model-based reinforcement learning via meta-policy optimization. In Conference on Robot", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 593, + 183, + 605 + ], + "spans": [ + { + "bbox": [ + 116, + 593, + 183, + 605 + ], + "score": 1.0, + "content": "Learning, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 570, + 506, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 504, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 627 + ], + "score": 1.0, + "content": "Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 624, + 214, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 214, + 637 + ], + "score": 1.0, + "content": "arXiv:1205.4839, 2012.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 612, + 506, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 645, + 504, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 656, + 406, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 406, + 670 + ], + "score": 1.0, + "content": "policy search. In International Conference on Machine Learning, 2011.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 645, + 505, + 670 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 677, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "Gabriel Dulac-Arnold, Daniel Mankowitz, and Todd Hester. Challenges of real-world reinforcement", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 689, + 317, + 701 + ], + "spans": [ + { + "bbox": [ + 116, + 689, + 317, + 701 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1904.12901, 2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 677, + 506, + 701 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "score": 1.0, + "content": "Damien Ernst, Pierre Geurts, and Louis Wehenkel. Tree-based batch mode reinforcement learning.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 720, + 302, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 302, + 732 + ], + "score": 1.0, + "content": "Journal of Machine Learning Research, 2005.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 104, + 707, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Lasse Espeholt, Hubert Soyer, Remi Munos, Karen Simonyan, Vlad Mnih, Tom Ward, Yotam", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Doron, Vlad Firoiu, Tim Harley, Iain Dunning, et al. IMPALA: Scalable distributed deep-rl", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "with importance weighted actor-learner architectures. In International Conference on Machine", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 183, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 183, + 128 + ], + "score": 1.0, + "content": "Learning, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 108, + 132, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 506, + 145 + ], + "score": 1.0, + "content": "Lasse Espeholt, Raphaël Marinier, Piotr Stanczyk, Ke Wang, and Marcin Michalski. SEED RL:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 144, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 115, + 144, + 506, + 156 + ], + "score": 1.0, + "content": "Scalable and efficient deep-rl with accelerated central inference. arXiv preprint arXiv:1910.06591,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 153, + 143, + 168 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 143, + 168 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 504, + 207 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "Benjamin Eysenbach, Shixiang Gu, Julian Ibarz, and Sergey Levine. Leave no trace: Learning to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "reset for safe and autonomous reinforcement learning. International Conference on Learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 195, + 210, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 210, + 207 + ], + "score": 1.0, + "content": "Representations, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 105, + 212, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 227 + ], + "score": 1.0, + "content": "Rasool Fakoor, Pratik Chaudhari, and Alexander J. Smola. P3o: Policy-on policy-off policy opti-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 224, + 320, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 320, + 236 + ], + "score": 1.0, + "content": "mization. arXiv preprint arXiv:1905.01756, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 504, + 265 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 256 + ], + "score": 1.0, + "content": "Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine. D4RL: Datasets for deep", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 253, + 423, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 253, + 423, + 266 + ], + "score": 1.0, + "content": "data-driven reinforcement learning. arXiv preprint arXiv:2004.07219, 2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 282, + 398, + 294 + ], + "spans": [ + { + "bbox": [ + 116, + 282, + 398, + 294 + ], + "score": 1.0, + "content": "exploration. In International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 299, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "Omer Gottesman, Fredrik Johansson, Joshua Meier, Jack Dent, Donghun Lee, Srivatsan Srinivasan,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "Linying Zhang, Yi Ding, David Wihl, Xuefeng Peng, Jiayu Yao, Isaac Lage, Christopher Mosch,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 320, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 505, + 336 + ], + "score": 1.0, + "content": "Li wei H. Lehman, Matthieu Komorowski, Matthieu Komorowski, Aldo Faisal, Leo Anthony", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 331, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 115, + 331, + 506, + 346 + ], + "score": 1.0, + "content": "Celi, David Sontag, and Finale Doshi-Velez. Evaluating reinforcement learning algorithms in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 344, + 398, + 356 + ], + "spans": [ + { + "bbox": [ + 116, + 344, + 398, + 356 + ], + "score": 1.0, + "content": "observational health settings. arXiv preprint arXiv:1805.12298, 2018.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 361, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 375 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 372, + 454, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 454, + 385 + ], + "score": 1.0, + "content": "model-based acceleration. In International Conference on Machine Learning, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 390, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "score": 1.0, + "content": "Shixiang Gu, Ethan Holly, Timothy Lillicrap, and Sergey Levine. Deep reinforcement learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "for robotic manipulation with asynchronous off-policy updates. In International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 412, + 252, + 425 + ], + "spans": [ + { + "bbox": [ + 116, + 412, + 252, + 425 + ], + "score": 1.0, + "content": "Robotics and Automation, 2017a.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 430, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 444 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Zoubin Ghahramani, Richard E. Turner, and Sergey Levine. Q-Prop:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 440, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 505, + 455 + ], + "score": 1.0, + "content": "Sample-efficient policy gradient with an off-policy critic. In International Conference on Learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 452, + 215, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 452, + 215, + 465 + ], + "score": 1.0, + "content": "Representations, 2017b.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 469, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "Zhaohan Guo and Emma Brunskill. Concurrent pac rl. In AAAI Conference on Artificial Intelligence,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 480, + 143, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 143, + 493 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "maximum entropy deep reinforcement learning with a stochastic actor. In International Conference", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 521, + 232, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 521, + 232, + 533 + ], + "score": 1.0, + "content": "on Machine Learning, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 538, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "Nicolas Heess, Gregory Wayne, David Silver, Timothy Lillicrap, Tom Erez, and Yuval Tassa. Learning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "continuous control policies by stochastic value gradients. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 561, + 225, + 573 + ], + "spans": [ + { + "bbox": [ + 115, + 561, + 225, + 573 + ], + "score": 1.0, + "content": "Processing Systems, 2015.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 504, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "Matteo Hessel, Joseph Modayil, Hado Van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney, Dan", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "Horgan, Bilal Piot, Mohammad Azar, and David Silver. Rainbow: Combining improvements in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 601, + 446, + 614 + ], + "spans": [ + { + "bbox": [ + 116, + 601, + 446, + 614 + ], + "score": 1.0, + "content": "deep reinforcement learning. In AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 618, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine. When to trust your model: Model-based", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 630, + 450, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 450, + 642 + ], + "score": 1.0, + "content": "policy optimization. In Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 504, + 681 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 669, + 432, + 683 + ], + "spans": [ + { + "bbox": [ + 116, + 669, + 432, + 683 + ], + "score": 1.0, + "content": "implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 116, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "Quillen, Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, and Sergey Levine. QT-Opt:", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Scalable deep reinforcement learning for vision-based robotic manipulation. In Conference on", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 721, + 209, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 209, + 733 + ], + "score": 1.0, + "content": "Robot Learning, 2018.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 10, + "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, + 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": [ + 106, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Lasse Espeholt, Hubert Soyer, Remi Munos, Karen Simonyan, Vlad Mnih, Tom Ward, Yotam", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Doron, Vlad Firoiu, Tim Harley, Iain Dunning, et al. IMPALA: Scalable distributed deep-rl", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "with importance weighted actor-learner architectures. In International Conference on Machine", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 183, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 183, + 128 + ], + "score": 1.0, + "content": "Learning, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 83, + 505, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 132, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 506, + 145 + ], + "score": 1.0, + "content": "Lasse Espeholt, Raphaël Marinier, Piotr Stanczyk, Ke Wang, and Marcin Michalski. SEED RL:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 144, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 115, + 144, + 506, + 156 + ], + "score": 1.0, + "content": "Scalable and efficient deep-rl with accelerated central inference. arXiv preprint arXiv:1910.06591,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 153, + 143, + 168 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 143, + 168 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 133, + 506, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 504, + 207 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "Benjamin Eysenbach, Shixiang Gu, Julian Ibarz, and Sergey Levine. Leave no trace: Learning to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "reset for safe and autonomous reinforcement learning. International Conference on Learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 195, + 210, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 210, + 207 + ], + "score": 1.0, + "content": "Representations, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 173, + 506, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 212, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 227 + ], + "score": 1.0, + "content": "Rasool Fakoor, Pratik Chaudhari, and Alexander J. Smola. P3o: Policy-on policy-off policy opti-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 224, + 320, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 320, + 236 + ], + "score": 1.0, + "content": "mization. arXiv preprint arXiv:1905.01756, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 212, + 506, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 504, + 265 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 256 + ], + "score": 1.0, + "content": "Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine. D4RL: Datasets for deep", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 253, + 423, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 253, + 423, + 266 + ], + "score": 1.0, + "content": "data-driven reinforcement learning. arXiv preprint arXiv:2004.07219, 2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 240, + 506, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 282, + 398, + 294 + ], + "spans": [ + { + "bbox": [ + 116, + 282, + 398, + 294 + ], + "score": 1.0, + "content": "exploration. In International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 270, + 505, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 299, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "Omer Gottesman, Fredrik Johansson, Joshua Meier, Jack Dent, Donghun Lee, Srivatsan Srinivasan,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "Linying Zhang, Yi Ding, David Wihl, Xuefeng Peng, Jiayu Yao, Isaac Lage, Christopher Mosch,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 320, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 505, + 336 + ], + "score": 1.0, + "content": "Li wei H. Lehman, Matthieu Komorowski, Matthieu Komorowski, Aldo Faisal, Leo Anthony", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 331, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 115, + 331, + 506, + 346 + ], + "score": 1.0, + "content": "Celi, David Sontag, and Finale Doshi-Velez. Evaluating reinforcement learning algorithms in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 344, + 398, + 356 + ], + "spans": [ + { + "bbox": [ + 116, + 344, + 398, + 356 + ], + "score": 1.0, + "content": "observational health settings. arXiv preprint arXiv:1805.12298, 2018.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 299, + 506, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 361, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 375 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 372, + 454, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 454, + 385 + ], + "score": 1.0, + "content": "model-based acceleration. In International Conference on Machine Learning, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 360, + 505, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 390, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "score": 1.0, + "content": "Shixiang Gu, Ethan Holly, Timothy Lillicrap, and Sergey Levine. Deep reinforcement learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "for robotic manipulation with asynchronous off-policy updates. In International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 412, + 252, + 425 + ], + "spans": [ + { + "bbox": [ + 116, + 412, + 252, + 425 + ], + "score": 1.0, + "content": "Robotics and Automation, 2017a.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 389, + 505, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 430, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 444 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy Lillicrap, Zoubin Ghahramani, Richard E. Turner, and Sergey Levine. Q-Prop:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 440, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 505, + 455 + ], + "score": 1.0, + "content": "Sample-efficient policy gradient with an off-policy critic. In International Conference on Learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 452, + 215, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 452, + 215, + 465 + ], + "score": 1.0, + "content": "Representations, 2017b.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 429, + 506, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 469, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "Zhaohan Guo and Emma Brunskill. Concurrent pac rl. In AAAI Conference on Artificial Intelligence,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 480, + 143, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 143, + 493 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 469, + 506, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "maximum entropy deep reinforcement learning with a stochastic actor. In International Conference", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 521, + 232, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 521, + 232, + 533 + ], + "score": 1.0, + "content": "on Machine Learning, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 498, + 506, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 538, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "Nicolas Heess, Gregory Wayne, David Silver, Timothy Lillicrap, Tom Erez, and Yuval Tassa. Learning", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "continuous control policies by stochastic value gradients. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 561, + 225, + 573 + ], + "spans": [ + { + "bbox": [ + 115, + 561, + 225, + 573 + ], + "score": 1.0, + "content": "Processing Systems, 2015.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 538, + 505, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 504, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "Matteo Hessel, Joseph Modayil, Hado Van Hasselt, Tom Schaul, Georg Ostrovski, Will Dabney, Dan", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "Horgan, Bilal Piot, Mohammad Azar, and David Silver. Rainbow: Combining improvements in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 601, + 446, + 614 + ], + "spans": [ + { + "bbox": [ + 116, + 601, + 446, + 614 + ], + "score": 1.0, + "content": "deep reinforcement learning. In AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 578, + 506, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 618, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine. When to trust your model: Model-based", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 630, + 450, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 450, + 642 + ], + "score": 1.0, + "content": "policy optimization. In Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 619, + 505, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 504, + 681 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 669, + 432, + 683 + ], + "spans": [ + { + "bbox": [ + 116, + 669, + 432, + 683 + ], + "score": 1.0, + "content": "implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 648, + 505, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Dmitry Kalashnikov, Alex Irpan, Peter Pastor, Julian Ibarz, Alexander Herzog, Eric Jang, Deirdre", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 116, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "Quillen, Ethan Holly, Mrinal Kalakrishnan, Vincent Vanhoucke, and Sergey Levine. QT-Opt:", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Scalable deep reinforcement learning for vision-based robotic manipulation. In Conference on", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 721, + 209, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 209, + 733 + ], + "score": 1.0, + "content": "Robot Learning, 2018.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "score": 1.0, + "content": "Rahul Kidambi, Aravind Rajeswaran, Praneeth Netrapalli, and Thorsten Joachims. MOReL : Model-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 429, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 429, + 106 + ], + "score": 1.0, + "content": "based offline reinforcement learning. arXiv preprint arXiv:2005.05951, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "score": 1.0, + "content": "D. Kingma and J. Ba. Adam: A method for stochastic optimization. In International Conference on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 249, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 249, + 135 + ], + "score": 1.0, + "content": "Learning Representations, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 140, + 503, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 505, + 167 + ], + "score": 1.0, + "content": "q-learning via bootstrapping error reduction. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 163, + 178, + 175 + ], + "spans": [ + { + "bbox": [ + 115, + 163, + 178, + 175 + ], + "score": 1.0, + "content": "Systems, 2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine. Conservative q-learning for offline", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 192, + 375, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 192, + 375, + 205 + ], + "score": 1.0, + "content": "reinforcement learning. arXiv preprint arXiv:2006.04779, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 108, + 210, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "Thanard Kurutach, Ignasi Clavera, Yan Duan, Aviv Tamar, and Pieter Abbeel. Model-Ensemble", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "Trust-Region Policy Optimization. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 232, + 143, + 245 + ], + "spans": [ + { + "bbox": [ + 114, + 232, + 143, + 245 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Sascha Lange, Thomas Gabel, and Martin Riedmiller. Batch reinforcement learning. In Reinforcement", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 262, + 220, + 274 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 220, + 274 + ], + "score": 1.0, + "content": "learning. Springer, 2012.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 291, + 455, + 304 + ], + "spans": [ + { + "bbox": [ + 115, + 291, + 455, + 304 + ], + "score": 1.0, + "content": "review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 108, + 309, + 504, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 323 + ], + "score": 1.0, + "content": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 332, + 364, + 344 + ], + "spans": [ + { + "bbox": [ + 116, + 332, + 364, + 344 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 105, + 349, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 507, + 365 + ], + "score": 1.0, + "content": "Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 361, + 217, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 361, + 217, + 374 + ], + "score": 1.0, + "content": "Machine learning, 1992.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 504, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 504, + 392 + ], + "score": 1.0, + "content": "Yao Liu, Adith Swaminathan, Alekh Agarwal, and Emma Brunskill. Off-policy policy gradient with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 390, + 394, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 394, + 403 + ], + "score": 1.0, + "content": "state distribution correction. arXiv preprint arXiv:1904.08473, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 408, + 504, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 506, + 421 + ], + "score": 1.0, + "content": "Travis Mandel, Yun-En Liu, Sergey Levine, Emma Brunskill, and Zoran Popovic. Offline policy eval-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 116, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "uation across representations with applications to educational games. In International Conference", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 431, + 336, + 443 + ], + "spans": [ + { + "bbox": [ + 116, + 431, + 336, + 443 + ], + "score": 1.0, + "content": "on Autonomous Agents and Multiagent Systems, 2014.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 504, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "Ajay Mandlekar, Fabio Ramos, Byron Boots, Li Fei-Fei, Animesh Garg, and Dieter Fox. IRIS: Im-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "plicit reinforcement without interaction at scale for learning control from offline robot manipulation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 471, + 302, + 483 + ], + "spans": [ + { + "bbox": [ + 117, + 471, + 302, + 483 + ], + "score": 1.0, + "content": "data. arXiv preprint arXiv:1911.05321, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 511, + 325, + 524 + ], + "spans": [ + { + "bbox": [ + 117, + 511, + 325, + 524 + ], + "score": 1.0, + "content": "through deep reinforcement learning. Nature, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 504, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "Susan A Murphy, Mark J van der Laan, James M Robins, and Conduct Problems Prevention Re-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 116, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "search Group. Marginal mean models for dynamic regimes. Journal of the American Statistical", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 552, + 192, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 192, + 563 + ], + "score": 1.0, + "content": "Association, 2001.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 504, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "Ofir Nachum, Shixiang Shane Gu, Honglak Lee, and Sergey Levine. Data-efficient hierarchical", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 581, + 464, + 593 + ], + "spans": [ + { + "bbox": [ + 115, + 581, + 464, + 593 + ], + "score": 1.0, + "content": "reinforcement learning. In Advances in Neural Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 504, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "Ofir Nachum, Michael Ahn, Hugo Ponte, Shixiang Gu, and Vikash Kumar. Multi-agent manipulation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 611, + 457, + 623 + ], + "spans": [ + { + "bbox": [ + 115, + 611, + 457, + 623 + ], + "score": 1.0, + "content": "via locomotion using hierarchical sim2real. In Conference on Robot Learning, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "Anusha Nagabandi, Gregory Kahn, Ronald S. Fearing, and Sergey Levine. Neural Network Dynamics", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 116, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "for Model-Based Deep Reinforcement Learning with Model-Free Fine-Tuning. International", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 117, + 651, + 308, + 663 + ], + "spans": [ + { + "bbox": [ + 117, + 651, + 308, + 663 + ], + "score": 1.0, + "content": "Conference on Robotics and Automation, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Vaishnavh Nagarajan and J Zico Kolter. Generalization in deep networks: The role of distance from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 680, + 335, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 335, + 692 + ], + "score": 1.0, + "content": "initialization. arXiv preprint arXiv:1901.01672, 2019.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "score": 1.0, + "content": "Arun Nair, Praveen Srinivasan, Sam Blackwell, Cagdas Alcicek, Rory Fearon, Alessandro De Maria,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Vedavyas Panneershelvam, Mustafa Suleyman, Charles Beattie, Stig Petersen, et al. Massively", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 479, + 733 + ], + "score": 1.0, + "content": "parallel methods for deep reinforcement learning. arXiv preprint arXiv:1507.04296, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "score": 1.0, + "content": "Rahul Kidambi, Aravind Rajeswaran, Praneeth Netrapalli, and Thorsten Joachims. MOReL : Model-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 429, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 429, + 106 + ], + "score": 1.0, + "content": "based offline reinforcement learning. arXiv preprint arXiv:2005.05951, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 83, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "score": 1.0, + "content": "D. Kingma and J. Ba. Adam: A method for stochastic optimization. In International Conference on", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 249, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 249, + 135 + ], + "score": 1.0, + "content": "Learning Representations, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 505, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 140, + 503, + 174 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 505, + 167 + ], + "score": 1.0, + "content": "q-learning via bootstrapping error reduction. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 163, + 178, + 175 + ], + "spans": [ + { + "bbox": [ + 115, + 163, + 178, + 175 + ], + "score": 1.0, + "content": "Systems, 2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 140, + 505, + 175 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine. Conservative q-learning for offline", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 192, + 375, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 192, + 375, + 205 + ], + "score": 1.0, + "content": "reinforcement learning. arXiv preprint arXiv:2006.04779, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 181, + 505, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 210, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "Thanard Kurutach, Ignasi Clavera, Yan Duan, Aviv Tamar, and Pieter Abbeel. Model-Ensemble", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "Trust-Region Policy Optimization. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 232, + 143, + 245 + ], + "spans": [ + { + "bbox": [ + 114, + 232, + 143, + 245 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 210, + 506, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Sascha Lange, Thomas Gabel, and Martin Riedmiller. Batch reinforcement learning. In Reinforcement", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 262, + 220, + 274 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 220, + 274 + ], + "score": 1.0, + "content": "learning. Springer, 2012.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 250, + 505, + 274 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 291, + 455, + 304 + ], + "spans": [ + { + "bbox": [ + 115, + 291, + 455, + 304 + ], + "score": 1.0, + "content": "review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 280, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 309, + 504, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 323 + ], + "score": 1.0, + "content": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 332, + 364, + 344 + ], + "spans": [ + { + "bbox": [ + 116, + 332, + 364, + 344 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 308, + 506, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 349, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 507, + 365 + ], + "score": 1.0, + "content": "Long-Ji Lin. Self-improving reactive agents based on reinforcement learning, planning and teaching.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 361, + 217, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 361, + 217, + 374 + ], + "score": 1.0, + "content": "Machine learning, 1992.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 348, + 507, + 374 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 504, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 504, + 392 + ], + "score": 1.0, + "content": "Yao Liu, Adith Swaminathan, Alekh Agarwal, and Emma Brunskill. Off-policy policy gradient with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 390, + 394, + 403 + ], + "spans": [ + { + "bbox": [ + 115, + 390, + 394, + 403 + ], + "score": 1.0, + "content": "state distribution correction. arXiv preprint arXiv:1904.08473, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 379, + 504, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 408, + 504, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 506, + 421 + ], + "score": 1.0, + "content": "Travis Mandel, Yun-En Liu, Sergey Levine, Emma Brunskill, and Zoran Popovic. Offline policy eval-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 116, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "uation across representations with applications to educational games. In International Conference", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 431, + 336, + 443 + ], + "spans": [ + { + "bbox": [ + 116, + 431, + 336, + 443 + ], + "score": 1.0, + "content": "on Autonomous Agents and Multiagent Systems, 2014.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 409, + 506, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 504, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "Ajay Mandlekar, Fabio Ramos, Byron Boots, Li Fei-Fei, Animesh Garg, and Dieter Fox. IRIS: Im-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "plicit reinforcement without interaction at scale for learning control from offline robot manipulation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 471, + 302, + 483 + ], + "spans": [ + { + "bbox": [ + 117, + 471, + 302, + 483 + ], + "score": 1.0, + "content": "data. arXiv preprint arXiv:1911.05321, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 448, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 511, + 325, + 524 + ], + "spans": [ + { + "bbox": [ + 117, + 511, + 325, + 524 + ], + "score": 1.0, + "content": "through deep reinforcement learning. Nature, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 488, + 506, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 504, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "Susan A Murphy, Mark J van der Laan, James M Robins, and Conduct Problems Prevention Re-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 116, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "search Group. Marginal mean models for dynamic regimes. Journal of the American Statistical", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 552, + 192, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 192, + 563 + ], + "score": 1.0, + "content": "Association, 2001.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 529, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 504, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "Ofir Nachum, Shixiang Shane Gu, Honglak Lee, and Sergey Levine. Data-efficient hierarchical", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 581, + 464, + 593 + ], + "spans": [ + { + "bbox": [ + 115, + 581, + 464, + 593 + ], + "score": 1.0, + "content": "reinforcement learning. In Advances in Neural Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 570, + 505, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 504, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "Ofir Nachum, Michael Ahn, Hugo Ponte, Shixiang Gu, and Vikash Kumar. Multi-agent manipulation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 611, + 457, + 623 + ], + "spans": [ + { + "bbox": [ + 115, + 611, + 457, + 623 + ], + "score": 1.0, + "content": "via locomotion using hierarchical sim2real. In Conference on Robot Learning, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 599, + 505, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 642 + ], + "score": 1.0, + "content": "Anusha Nagabandi, Gregory Kahn, Ronald S. Fearing, and Sergey Levine. Neural Network Dynamics", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 116, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "for Model-Based Deep Reinforcement Learning with Model-Free Fine-Tuning. International", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 117, + 651, + 308, + 663 + ], + "spans": [ + { + "bbox": [ + 117, + 651, + 308, + 663 + ], + "score": 1.0, + "content": "Conference on Robotics and Automation, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 628, + 506, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Vaishnavh Nagarajan and J Zico Kolter. Generalization in deep networks: The role of distance from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 680, + 335, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 335, + 692 + ], + "score": 1.0, + "content": "initialization. arXiv preprint arXiv:1901.01672, 2019.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 668, + 505, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "score": 1.0, + "content": "Arun Nair, Praveen Srinivasan, Sam Blackwell, Cagdas Alcicek, Rory Fearon, Alessandro De Maria,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Vedavyas Panneershelvam, Mustafa Suleyman, Charles Beattie, Stig Petersen, et al. Massively", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 479, + 733 + ], + "score": 1.0, + "content": "parallel methods for deep reinforcement learning. arXiv preprint arXiv:1507.04296, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 507, + 733 + ] + } + ] + }, + { + "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": "Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 399, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 399, + 106 + ], + "score": 1.0, + "content": "learning with offline datasets. arXiv preprint arXiv:2006.09359, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 500, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 500, + 135 + ], + "score": 1.0, + "content": "Simple and scalable off-policy reinforcement learning. arXiv preprint arXiv:1910.00177, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 139, + 506, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "score": 1.0, + "content": "Matthias Plappert, Marcin Andrychowicz, Alex Ray, Bob McGrew, Bowen Baker, Glenn Powell,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 150, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 114, + 150, + 506, + 162 + ], + "score": 1.0, + "content": "Jonas Schneider, Josh Tobin, Maciek Chociej, Peter Welinder, et al. Multi-goal reinforcement learn-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 507, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 507, + 174 + ], + "score": 1.0, + "content": "ing: Challenging robotics environments and request for research. arXiv preprint arXiv:1802.09464,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 172, + 142, + 183 + ], + "spans": [ + { + "bbox": [ + 115, + 172, + 142, + 183 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 504, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "Doina Precup, Richard S Sutton, and Sanjoy Dasgupta. Off-policy temporal-difference learning with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 200, + 446, + 213 + ], + "spans": [ + { + "bbox": [ + 116, + 200, + 446, + 213 + ], + "score": 1.0, + "content": "function approximation. In International Conference on Machine Learning, 2001.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 217, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 230, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 116, + 230, + 505, + 242 + ], + "score": 1.0, + "content": "Todorov, and Sergey Levine. Learning complex dexterous manipulation with deep reinforcement", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 240, + 397, + 252 + ], + "spans": [ + { + "bbox": [ + 116, + 240, + 397, + 252 + ], + "score": 1.0, + "content": "learning and demonstrations. arXiv preprint arXiv:1709.10087, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 504, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Igor Mordatch, and Vikash Kumar. A game theoretic framework for model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 268, + 400, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 400, + 280 + ], + "score": 1.0, + "content": "based reinforcement learning. arXiv preprint arXiv:2004.07804, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "Alex Ray, Joshua Achiam, and Dario Amodei. Benchmarking safe exploration in deep reinforcement", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 317, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 317, + 309 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1910.01708, 2019.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "prediction to no-regret online learning. In International conference on artificial intelligence and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 336, + 181, + 347 + ], + "spans": [ + { + "bbox": [ + 115, + 336, + 181, + 347 + ], + "score": 1.0, + "content": "statistics, 2011.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 353, + 495, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 497, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 497, + 367 + ], + "score": 1.0, + "content": "Nicolas Le Roux. Efficient iterative policy optimization. arXiv preprint arXiv:1612.08967, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 105, + 370, + 503, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Philipp Moritz, Michael Jordan, and Pieter Abbeel. Trust region", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 381, + 430, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 430, + 394 + ], + "score": 1.0, + "content": "policy optimization. In International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 398, + 504, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 413 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 410, + 380, + 423 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 380, + 423 + ], + "score": 1.0, + "content": "optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 507, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 507, + 441 + ], + "score": 1.0, + "content": "Noah Y. Siegel, Jost Tobias Springenberg, Felix Berkenkamp, Abbas Abdolmaleki, Michael Neunert,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 116, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "Thomas Lampe, Roland Hafner, and Martin A. Riedmiller. Keep doing what worked: Behavioral", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 449, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 114, + 449, + 505, + 464 + ], + "score": 1.0, + "content": "modelling priors for offline reinforcement learning. In International Conference on Learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 461, + 209, + 472 + ], + "spans": [ + { + "bbox": [ + 115, + 461, + 209, + 472 + ], + "score": 1.0, + "content": "Representations, 2020.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 477, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "Satinder P Singh, Tommi Jaakkola, and Michael I Jordan. Learning without state-estimation in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "partially observable markovian decision processes. In Machine Learning Proceedings. Elsevier,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 497, + 143, + 512 + ], + "spans": [ + { + "bbox": [ + 114, + 497, + 143, + 512 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 105, + 516, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Satinder P. Singh, Tommi Jaakkola, and Michael I. Jordan. Reinforcement learning with soft state", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 528, + 420, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 528, + 420, + 541 + ], + "score": 1.0, + "content": "aggregation. In Advances in Neural Information Processing Systems, 1995.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 504, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "Sungryull Sohn, Yinlam Chow, Jayden Ooi, Ofir Nachum, Honglak Lee, Ed Chi, and Craig Boutilier.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 556, + 453, + 569 + ], + "spans": [ + { + "bbox": [ + 116, + 556, + 453, + 569 + ], + "score": 1.0, + "content": "BRPO: Batch residual policy optimization. arXiv preprint arXiv:2002.05522, 2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 504, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "Richard S Sutton. Dyna, an integrated architecture for learning, planning, and reacting. ACM Sigart", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 585, + 178, + 596 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 178, + 596 + ], + "score": 1.0, + "content": "Bulletin, 1991.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 613, + 395, + 626 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 395, + 626 + ], + "score": 1.0, + "content": "In International Conference on Intelligent Robots and Systems, 2012.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 644 + ], + "score": 1.0, + "content": "Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 115, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "Zhang, Guodong Zhang, Pieter Abbeel, and Jimmy Ba. Benchmarking model-based reinforcement", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 653, + 317, + 665 + ], + "spans": [ + { + "bbox": [ + 116, + 653, + 317, + 665 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1907.02057, 2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 684 + ], + "score": 1.0, + "content": "Yifan Wu, George Tucker, and Ofir Nachum. Behavior Regularized Offline Reinforcement Learning.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 681, + 279, + 694 + ], + "spans": [ + { + "bbox": [ + 116, + 681, + 279, + 694 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1911.11361, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 711 + ], + "score": 1.0, + "content": "Tianhe Yu, Garrett Thomas, Lantao Yu, Stefano Ermon, James Zou, Sergey Levine, Chelsea Finn, and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "score": 1.0, + "content": "Tengyu Ma. MOPO: Model-based offline policy optimization. arXiv preprint arXiv:2005.13239,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 718, + 143, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 718, + 143, + 733 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 399, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 399, + 106 + ], + "score": 1.0, + "content": "learning with offline datasets. arXiv preprint arXiv:2006.09359, 2020.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 500, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 500, + 135 + ], + "score": 1.0, + "content": "Simple and scalable off-policy reinforcement learning. arXiv preprint arXiv:1910.00177, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 506, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 139, + 506, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "score": 1.0, + "content": "Matthias Plappert, Marcin Andrychowicz, Alex Ray, Bob McGrew, Bowen Baker, Glenn Powell,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 150, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 114, + 150, + 506, + 162 + ], + "score": 1.0, + "content": "Jonas Schneider, Josh Tobin, Maciek Chociej, Peter Welinder, et al. Multi-goal reinforcement learn-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 507, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 507, + 174 + ], + "score": 1.0, + "content": "ing: Challenging robotics environments and request for research. arXiv preprint arXiv:1802.09464,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 172, + 142, + 183 + ], + "spans": [ + { + "bbox": [ + 115, + 172, + 142, + 183 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 138, + 507, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 504, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "Doina Precup, Richard S Sutton, and Sanjoy Dasgupta. Off-policy temporal-difference learning with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 200, + 446, + 213 + ], + "spans": [ + { + "bbox": [ + 116, + 200, + 446, + 213 + ], + "score": 1.0, + "content": "function approximation. In International Conference on Machine Learning, 2001.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 189, + 505, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 217, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Vikash Kumar, Abhishek Gupta, Giulia Vezzani, John Schulman, Emanuel", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 230, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 116, + 230, + 505, + 242 + ], + "score": 1.0, + "content": "Todorov, and Sergey Levine. Learning complex dexterous manipulation with deep reinforcement", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 240, + 397, + 252 + ], + "spans": [ + { + "bbox": [ + 116, + 240, + 397, + 252 + ], + "score": 1.0, + "content": "learning and demonstrations. arXiv preprint arXiv:1709.10087, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 217, + 506, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 504, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Igor Mordatch, and Vikash Kumar. A game theoretic framework for model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 268, + 400, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 400, + 280 + ], + "score": 1.0, + "content": "based reinforcement learning. arXiv preprint arXiv:2004.07804, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 257, + 505, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "Alex Ray, Joshua Achiam, and Dario Amodei. Benchmarking safe exploration in deep reinforcement", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 317, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 317, + 309 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1910.01708, 2019.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 284, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "prediction to no-regret online learning. In International conference on artificial intelligence and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 336, + 181, + 347 + ], + "spans": [ + { + "bbox": [ + 115, + 336, + 181, + 347 + ], + "score": 1.0, + "content": "statistics, 2011.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 314, + 506, + 347 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 353, + 495, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 497, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 497, + 367 + ], + "score": 1.0, + "content": "Nicolas Le Roux. Efficient iterative policy optimization. arXiv preprint arXiv:1612.08967, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 353, + 497, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 370, + 503, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Philipp Moritz, Michael Jordan, and Pieter Abbeel. Trust region", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 381, + 430, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 430, + 394 + ], + "score": 1.0, + "content": "policy optimization. In International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 369, + 505, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 398, + 504, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 413 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 410, + 380, + 423 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 380, + 423 + ], + "score": 1.0, + "content": "optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 397, + 505, + 423 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 507, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 507, + 441 + ], + "score": 1.0, + "content": "Noah Y. Siegel, Jost Tobias Springenberg, Felix Berkenkamp, Abbas Abdolmaleki, Michael Neunert,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 116, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "Thomas Lampe, Roland Hafner, and Martin A. Riedmiller. Keep doing what worked: Behavioral", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 449, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 114, + 449, + 505, + 464 + ], + "score": 1.0, + "content": "modelling priors for offline reinforcement learning. In International Conference on Learning", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 461, + 209, + 472 + ], + "spans": [ + { + "bbox": [ + 115, + 461, + 209, + 472 + ], + "score": 1.0, + "content": "Representations, 2020.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 427, + 507, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 477, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "Satinder P Singh, Tommi Jaakkola, and Michael I Jordan. Learning without state-estimation in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "partially observable markovian decision processes. In Machine Learning Proceedings. Elsevier,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 497, + 143, + 512 + ], + "spans": [ + { + "bbox": [ + 114, + 497, + 143, + 512 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 477, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 516, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Satinder P. Singh, Tommi Jaakkola, and Michael I. Jordan. Reinforcement learning with soft state", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 528, + 420, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 528, + 420, + 541 + ], + "score": 1.0, + "content": "aggregation. In Advances in Neural Information Processing Systems, 1995.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 516, + 505, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 504, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "Sungryull Sohn, Yinlam Chow, Jayden Ooi, Ofir Nachum, Honglak Lee, Ed Chi, and Craig Boutilier.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 556, + 453, + 569 + ], + "spans": [ + { + "bbox": [ + 116, + 556, + 453, + 569 + ], + "score": 1.0, + "content": "BRPO: Batch residual policy optimization. arXiv preprint arXiv:2002.05522, 2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 546, + 506, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 504, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "Richard S Sutton. Dyna, an integrated architecture for learning, planning, and reacting. ACM Sigart", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 585, + 178, + 596 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 178, + 596 + ], + "score": 1.0, + "content": "Bulletin, 1991.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 572, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 613, + 395, + 626 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 395, + 626 + ], + "score": 1.0, + "content": "In International Conference on Intelligent Robots and Systems, 2012.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 602, + 506, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 644 + ], + "score": 1.0, + "content": "Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 115, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "Zhang, Guodong Zhang, Pieter Abbeel, and Jimmy Ba. Benchmarking model-based reinforcement", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 653, + 317, + 665 + ], + "spans": [ + { + "bbox": [ + 116, + 653, + 317, + 665 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1907.02057, 2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 630, + 505, + 665 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 684 + ], + "score": 1.0, + "content": "Yifan Wu, George Tucker, and Ofir Nachum. Behavior Regularized Offline Reinforcement Learning.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 681, + 279, + 694 + ], + "spans": [ + { + "bbox": [ + 116, + 681, + 279, + 694 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1911.11361, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 668, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 711 + ], + "score": 1.0, + "content": "Tianhe Yu, Garrett Thomas, Lantao Yu, Stefano Ermon, James Zou, Sergey Levine, Chelsea Finn, and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "score": 1.0, + "content": "Tengyu Ma. MOPO: Model-based offline policy optimization. arXiv preprint arXiv:2005.13239,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 718, + 143, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 718, + 143, + 733 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 697, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 161, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 106, + 453, + 121 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 455, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 455, + 122 + ], + "score": 1.0, + "content": "A IMPLICIT KL CONTROL FROM A MATHEMATICAL PERSPECTIVE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "We can intuitively understand that behavior cloning initialization with trust-region updates works as", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "a regularization of distributional shift, and this can be supported by theory. Following the notation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "of Janner et al. (2019), we denote the generalization error of a dynamics model on the state distribution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 164, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 243, + 180 + ], + "score": 1.0, + "content": "under the true behavior policy as", + "type": "text" + }, + { + "bbox": [ + 244, + 165, + 473, + 179 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\epsilon _ { m } = \\operatorname* { m a x } _ { t } \\mathbb { E } _ { s \\sim d _ { t } ^ { \\pi _ { b } } } D _ { T V } ( \\bar { p ( } s _ { t + 1 } | s _ { t } , a _ { t } ) | | p _ { \\phi } ( s _ { t + 1 } | s _ { t } , a _ { t } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 164, + 506, + 180 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 107, + 178, + 128, + 189 + ], + "score": 0.89, + "content": "D _ { T V }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 177, + 372, + 190 + ], + "score": 1.0, + "content": "represents the total variation distance between true dynamics", + "type": "text" + }, + { + "bbox": [ + 372, + 181, + 379, + 189 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 177, + 455, + 190 + ], + "score": 1.0, + "content": "and learned model", + "type": "text" + }, + { + "bbox": [ + 455, + 180, + 467, + 190 + ], + "score": 0.83, + "content": "p _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 177, + 505, + 190 + ], + "score": 1.0, + "content": ". We also", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 314, + 201 + ], + "score": 1.0, + "content": "denote the distribution shift on the target policy as", + "type": "text" + }, + { + "bbox": [ + 314, + 189, + 413, + 201 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { s } D _ { T V } ( \\pi _ { b } | | \\pi ) \\le \\epsilon _ { \\pi } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 189, + 505, + 201 + ], + "score": 1.0, + "content": ". A bound relating the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 199, + 499, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 154, + 213 + ], + "score": 1.0, + "content": "true returns", + "type": "text" + }, + { + "bbox": [ + 155, + 200, + 173, + 212 + ], + "score": 0.91, + "content": "\\eta [ \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 199, + 263, + 213 + ], + "score": 1.0, + "content": "and the model returns", + "type": "text" + }, + { + "bbox": [ + 263, + 200, + 281, + 212 + ], + "score": 0.95, + "content": "\\hat { \\eta } [ \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 199, + 499, + 213 + ], + "score": 1.0, + "content": "on the target policy is given in Janner et al. (2019) as,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 215, + 408, + 243 + ], + "lines": [ + { + "bbox": [ + 202, + 215, + 408, + 243 + ], + "spans": [ + { + "bbox": [ + 202, + 215, + 408, + 243 + ], + "score": 0.92, + "content": "\\eta [ \\pi ] \\ge \\hat { \\eta } [ \\pi ] - \\left[ \\frac { 2 \\gamma r _ { m a x } ( \\epsilon _ { m } + 2 \\epsilon _ { \\pi } ) } { ( 1 - \\gamma ) ^ { 2 } } + \\frac { 4 r _ { m a x } \\epsilon _ { \\pi } } { ( 1 - \\gamma ) } \\right] .", + "type": "interline_equation", + "image_path": "d61ef7ba6dbba742a282990d7b12e361b9ee354446876eed6f9a57f566e8039b.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 202, + 215, + 408, + 243 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "score": 1.0, + "content": "This bound guarantees the improvement under the true returns as long as the improvement under", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 256, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 395, + 268 + ], + "score": 1.0, + "content": "the model returns increases by more than the slack in the bound due to", + "type": "text" + }, + { + "bbox": [ + 395, + 258, + 421, + 268 + ], + "score": 0.9, + "content": "\\epsilon _ { m } , \\epsilon _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 256, + 506, + 268 + ], + "score": 1.0, + "content": "(Janner et al., 2019;", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 189, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 189, + 279 + ], + "score": 1.0, + "content": "Levine et al., 2020).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "We may relate this bound to the specific learning employed by BREMEN, which includes dynamics", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "score": 1.0, + "content": "model learning, behavior cloning policy initialization, and conservative KL-based trust-region policy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "updates. To do so, we consider an idealized version of BREMEN, where the expectations over states", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "in equations Equation 1, 3, 4 are replaced with supremums and the dynamics model is set to have", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 329, + 162, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 162, + 340 + ], + "score": 1.0, + "content": "unit variance.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 105, + 342, + 504, + 365 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 506, + 355 + ], + "score": 1.0, + "content": "Proposition 1 (Policy and model error bound). Suppose we apply the idealized BREMEN on a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 474, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 138, + 367 + ], + "score": 1.0, + "content": "dataset", + "type": "text" + }, + { + "bbox": [ + 138, + 354, + 146, + 363 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 352, + 194, + 367 + ], + "score": 1.0, + "content": ", and define", + "type": "text" + }, + { + "bbox": [ + 195, + 354, + 218, + 366 + ], + "score": 0.88, + "content": "\\epsilon _ { \\beta } , \\epsilon _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 352, + 474, + 367 + ], + "score": 1.0, + "content": "in terms of the behavior cloning and dynamics model losses as,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 369, + 432, + 416 + ], + "lines": [ + { + "bbox": [ + 179, + 369, + 432, + 416 + ], + "spans": [ + { + "bbox": [ + 179, + 369, + 432, + 416 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\epsilon _ { \\beta } : = \\underset { s } { \\operatorname* { s u p } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } \\\\ & { \\epsilon _ { \\phi } : = \\underset { s , a } { \\operatorname* { s u p } } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) , } \\end{array}", + "type": "interline_equation", + "image_path": "c2f2c3d72e588942d1f90e27679108d3e13e651aa575885e47b8e07354fb2315.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 179, + 369, + 432, + 384.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 179, + 384.6666666666667, + 432, + 400.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 179, + 400.33333333333337, + 432, + 416.00000000000006 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 419, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 132, + 432 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 420, + 142, + 429 + ], + "score": 0.78, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 418, + 338, + 432 + ], + "score": 1.0, + "content": "denotes the Shannon entropy. If one then applies", + "type": "text" + }, + { + "bbox": [ + 338, + 420, + 347, + 429 + ], + "score": 0.67, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "KL-based trust-region steps of step size", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 430, + 485, + 444 + ], + "spans": [ + { + "bbox": [ + 107, + 433, + 112, + 442 + ], + "score": 0.71, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 431, + 348, + 444 + ], + "score": 1.0, + "content": "(Equation 4) using stochastic dynamics models with mean", + "type": "text" + }, + { + "bbox": [ + 348, + 430, + 359, + 444 + ], + "score": 0.9, + "content": "\\hat { f } _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 431, + 455, + 444 + ], + "score": 1.0, + "content": "and standard deviation", + "type": "text" + }, + { + "bbox": [ + 455, + 433, + 461, + 442 + ], + "score": 0.52, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 431, + 485, + 444 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 447, + 438, + 476 + ], + "lines": [ + { + "bbox": [ + 172, + 447, + 438, + 476 + ], + "spans": [ + { + "bbox": [ + 172, + 447, + 438, + 476 + ], + "score": 0.94, + "content": "\\epsilon _ { \\pi } = \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log 2 \\pi } + T \\sqrt { \\frac { 1 } { 2 } \\delta } ; \\epsilon _ { m } \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ,", + "type": "interline_equation", + "image_path": "8ccdfa3eb115b464fecd2fe3267fdfdd209a81219d9b0a18cf587294a3b2cc52.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 172, + 447, + 438, + 456.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 172, + 456.6666666666667, + 438, + 466.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 172, + 466.33333333333337, + 438, + 476.00000000000006 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 369, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 370, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 133, + 493 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 480, + 144, + 490 + ], + "score": 0.86, + "content": "d _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 477, + 163, + 493 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 163, + 479, + 173, + 490 + ], + "score": 0.86, + "content": "d _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 477, + 370, + 493 + ], + "score": 1.0, + "content": "denotes the dimension of action and state space.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 502, + 446, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 448, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 206, + 517 + ], + "score": 1.0, + "content": "Proof. We first consider", + "type": "text" + }, + { + "bbox": [ + 206, + 504, + 216, + 514 + ], + "score": 0.83, + "content": "\\epsilon _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 500, + 448, + 517 + ], + "score": 1.0, + "content": ". The behavior cloning objective in its supremum form is,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 517, + 445, + 596 + ], + "lines": [ + { + "bbox": [ + 165, + 517, + 445, + 596 + ], + "spans": [ + { + "bbox": [ + 165, + 517, + 445, + 596 + ], + "score": 0.95, + "content": "\\begin{array} { r c l } { { \\epsilon _ { \\beta } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } \\left[ - \\log \\pi _ { \\theta _ { 0 } } ( a | s ) \\right] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } D _ { K L } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi . } } \\end{array}", + "type": "interline_equation", + "image_path": "510a7a6f4c53ed1fd9bf08aa7d02a389c968aa539179d59d749e976e7870b259.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 165, + 517, + 445, + 543.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 165, + 543.3333333333334, + 445, + 569.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 165, + 569.6666666666667, + 445, + 596.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 424, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 425, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 425, + 612 + ], + "score": 1.0, + "content": "We apply Pinsker’s inequality to the true and estimated behavior policy to yield", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 613, + 414, + 642 + ], + "lines": [ + { + "bbox": [ + 196, + 613, + 414, + 642 + ], + "spans": [ + { + "bbox": [ + 196, + 613, + 414, + 642 + ], + "score": 0.92, + "content": "\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) \\leq { \\sqrt { { \\frac { 1 } { 2 } } \\epsilon _ { \\beta } + { \\frac { d _ { a } } { 4 } } \\log 2 \\pi } } .", + "type": "interline_equation", + "image_path": "cd03e1a355c462e8c51673a94646e5c30e546ca5516d39be57268f3f2d32018e.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 613, + 414, + 627.5 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 196, + 627.5, + 414, + 642.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 279, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 280, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 280, + 666 + ], + "score": 1.0, + "content": "By the same Pinsker’s inequality, we have,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 666, + 393, + 689 + ], + "lines": [ + { + "bbox": [ + 217, + 666, + 393, + 689 + ], + "spans": [ + { + "bbox": [ + 217, + 666, + 393, + 689 + ], + "score": 0.91, + "content": "\\operatorname* { s u p } _ { s } D _ { T V } \\big ( \\pi _ { \\theta _ { k } } ( - | s ) | | \\pi _ { \\theta _ { k + 1 } } ( - | s ) \\big ) \\leq \\sqrt { \\delta / 2 } .", + "type": "interline_equation", + "image_path": "cc6a736a77029996a3131bc442a1cd7ba489b5215b67cb069131c1f6b0992f95.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 217, + 666, + 393, + 689 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 691, + 275, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 690, + 275, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 275, + 705 + ], + "score": 1.0, + "content": "Therefore, by triangle inequality, we have", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 707, + 446, + 735 + ], + "lines": [ + { + "bbox": [ + 163, + 707, + 446, + 735 + ], + "spans": [ + { + "bbox": [ + 163, + 707, + 446, + 735 + ], + "score": 0.92, + "content": "\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { T } } ( - | s ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log { 2 \\pi } } + T \\sqrt { \\frac { 1 } { 2 } \\delta } = \\epsilon _ { \\pi } ,", + "type": "interline_equation", + "image_path": "adbda65b070ce562bc17233c93098a26063b412526439385966fa8c83b1bd933.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 163, + 707, + 446, + 735 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 161, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 106, + 453, + 121 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 455, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 455, + 122 + ], + "score": 1.0, + "content": "A IMPLICIT KL CONTROL FROM A MATHEMATICAL PERSPECTIVE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "We can intuitively understand that behavior cloning initialization with trust-region updates works as", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "a regularization of distributional shift, and this can be supported by theory. Following the notation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "of Janner et al. (2019), we denote the generalization error of a dynamics model on the state distribution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 164, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 243, + 180 + ], + "score": 1.0, + "content": "under the true behavior policy as", + "type": "text" + }, + { + "bbox": [ + 244, + 165, + 473, + 179 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\epsilon _ { m } = \\operatorname* { m a x } _ { t } \\mathbb { E } _ { s \\sim d _ { t } ^ { \\pi _ { b } } } D _ { T V } ( \\bar { p ( } s _ { t + 1 } | s _ { t } , a _ { t } ) | | p _ { \\phi } ( s _ { t + 1 } | s _ { t } , a _ { t } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 164, + 506, + 180 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 107, + 178, + 128, + 189 + ], + "score": 0.89, + "content": "D _ { T V }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 177, + 372, + 190 + ], + "score": 1.0, + "content": "represents the total variation distance between true dynamics", + "type": "text" + }, + { + "bbox": [ + 372, + 181, + 379, + 189 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 177, + 455, + 190 + ], + "score": 1.0, + "content": "and learned model", + "type": "text" + }, + { + "bbox": [ + 455, + 180, + 467, + 190 + ], + "score": 0.83, + "content": "p _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 177, + 505, + 190 + ], + "score": 1.0, + "content": ". We also", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 314, + 201 + ], + "score": 1.0, + "content": "denote the distribution shift on the target policy as", + "type": "text" + }, + { + "bbox": [ + 314, + 189, + 413, + 201 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { s } D _ { T V } ( \\pi _ { b } | | \\pi ) \\le \\epsilon _ { \\pi } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 189, + 505, + 201 + ], + "score": 1.0, + "content": ". A bound relating the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 199, + 499, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 154, + 213 + ], + "score": 1.0, + "content": "true returns", + "type": "text" + }, + { + "bbox": [ + 155, + 200, + 173, + 212 + ], + "score": 0.91, + "content": "\\eta [ \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 199, + 263, + 213 + ], + "score": 1.0, + "content": "and the model returns", + "type": "text" + }, + { + "bbox": [ + 263, + 200, + 281, + 212 + ], + "score": 0.95, + "content": "\\hat { \\eta } [ \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 199, + 499, + 213 + ], + "score": 1.0, + "content": "on the target policy is given in Janner et al. (2019) as,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 132, + 506, + 213 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 215, + 408, + 243 + ], + "lines": [ + { + "bbox": [ + 202, + 215, + 408, + 243 + ], + "spans": [ + { + "bbox": [ + 202, + 215, + 408, + 243 + ], + "score": 0.92, + "content": "\\eta [ \\pi ] \\ge \\hat { \\eta } [ \\pi ] - \\left[ \\frac { 2 \\gamma r _ { m a x } ( \\epsilon _ { m } + 2 \\epsilon _ { \\pi } ) } { ( 1 - \\gamma ) ^ { 2 } } + \\frac { 4 r _ { m a x } \\epsilon _ { \\pi } } { ( 1 - \\gamma ) } \\right] .", + "type": "interline_equation", + "image_path": "d61ef7ba6dbba742a282990d7b12e361b9ee354446876eed6f9a57f566e8039b.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 202, + 215, + 408, + 243 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "score": 1.0, + "content": "This bound guarantees the improvement under the true returns as long as the improvement under", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 256, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 395, + 268 + ], + "score": 1.0, + "content": "the model returns increases by more than the slack in the bound due to", + "type": "text" + }, + { + "bbox": [ + 395, + 258, + 421, + 268 + ], + "score": 0.9, + "content": "\\epsilon _ { m } , \\epsilon _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 256, + 506, + 268 + ], + "score": 1.0, + "content": "(Janner et al., 2019;", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 189, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 189, + 279 + ], + "score": 1.0, + "content": "Levine et al., 2020).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 244, + 506, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "We may relate this bound to the specific learning employed by BREMEN, which includes dynamics", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "score": 1.0, + "content": "model learning, behavior cloning policy initialization, and conservative KL-based trust-region policy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "updates. To do so, we consider an idealized version of BREMEN, where the expectations over states", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "in equations Equation 1, 3, 4 are replaced with supremums and the dynamics model is set to have", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 329, + 162, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 162, + 340 + ], + "score": 1.0, + "content": "unit variance.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 283, + 505, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 342, + 504, + 365 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 506, + 355 + ], + "score": 1.0, + "content": "Proposition 1 (Policy and model error bound). Suppose we apply the idealized BREMEN on a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 474, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 138, + 367 + ], + "score": 1.0, + "content": "dataset", + "type": "text" + }, + { + "bbox": [ + 138, + 354, + 146, + 363 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 352, + 194, + 367 + ], + "score": 1.0, + "content": ", and define", + "type": "text" + }, + { + "bbox": [ + 195, + 354, + 218, + 366 + ], + "score": 0.88, + "content": "\\epsilon _ { \\beta } , \\epsilon _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 352, + 474, + 367 + ], + "score": 1.0, + "content": "in terms of the behavior cloning and dynamics model losses as,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 342, + 506, + 367 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 369, + 432, + 416 + ], + "lines": [ + { + "bbox": [ + 179, + 369, + 432, + 416 + ], + "spans": [ + { + "bbox": [ + 179, + 369, + 432, + 416 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\epsilon _ { \\beta } : = \\underset { s } { \\operatorname* { s u p } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } \\\\ & { \\epsilon _ { \\phi } : = \\underset { s , a } { \\operatorname* { s u p } } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) , } \\end{array}", + "type": "interline_equation", + "image_path": "c2f2c3d72e588942d1f90e27679108d3e13e651aa575885e47b8e07354fb2315.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 179, + 369, + 432, + 384.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 179, + 384.6666666666667, + 432, + 400.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 179, + 400.33333333333337, + 432, + 416.00000000000006 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 419, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 132, + 432 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 420, + 142, + 429 + ], + "score": 0.78, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 418, + 338, + 432 + ], + "score": 1.0, + "content": "denotes the Shannon entropy. If one then applies", + "type": "text" + }, + { + "bbox": [ + 338, + 420, + 347, + 429 + ], + "score": 0.67, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "KL-based trust-region steps of step size", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 430, + 485, + 444 + ], + "spans": [ + { + "bbox": [ + 107, + 433, + 112, + 442 + ], + "score": 0.71, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 431, + 348, + 444 + ], + "score": 1.0, + "content": "(Equation 4) using stochastic dynamics models with mean", + "type": "text" + }, + { + "bbox": [ + 348, + 430, + 359, + 444 + ], + "score": 0.9, + "content": "\\hat { f } _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 431, + 455, + 444 + ], + "score": 1.0, + "content": "and standard deviation", + "type": "text" + }, + { + "bbox": [ + 455, + 433, + 461, + 442 + ], + "score": 0.52, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 431, + 485, + 444 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 418, + 505, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 447, + 438, + 476 + ], + "lines": [ + { + "bbox": [ + 172, + 447, + 438, + 476 + ], + "spans": [ + { + "bbox": [ + 172, + 447, + 438, + 476 + ], + "score": 0.94, + "content": "\\epsilon _ { \\pi } = \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log 2 \\pi } + T \\sqrt { \\frac { 1 } { 2 } \\delta } ; \\epsilon _ { m } \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ,", + "type": "interline_equation", + "image_path": "8ccdfa3eb115b464fecd2fe3267fdfdd209a81219d9b0a18cf587294a3b2cc52.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 172, + 447, + 438, + 456.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 172, + 456.6666666666667, + 438, + 466.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 172, + 466.33333333333337, + 438, + 476.00000000000006 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 369, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 370, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 133, + 493 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 480, + 144, + 490 + ], + "score": 0.86, + "content": "d _ { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 477, + 163, + 493 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 163, + 479, + 173, + 490 + ], + "score": 0.86, + "content": "d _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 477, + 370, + 493 + ], + "score": 1.0, + "content": "denotes the dimension of action and state space.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 477, + 370, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 502, + 446, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 448, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 206, + 517 + ], + "score": 1.0, + "content": "Proof. We first consider", + "type": "text" + }, + { + "bbox": [ + 206, + 504, + 216, + 514 + ], + "score": 0.83, + "content": "\\epsilon _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 500, + 448, + 517 + ], + "score": 1.0, + "content": ". The behavior cloning objective in its supremum form is,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 500, + 448, + 517 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 517, + 445, + 596 + ], + "lines": [ + { + "bbox": [ + 165, + 517, + 445, + 596 + ], + "spans": [ + { + "bbox": [ + 165, + 517, + 445, + 596 + ], + "score": 0.95, + "content": "\\begin{array} { r c l } { { \\epsilon _ { \\beta } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } \\left[ - \\log \\pi _ { \\theta _ { 0 } } ( a | s ) \\right] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } D _ { K L } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi . } } \\end{array}", + "type": "interline_equation", + "image_path": "510a7a6f4c53ed1fd9bf08aa7d02a389c968aa539179d59d749e976e7870b259.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 165, + 517, + 445, + 543.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 165, + 543.3333333333334, + 445, + 569.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 165, + 569.6666666666667, + 445, + 596.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 424, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 425, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 425, + 612 + ], + "score": 1.0, + "content": "We apply Pinsker’s inequality to the true and estimated behavior policy to yield", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 597, + 425, + 612 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 613, + 414, + 642 + ], + "lines": [ + { + "bbox": [ + 196, + 613, + 414, + 642 + ], + "spans": [ + { + "bbox": [ + 196, + 613, + 414, + 642 + ], + "score": 0.92, + "content": "\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) \\leq { \\sqrt { { \\frac { 1 } { 2 } } \\epsilon _ { \\beta } + { \\frac { d _ { a } } { 4 } } \\log 2 \\pi } } .", + "type": "interline_equation", + "image_path": "cd03e1a355c462e8c51673a94646e5c30e546ca5516d39be57268f3f2d32018e.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 613, + 414, + 627.5 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 196, + 627.5, + 414, + 642.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 279, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 280, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 280, + 666 + ], + "score": 1.0, + "content": "By the same Pinsker’s inequality, we have,", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 649, + 280, + 666 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 666, + 393, + 689 + ], + "lines": [ + { + "bbox": [ + 217, + 666, + 393, + 689 + ], + "spans": [ + { + "bbox": [ + 217, + 666, + 393, + 689 + ], + "score": 0.91, + "content": "\\operatorname* { s u p } _ { s } D _ { T V } \\big ( \\pi _ { \\theta _ { k } } ( - | s ) | | \\pi _ { \\theta _ { k + 1 } } ( - | s ) \\big ) \\leq \\sqrt { \\delta / 2 } .", + "type": "interline_equation", + "image_path": "cc6a736a77029996a3131bc442a1cd7ba489b5215b67cb069131c1f6b0992f95.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 217, + 666, + 393, + 689 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 691, + 275, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 690, + 275, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 275, + 705 + ], + "score": 1.0, + "content": "Therefore, by triangle inequality, we have", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 690, + 275, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 707, + 446, + 735 + ], + "lines": [ + { + "bbox": [ + 163, + 707, + 446, + 735 + ], + "spans": [ + { + "bbox": [ + 163, + 707, + 446, + 735 + ], + "score": 0.92, + "content": "\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { T } } ( - | s ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log { 2 \\pi } } + T \\sqrt { \\frac { 1 } { 2 } \\delta } = \\epsilon _ { \\pi } ,", + "type": "interline_equation", + "image_path": "adbda65b070ce562bc17233c93098a26063b412526439385966fa8c83b1bd933.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 163, + 707, + 446, + 735 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 150, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 151, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 151, + 94 + ], + "score": 1.0, + "content": "as desired.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 99, + 339, + 111 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 339, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 208, + 113 + ], + "score": 1.0, + "content": "We perform similarly for", + "type": "text" + }, + { + "bbox": [ + 208, + 101, + 221, + 110 + ], + "score": 0.87, + "content": "\\epsilon _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 98, + 339, + 113 + ], + "score": 1.0, + "content": ". The model dynamics loss is", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 115, + 455, + 198 + ], + "lines": [ + { + "bbox": [ + 154, + 115, + 455, + 198 + ], + "spans": [ + { + "bbox": [ + 154, + 115, + 455, + 198 + ], + "score": 0.96, + "content": "\\begin{array} { r c l } { { \\epsilon _ { \\phi } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ - \\log p _ { \\phi } ( s ^ { \\prime } | s , a ) \\right] - \\mathcal { H } ( p ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } D _ { K L } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi . } } \\end{array}", + "type": "interline_equation", + "image_path": "aa87fc6f3057155c6737ed593a8a5dafd8d078ffdb95066df40607dddf37e869.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 154, + 115, + 455, + 142.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 154, + 142.66666666666666, + 455, + 170.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 154, + 170.33333333333331, + 455, + 197.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 201, + 421, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 420, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 420, + 215 + ], + "score": 1.0, + "content": "We apply Pinsker’s inequality to the true dynamics and learned model to yield", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 218, + 431, + 248 + ], + "lines": [ + { + "bbox": [ + 179, + 218, + 431, + 248 + ], + "spans": [ + { + "bbox": [ + 179, + 218, + 431, + 248 + ], + "score": 0.93, + "content": "\\epsilon _ { m } \\leq \\operatorname* { s u p } _ { s , a } D _ { T V } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ,", + "type": "interline_equation", + "image_path": "dc340071f12361b39a5e91cdb583922019af7ff05d0a8d67d4402eec2d3f9721.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 179, + 218, + 431, + 228.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 179, + 228.0, + 431, + 238.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 179, + 238.0, + 431, + 248.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 150, + 265 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 151, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 151, + 265 + ], + "score": 1.0, + "content": "as desired.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 280, + 451, + 294 + ], + "lines": [ + { + "bbox": [ + 104, + 280, + 453, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 453, + 296 + ], + "score": 1.0, + "content": "B TRADE-OFF BETWEEN SAMPLE AND DEPLOYMENT EFFICIENCY", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "An important aspect of deployment efficiency is the trade-off between sample and deployment", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "efficiency. To collect multiple data points per experiment and show this trade-off, we run recursive", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "BREMEN with different batch sizes, and record how many samples are required to cross different", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 340, + 182, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 182, + 351 + ], + "score": 1.0, + "content": "reward thresholds.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 506, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 369 + ], + "score": 1.0, + "content": "HalfCheetah (Reward 7,000 result) and other results from Figure 5 generally show that high deploy-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 367, + 507, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 507, + 380 + ], + "score": 1.0, + "content": "ment efficiency lowers sample efficiency, confirming the inherent trade-off. However, in rare cases,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "e.g. Ant (Reward 5,000 result), it could be possible to achieve both high deployment efficiency and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 389, + 434, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 434, + 401 + ], + "score": 1.0, + "content": "high sample efficiency through the right choice of the batch size hyper-parameter.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "image", + "bbox": [ + 127, + 412, + 483, + 523 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 412, + 483, + 523 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 412, + 483, + 523 + ], + "spans": [ + { + "bbox": [ + 127, + 412, + 483, + 523 + ], + "score": 0.88, + "type": "image", + "image_path": "e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 127, + 412, + 483, + 449.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 127, + 449.0, + 483, + 486.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 127, + 486.0, + 483, + 523.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 528, + 506, + 589 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "Figure 5: From the view of both sample and deployment efficiency at certain cumulative reward threshold, we", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "score": 1.0, + "content": "evaluate BREMEN in Ant (left) and HalfCheetah (right). x and y axes respectively represent the number of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "samples and the number of deployments.Each data point comes from running BREMEN with different reward", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 558, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 506, + 569 + ], + "score": 1.0, + "content": "thresholds and batch sizes. The numbers above the points (e.g. 1000, 2000, ...) represent the reward threshold.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "The results (especially, reward 7,000 threshold in HalfCheetah) generally show that high deployment efficiency", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 577, + 321, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 321, + 589 + ], + "score": 1.0, + "content": "lowers sample efficiency, confirming the inherent trade-off.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + } + ], + "index": 22.25 + } + ], + "page_idx": 14, + "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": "text", + "bbox": [ + 106, + 82, + 150, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 151, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 151, + 94 + ], + "score": 1.0, + "content": "as desired.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 82, + 151, + 94 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 99, + 339, + 111 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 339, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 208, + 113 + ], + "score": 1.0, + "content": "We perform similarly for", + "type": "text" + }, + { + "bbox": [ + 208, + 101, + 221, + 110 + ], + "score": 0.87, + "content": "\\epsilon _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 98, + 339, + 113 + ], + "score": 1.0, + "content": ". The model dynamics loss is", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 98, + 339, + 113 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 115, + 455, + 198 + ], + "lines": [ + { + "bbox": [ + 154, + 115, + 455, + 198 + ], + "spans": [ + { + "bbox": [ + 154, + 115, + 455, + 198 + ], + "score": 0.96, + "content": "\\begin{array} { r c l } { { \\epsilon _ { \\phi } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ - \\log p _ { \\phi } ( s ^ { \\prime } | s , a ) \\right] - \\mathcal { H } ( p ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } D _ { K L } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi . } } \\end{array}", + "type": "interline_equation", + "image_path": "aa87fc6f3057155c6737ed593a8a5dafd8d078ffdb95066df40607dddf37e869.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 154, + 115, + 455, + 142.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 154, + 142.66666666666666, + 455, + 170.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 154, + 170.33333333333331, + 455, + 197.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 201, + 421, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 420, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 420, + 215 + ], + "score": 1.0, + "content": "We apply Pinsker’s inequality to the true dynamics and learned model to yield", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 201, + 420, + 215 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 218, + 431, + 248 + ], + "lines": [ + { + "bbox": [ + 179, + 218, + 431, + 248 + ], + "spans": [ + { + "bbox": [ + 179, + 218, + 431, + 248 + ], + "score": 0.93, + "content": "\\epsilon _ { m } \\leq \\operatorname* { s u p } _ { s , a } D _ { T V } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ,", + "type": "interline_equation", + "image_path": "dc340071f12361b39a5e91cdb583922019af7ff05d0a8d67d4402eec2d3f9721.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 179, + 218, + 431, + 228.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 179, + 228.0, + 431, + 238.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 179, + 238.0, + 431, + 248.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 150, + 265 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 151, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 151, + 265 + ], + "score": 1.0, + "content": "as desired.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 253, + 151, + 265 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 280, + 451, + 294 + ], + "lines": [ + { + "bbox": [ + 104, + 280, + 453, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 453, + 296 + ], + "score": 1.0, + "content": "B TRADE-OFF BETWEEN SAMPLE AND DEPLOYMENT EFFICIENCY", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "An important aspect of deployment efficiency is the trade-off between sample and deployment", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "efficiency. To collect multiple data points per experiment and show this trade-off, we run recursive", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "BREMEN with different batch sizes, and record how many samples are required to cross different", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 340, + 182, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 182, + 351 + ], + "score": 1.0, + "content": "reward thresholds.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 306, + 506, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 506, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 369 + ], + "score": 1.0, + "content": "HalfCheetah (Reward 7,000 result) and other results from Figure 5 generally show that high deploy-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 367, + 507, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 507, + 380 + ], + "score": 1.0, + "content": "ment efficiency lowers sample efficiency, confirming the inherent trade-off. However, in rare cases,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "e.g. Ant (Reward 5,000 result), it could be possible to achieve both high deployment efficiency and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 389, + 434, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 434, + 401 + ], + "score": 1.0, + "content": "high sample efficiency through the right choice of the batch size hyper-parameter.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 354, + 507, + 401 + ] + }, + { + "type": "image", + "bbox": [ + 127, + 412, + 483, + 523 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 412, + 483, + 523 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 412, + 483, + 523 + ], + "spans": [ + { + "bbox": [ + 127, + 412, + 483, + 523 + ], + "score": 0.88, + "type": "image", + "image_path": "e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 127, + 412, + 483, + 449.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 127, + 449.0, + 483, + 486.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 127, + 486.0, + 483, + 523.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 528, + 506, + 589 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "Figure 5: From the view of both sample and deployment efficiency at certain cumulative reward threshold, we", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 550 + ], + "score": 1.0, + "content": "evaluate BREMEN in Ant (left) and HalfCheetah (right). x and y axes respectively represent the number of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "samples and the number of deployments.Each data point comes from running BREMEN with different reward", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 558, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 506, + 569 + ], + "score": 1.0, + "content": "thresholds and batch sizes. The numbers above the points (e.g. 1000, 2000, ...) represent the reward threshold.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "The results (especially, reward 7,000 threshold in HalfCheetah) generally show that high deployment efficiency", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 577, + 321, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 321, + 589 + ], + "score": 1.0, + "content": "lowers sample efficiency, confirming the inherent trade-off.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + } + ], + "index": 22.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 437, + 108 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 438, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 438, + 95 + ], + "score": 1.0, + "content": "C DISCUSSION: IMPORTANCE OF DEPLOYMENT EFFICIENCY IN", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 95, + 282, + 109 + ], + "spans": [ + { + "bbox": [ + 127, + 95, + 282, + 109 + ], + "score": 1.0, + "content": "REAL-WORLD APPLICATIONS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 120, + 506, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 505, + 132 + ], + "score": 1.0, + "content": "Our notion of deployment-efficiency is necessitated by cost and safety constraints typical in many real", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 130, + 507, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 507, + 143 + ], + "score": 1.0, + "content": "world scenarios. Namely, a common approach to real-world applications (Cabi et al., 2020; Dulac-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "Arnold et al., 2019; Kalashnikov et al., 2018) is the following iterative training and data-collection", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 152, + 151, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 151, + 167 + ], + "score": 1.0, + "content": "paradigm:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 129, + 174, + 505, + 257 + ], + "lines": [ + { + "bbox": [ + 129, + 174, + 334, + 186 + ], + "spans": [ + { + "bbox": [ + 129, + 174, + 334, + 186 + ], + "score": 1.0, + "content": "1. Aggregate past previous dataset from worker(s)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 129, + 189, + 312, + 201 + ], + "spans": [ + { + "bbox": [ + 129, + 189, + 312, + 201 + ], + "score": 1.0, + "content": "2. Update policy based on the collected data", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 129, + 204, + 281, + 216 + ], + "spans": [ + { + "bbox": [ + 129, + 204, + 281, + 216 + ], + "score": 1.0, + "content": "3. Deploy the policy to the worker(s)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 128, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 128, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "4. Monitor the policy works as expected e.g. checking if it does not violate safety criterion", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 230, + 415, + 242 + ], + "spans": [ + { + "bbox": [ + 141, + 230, + 415, + 242 + ], + "score": 1.0, + "content": "(this safety verification step may alternatively happen before step 3)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 128, + 243, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 128, + 243, + 380, + 258 + ], + "score": 1.0, + "content": "5. Let the worker(s) collect experiences with the latest policy.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 104, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 104, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "It is easy to see that the number of deployments is a critical bottleneck, as it involves both monitoring", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 277, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 506, + 289 + ], + "score": 1.0, + "content": "of the policy (Step 4) and communication to the workers (Step 3), and both of these steps can incur", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "significant cost. Specifically, Step 4 requires evaluating the policy for safety, and often requires", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "human monitors (Atkeson et al., 2015). As for Step 3, communication to workers can also be a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "score": 1.0, + "content": "bottleneck, especially in highly-parallelized distributed RL systems (Nair et al., 2015; Espeholt et al.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 319, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 506, + 334 + ], + "score": 1.0, + "content": "2018; 2019). Every policy deployment requires a potentially expensive communication between", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 331, + 425, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 425, + 343 + ], + "score": 1.0, + "content": "different machines/processes, and this can be a bottleneck on the whole system.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "As a concrete example of the necessity of good deployment efficiency, consider optimization of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "personalization in web apps or recommender systems (Abel et al., 2017). Once a policy is learned on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "a batch of past experiences, it is deployed to a collection of web-hosting servers. In this scenario,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "both safety and communication concerns are relevant: Safety of the new policy is typically ensured", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "by initially deploying the policy to a small percentage of users; after monitoring the results for some", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "length of time (e.g. the newly deployed policy does not deteriorate user experiences), one can expand", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "the target user set. As for communication, deploying a new policy to web-hosting servers can be time", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "intensive, especially in large-scale web applications where the policy must be deployed to a network", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "of servers around the world. Thus, in this setting, it is clear that online updating of the policy is", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "score": 1.0, + "content": "infeasible due to both safety and communication constraints. Accordingly, the deployment-efficiency", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 457, + 348, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 348, + 471 + ], + "score": 1.0, + "content": "of any candidate RL algorithm is of tantamount importance.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "The safe exploration might be mentioned as a potential alternative to deployment-efficiency. While", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 484, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 499 + ], + "score": 1.0, + "content": "safe exploration can arguably tackle the first concern above (safety risks of the policy), it does nothing", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "to mitigate the latter (the engineering or communication costs associated with online deployment", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "of a policy). Furthermore, this still ignores the fact that in many scenarios the ability to do safe", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "exploration is not a given. While some safe RL algorithms can provide guarantees in tabular cases,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "these guarantees no longer hold when using function approximation with neural networks (Chow", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "score": 1.0, + "content": "et al., 2018). In these cases, it can be much more difficult to perform “safe exploration” than it is to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 552, + 276, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 276, + 564 + ], + "score": 1.0, + "content": "develop a deployment-efficient algorithm.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 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": "title", + "bbox": [ + 106, + 81, + 437, + 108 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 438, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 438, + 95 + ], + "score": 1.0, + "content": "C DISCUSSION: IMPORTANCE OF DEPLOYMENT EFFICIENCY IN", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 95, + 282, + 109 + ], + "spans": [ + { + "bbox": [ + 127, + 95, + 282, + 109 + ], + "score": 1.0, + "content": "REAL-WORLD APPLICATIONS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 120, + 506, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 505, + 132 + ], + "score": 1.0, + "content": "Our notion of deployment-efficiency is necessitated by cost and safety constraints typical in many real", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 130, + 507, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 507, + 143 + ], + "score": 1.0, + "content": "world scenarios. Namely, a common approach to real-world applications (Cabi et al., 2020; Dulac-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "Arnold et al., 2019; Kalashnikov et al., 2018) is the following iterative training and data-collection", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 152, + 151, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 151, + 167 + ], + "score": 1.0, + "content": "paradigm:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 119, + 507, + 167 + ] + }, + { + "type": "index", + "bbox": [ + 129, + 174, + 505, + 257 + ], + "lines": [ + { + "bbox": [ + 129, + 174, + 334, + 186 + ], + "spans": [ + { + "bbox": [ + 129, + 174, + 334, + 186 + ], + "score": 1.0, + "content": "1. Aggregate past previous dataset from worker(s)", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 129, + 189, + 312, + 201 + ], + "spans": [ + { + "bbox": [ + 129, + 189, + 312, + 201 + ], + "score": 1.0, + "content": "2. Update policy based on the collected data", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 129, + 204, + 281, + 216 + ], + "spans": [ + { + "bbox": [ + 129, + 204, + 281, + 216 + ], + "score": 1.0, + "content": "3. Deploy the policy to the worker(s)", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 128, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "4. Monitor the policy works as expected e.g. checking if it does not violate safety criterion", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 230, + 415, + 242 + ], + "spans": [ + { + "bbox": [ + 141, + 230, + 415, + 242 + ], + "score": 1.0, + "content": "(this safety verification step may alternatively happen before step 3)", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 243, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 128, + 243, + 380, + 258 + ], + "score": 1.0, + "content": "5. Let the worker(s) collect experiences with the latest policy.", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + } + ], + "index": 8.5, + "bbox_fs": [ + 128, + 174, + 505, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 104, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 104, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "It is easy to see that the number of deployments is a critical bottleneck, as it involves both monitoring", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 277, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 506, + 289 + ], + "score": 1.0, + "content": "of the policy (Step 4) and communication to the workers (Step 3), and both of these steps can incur", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "significant cost. Specifically, Step 4 requires evaluating the policy for safety, and often requires", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "human monitors (Atkeson et al., 2015). As for Step 3, communication to workers can also be a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 506, + 321 + ], + "score": 1.0, + "content": "bottleneck, especially in highly-parallelized distributed RL systems (Nair et al., 2015; Espeholt et al.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 319, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 506, + 334 + ], + "score": 1.0, + "content": "2018; 2019). Every policy deployment requires a potentially expensive communication between", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 331, + 425, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 425, + 343 + ], + "score": 1.0, + "content": "different machines/processes, and this can be a bottleneck on the whole system.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 264, + 506, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "As a concrete example of the necessity of good deployment efficiency, consider optimization of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "personalization in web apps or recommender systems (Abel et al., 2017). Once a policy is learned on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "a batch of past experiences, it is deployed to a collection of web-hosting servers. In this scenario,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "both safety and communication concerns are relevant: Safety of the new policy is typically ensured", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "by initially deploying the policy to a small percentage of users; after monitoring the results for some", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "length of time (e.g. the newly deployed policy does not deteriorate user experiences), one can expand", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "the target user set. As for communication, deploying a new policy to web-hosting servers can be time", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "intensive, especially in large-scale web applications where the policy must be deployed to a network", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "of servers around the world. Thus, in this setting, it is clear that online updating of the policy is", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 461 + ], + "score": 1.0, + "content": "infeasible due to both safety and communication constraints. Accordingly, the deployment-efficiency", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 457, + 348, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 348, + 471 + ], + "score": 1.0, + "content": "of any candidate RL algorithm is of tantamount importance.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 348, + 506, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 474, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "The safe exploration might be mentioned as a potential alternative to deployment-efficiency. While", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 484, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 499 + ], + "score": 1.0, + "content": "safe exploration can arguably tackle the first concern above (safety risks of the policy), it does nothing", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "to mitigate the latter (the engineering or communication costs associated with online deployment", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "of a policy). Furthermore, this still ignores the fact that in many scenarios the ability to do safe", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "exploration is not a given. While some safe RL algorithms can provide guarantees in tabular cases,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "these guarantees no longer hold when using function approximation with neural networks (Chow", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 552 + ], + "score": 1.0, + "content": "et al., 2018). In these cases, it can be much more difficult to perform “safe exploration” than it is to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 552, + 276, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 276, + 564 + ], + "score": 1.0, + "content": "develop a deployment-efficient algorithm.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 475, + 506, + 564 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 439, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 441, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 441, + 96 + ], + "score": 1.0, + "content": "D EVALUATING OFFLINE PERFORMANCES ON D4RL DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "We compare BREMEN to MOPO (Yu et al., 2020), concurrently proposed model-based offline", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "methods penalized by model epistemic uncertainty, and state-of-the-art model-free offline algorithms,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 506, + 141 + ], + "score": 1.0, + "content": "namely, CQL (Kumar et al., 2020), BEAR (Kumar et al., 2019), BRAC (Wu et al., 2019), AWR (Peng", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "et al., 2019) and BCQ (Fujimoto et al., 2019), on the D4RL MuJoCo locomotion datasets (Fu et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "2020), used as standard offline RL benchmarks (Kumar et al., 2020; Nair et al., 2020). They have", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "score": 1.0, + "content": "several types of offline data collected with different strategies. We choose the hyper parameters of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "score": 1.0, + "content": "BREMEN in Section 5.1 and F.2.2. Table 2 shows BREMEN beats recent state-of-the-art algorithms", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "with the highest normalized score (around 100 corresponds to an expert) in several tasks, while none", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "of the methods consistently achieves the best performance. This result suggests that the implicit", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 506, + 217 + ], + "score": 1.0, + "content": "regularization with the model-based method performs surprisingly well in offline settings despite of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 163, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 163, + 228 + ], + "score": 1.0, + "content": "its simplicity.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6 + }, + { + "type": "table", + "bbox": [ + 106, + 237, + 523, + 372 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 237, + 523, + 372 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 237, + 523, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 523, + 372 + ], + "score": 0.983, + "html": "
Task NameBCBREMENMOPOCQLBEARBRAC-vAWRBCQ
halfcheetah-randomwalker2d-randomhopper-random2.11.69.836.93.712.231.913.013.335.47.025.17.311.431.21.912.22.51.510.22.24.910.6
10.8
halfcheetah-mediumwalker2d-mediumhopper-medium36.16.629.055.059.669.340.214.026.544.479.258.041.759.152.146.381.131.137.417.435.940.753.154.5
halfcheetah-medium-replaywalker2d-medium-replayhopper-medium-replay38.411.311.847.27.624.154.042.792.546.238.619.233.747.70.90.640.315.528.438.2
26.748.615.033.1
halfcheetah-medium-expertwalker2d-medium-experthopper-medium-expert35.86.4111.953.355.264.657.955.051.762.498.7111.053.440.196.341.981.60.852.753.827.164.757.5110.9
", + "type": "table", + "image_path": "31dde696c0594367a80d70f9fc4587080fb5a3e4444ebb5e37b594bb636d18eb.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 106, + 237, + 523, + 282.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 282.0, + 523, + 327.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 327.0, + 523, + 372.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 375, + 506, + 416 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "score": 1.0, + "content": "Table 2: Evaluation on D4RL MuJoCo locomotion datasets. The normalized score of BREMEN are averaged", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "over 4 random seeds. We refer the score of MOPO (Yu et al., 2020) and CQL (Kumar et al., 2020) from their", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "original papers. Other results are cited from Fu et al. (2020). BREMEN achieves the best and competitive score", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 406, + 370, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 370, + 417 + ], + "score": 1.0, + "content": "in several domains, while none of the algorithms beats all other methods.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + } + ], + "index": 14.75 + }, + { + "type": "title", + "bbox": [ + 108, + 439, + 492, + 466 + ], + "lines": [ + { + "bbox": [ + 104, + 438, + 494, + 454 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 494, + 454 + ], + "score": 1.0, + "content": "E INCORPORATING PESSIMISTIC MODEL-BASED OFFLINE METHODS INTO", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 453, + 182, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 453, + 182, + 466 + ], + "score": 1.0, + "content": "BREMEN", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 506, + 490 + ], + "score": 1.0, + "content": "The concurrent model-based offline RL methods prescribe the use of uncertainty-based penalties (Ki-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "dambi et al., 2020; Yu et al., 2020), which can be incorporated into BREMEN. We therefore", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 104, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "augmented BREMEN with either a hard (MOReL-like, green) or soft (MOPO-like, orange) reward", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "penalty according to model uncertainty. MOReL quantifies the uncertainty measuring the maximum", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "discrepancy of the prediction across the ensembles of the models and receives constant negative", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "reward (-5.0 in our experiments) if the discrepancy is larger than the threshold (we set 3.0). MOPO", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "measures the uncertainty by the maximum standard deviation of the model ensembles and uses this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "as a reward penalty with a coefficient (0.1 in our experiments). Evaluations in Figure 6 reveal that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "the soft reward penalty has notable results in Hopper and Walker2d, where model uncertainty is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "more crucial due to the episode’s termination. Hard reward penalty seems overly pessimistic in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 588, + 227, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 227, + 601 + ], + "score": 1.0, + "content": "deployment-efficient settings.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26 + }, + { + "type": "image", + "bbox": [ + 114, + 612, + 498, + 687 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 612, + 498, + 687 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 612, + 498, + 687 + ], + "spans": [ + { + "bbox": [ + 114, + 612, + 498, + 687 + ], + "score": 0.948, + "type": "image", + "image_path": "b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 114, + 612, + 498, + 637.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 114, + 637.0, + 498, + 662.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 114, + 662.0, + 498, + 687.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 690, + 505, + 720 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "Figure 6: Comparison to the pessimistic reward shaping incorporated into BREMEN. Soft reward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "penalty (MOPO-like, orange) performs well in the environments where the incomplete models appear to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 138, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 138, + 721 + ], + "score": 1.0, + "content": "be fatal.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "index": 34.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 439, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 441, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 441, + 96 + ], + "score": 1.0, + "content": "D EVALUATING OFFLINE PERFORMANCES ON D4RL DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "We compare BREMEN to MOPO (Yu et al., 2020), concurrently proposed model-based offline", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "methods penalized by model epistemic uncertainty, and state-of-the-art model-free offline algorithms,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 506, + 141 + ], + "score": 1.0, + "content": "namely, CQL (Kumar et al., 2020), BEAR (Kumar et al., 2019), BRAC (Wu et al., 2019), AWR (Peng", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "et al., 2019) and BCQ (Fujimoto et al., 2019), on the D4RL MuJoCo locomotion datasets (Fu et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "2020), used as standard offline RL benchmarks (Kumar et al., 2020; Nair et al., 2020). They have", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 173 + ], + "score": 1.0, + "content": "several types of offline data collected with different strategies. We choose the hyper parameters of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "score": 1.0, + "content": "BREMEN in Section 5.1 and F.2.2. Table 2 shows BREMEN beats recent state-of-the-art algorithms", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "with the highest normalized score (around 100 corresponds to an expert) in several tasks, while none", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "of the methods consistently achieves the best performance. This result suggests that the implicit", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 506, + 217 + ], + "score": 1.0, + "content": "regularization with the model-based method performs surprisingly well in offline settings despite of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 163, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 163, + 228 + ], + "score": 1.0, + "content": "its simplicity.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 105, + 506, + 228 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 237, + 523, + 372 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 237, + 523, + 372 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 237, + 523, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 523, + 372 + ], + "score": 0.983, + "html": "
Task NameBCBREMENMOPOCQLBEARBRAC-vAWRBCQ
halfcheetah-randomwalker2d-randomhopper-random2.11.69.836.93.712.231.913.013.335.47.025.17.311.431.21.912.22.51.510.22.24.910.6
10.8
halfcheetah-mediumwalker2d-mediumhopper-medium36.16.629.055.059.669.340.214.026.544.479.258.041.759.152.146.381.131.137.417.435.940.753.154.5
halfcheetah-medium-replaywalker2d-medium-replayhopper-medium-replay38.411.311.847.27.624.154.042.792.546.238.619.233.747.70.90.640.315.528.438.2
26.748.615.033.1
halfcheetah-medium-expertwalker2d-medium-experthopper-medium-expert35.86.4111.953.355.264.657.955.051.762.498.7111.053.440.196.341.981.60.852.753.827.164.757.5110.9
", + "type": "table", + "image_path": "31dde696c0594367a80d70f9fc4587080fb5a3e4444ebb5e37b594bb636d18eb.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 106, + 237, + 523, + 282.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 282.0, + 523, + 327.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 327.0, + 523, + 372.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 375, + 506, + 416 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "score": 1.0, + "content": "Table 2: Evaluation on D4RL MuJoCo locomotion datasets. The normalized score of BREMEN are averaged", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "over 4 random seeds. We refer the score of MOPO (Yu et al., 2020) and CQL (Kumar et al., 2020) from their", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "original papers. Other results are cited from Fu et al. (2020). BREMEN achieves the best and competitive score", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 406, + 370, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 370, + 417 + ], + "score": 1.0, + "content": "in several domains, while none of the algorithms beats all other methods.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + } + ], + "index": 14.75 + }, + { + "type": "title", + "bbox": [ + 108, + 439, + 492, + 466 + ], + "lines": [ + { + "bbox": [ + 104, + 438, + 494, + 454 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 494, + 454 + ], + "score": 1.0, + "content": "E INCORPORATING PESSIMISTIC MODEL-BASED OFFLINE METHODS INTO", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 453, + 182, + 466 + ], + "spans": [ + { + "bbox": [ + 126, + 453, + 182, + 466 + ], + "score": 1.0, + "content": "BREMEN", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 506, + 490 + ], + "score": 1.0, + "content": "The concurrent model-based offline RL methods prescribe the use of uncertainty-based penalties (Ki-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "dambi et al., 2020; Yu et al., 2020), which can be incorporated into BREMEN. We therefore", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 104, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "augmented BREMEN with either a hard (MOReL-like, green) or soft (MOPO-like, orange) reward", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "penalty according to model uncertainty. MOReL quantifies the uncertainty measuring the maximum", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "discrepancy of the prediction across the ensembles of the models and receives constant negative", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "reward (-5.0 in our experiments) if the discrepancy is larger than the threshold (we set 3.0). MOPO", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "measures the uncertainty by the maximum standard deviation of the model ensembles and uses this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "as a reward penalty with a coefficient (0.1 in our experiments). Evaluations in Figure 6 reveal that", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "the soft reward penalty has notable results in Hopper and Walker2d, where model uncertainty is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "more crucial due to the episode’s termination. Hard reward penalty seems overly pessimistic in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 588, + 227, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 227, + 601 + ], + "score": 1.0, + "content": "deployment-efficient settings.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 479, + 506, + 601 + ] + }, + { + "type": "image", + "bbox": [ + 114, + 612, + 498, + 687 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 612, + 498, + 687 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 612, + 498, + 687 + ], + "spans": [ + { + "bbox": [ + 114, + 612, + 498, + 687 + ], + "score": 0.948, + "type": "image", + "image_path": "b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 114, + 612, + 498, + 637.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 114, + 637.0, + 498, + 662.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 114, + 662.0, + 498, + 687.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 690, + 505, + 720 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "Figure 6: Comparison to the pessimistic reward shaping incorporated into BREMEN. Soft reward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "penalty (MOPO-like, orange) performs well in the environments where the incomplete models appear to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 138, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 138, + 721 + ], + "score": 1.0, + "content": "be fatal.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "index": 34.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 326, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 327, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 327, + 95 + ], + "score": 1.0, + "content": "F DETAILS OF EXPERIMENTAL SETTINGS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 106, + 248, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 249, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 249, + 118 + ], + "score": 1.0, + "content": "F.1 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 127, + 505, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "For our baseline methods, we use the open-source implementations of SAC, BC, BCQ, and BRAC", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 136, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 152 + ], + "score": 1.0, + "content": "published in Wu et al. (2019). SAC and BRAC have (300, 300) Q-Network and (200, 200) policy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "network. BC has (200, 200) policy network, and BCQ has (300, 300) Q-Network, (300, 300) policy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "network, and (750, 750) conditional VAE. As for online ME-TRPO, we utilize the codebase of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "score": 1.0, + "content": "model-based RL benchmark (Wang et al., 2019). BREMEN and online ME-TRPO use the policy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "score": 1.0, + "content": "consisting of two hidden layers with 200 units. The dynamics model also consists of two hidden", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "layers with 1,024 units. We use Adam (Kingma & Ba, 2014) as the optimizer with the learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "rate of 0.001 for the dynamics model, and 0.0005 for behavior cloning in BREMEN. Especially in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "score": 1.0, + "content": "BREMEN and online ME-TRPO, we adopt a linear feature value function to stabilize the training.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "BREMEN in deployment-efficient settings takes about two or three hours per deployment on an", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 236, + 187, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 187, + 248 + ], + "score": 1.0, + "content": "NVIDIA TITAN V.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "To leverage neural networks as Dyna-style (Sutton, 1991) dynamics models, we modify reward and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 264, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 506, + 276 + ], + "score": 1.0, + "content": "termination function so that they are not dependent on the internal physics engine for calculation,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "score": 1.0, + "content": "following model-based benchmark codebase (Wang et al., 2019); see Table 3. Note that the score of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "baselines (e.g., BCQ, BRAC) is slightly different from Wu et al. (2019) due to this modification of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 297, + 507, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 507, + 310 + ], + "score": 1.0, + "content": "the reward function. We re-run each algorithm in our environments and got appropriate convergence.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "The maximum length of one episode is 1,000 steps without any termination in Ant and HalfCheetah;", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "however, termination function is enabled in Hopper and Walker2d. The batch size of transitions for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "policy update is 50,000 in BREMEN and ME-TRPO, following Kurutach et al. (2018). The batch", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 347, + 424, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 424, + 358 + ], + "score": 1.0, + "content": "size of BC and BRAC is 256, and BCQ is 100, also following Wu et al. (2019).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "image", + "bbox": [ + 140, + 378, + 472, + 473 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 378, + 472, + 473 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 378, + 472, + 473 + ], + "spans": [ + { + "bbox": [ + 140, + 378, + 472, + 473 + ], + "score": 0.971, + "type": "image", + "image_path": "22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 140, + 378, + 472, + 409.6666666666667 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 140, + 409.6666666666667, + 472, + 441.33333333333337 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 140, + 441.33333333333337, + 472, + 473.00000000000006 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 153, + 477, + 456, + 487 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 475, + 458, + 489 + ], + "spans": [ + { + "bbox": [ + 153, + 475, + 458, + 489 + ], + "score": 1.0, + "content": "Figure 7: Four standard MuJoCo benchmark environments used in our experiments.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 24.0 + }, + { + "type": "table", + "bbox": [ + 128, + 504, + 483, + 566 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 504, + 483, + 566 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 504, + 483, + 566 + ], + "spans": [ + { + "bbox": [ + 128, + 504, + 483, + 566 + ], + "score": 0.976, + "html": "
EnvironmentRewardfunctionTerminationinrollouts
Antxt -0.1||atl²2-3.0 × (zt -0.57)² +1False
HalfCheetahxt -0.1||atll2False
Hopperxt - 0.001||atl2²+1True
Walker2dxt-0.001||atl2+1True
", + "type": "table", + "image_path": "c3dfc3126e61a5575c4040b8e48f97532d206a09c9889e721728d3fd7fd2dcf6.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 128, + 504, + 483, + 524.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 128, + 524.6666666666666, + 483, + 545.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 128, + 545.3333333333333, + 483, + 565.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 107, + 569, + 504, + 590 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "score": 1.0, + "content": "Table 3: Reward function and termination in rollouts in the experiments. We remove all contact information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 578, + 339, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 339, + 589 + ], + "score": 1.0, + "content": "from observation of Ant, basically following Wang et al. (2019).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "index": 28.25 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 326, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 327, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 327, + 95 + ], + "score": 1.0, + "content": "F DETAILS OF EXPERIMENTAL SETTINGS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 106, + 248, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 249, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 249, + 118 + ], + "score": 1.0, + "content": "F.1 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 127, + 505, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "For our baseline methods, we use the open-source implementations of SAC, BC, BCQ, and BRAC", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 136, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 152 + ], + "score": 1.0, + "content": "published in Wu et al. (2019). SAC and BRAC have (300, 300) Q-Network and (200, 200) policy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "network. BC has (200, 200) policy network, and BCQ has (300, 300) Q-Network, (300, 300) policy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "network, and (750, 750) conditional VAE. As for online ME-TRPO, we utilize the codebase of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "score": 1.0, + "content": "model-based RL benchmark (Wang et al., 2019). BREMEN and online ME-TRPO use the policy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "score": 1.0, + "content": "consisting of two hidden layers with 200 units. The dynamics model also consists of two hidden", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "layers with 1,024 units. We use Adam (Kingma & Ba, 2014) as the optimizer with the learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "rate of 0.001 for the dynamics model, and 0.0005 for behavior cloning in BREMEN. Especially in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "score": 1.0, + "content": "BREMEN and online ME-TRPO, we adopt a linear feature value function to stabilize the training.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "BREMEN in deployment-efficient settings takes about two or three hours per deployment on an", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 236, + 187, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 187, + 248 + ], + "score": 1.0, + "content": "NVIDIA TITAN V.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 126, + 506, + 248 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "To leverage neural networks as Dyna-style (Sutton, 1991) dynamics models, we modify reward and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 264, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 506, + 276 + ], + "score": 1.0, + "content": "termination function so that they are not dependent on the internal physics engine for calculation,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 286 + ], + "score": 1.0, + "content": "following model-based benchmark codebase (Wang et al., 2019); see Table 3. Note that the score of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "baselines (e.g., BCQ, BRAC) is slightly different from Wu et al. (2019) due to this modification of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 297, + 507, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 507, + 310 + ], + "score": 1.0, + "content": "the reward function. We re-run each algorithm in our environments and got appropriate convergence.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 253, + 507, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "The maximum length of one episode is 1,000 steps without any termination in Ant and HalfCheetah;", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "however, termination function is enabled in Hopper and Walker2d. The batch size of transitions for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "policy update is 50,000 in BREMEN and ME-TRPO, following Kurutach et al. (2018). The batch", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 347, + 424, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 424, + 358 + ], + "score": 1.0, + "content": "size of BC and BRAC is 256, and BCQ is 100, also following Wu et al. (2019).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 313, + 506, + 358 + ] + }, + { + "type": "image", + "bbox": [ + 140, + 378, + 472, + 473 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 378, + 472, + 473 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 378, + 472, + 473 + ], + "spans": [ + { + "bbox": [ + 140, + 378, + 472, + 473 + ], + "score": 0.971, + "type": "image", + "image_path": "22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 140, + 378, + 472, + 409.6666666666667 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 140, + 409.6666666666667, + 472, + 441.33333333333337 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 140, + 441.33333333333337, + 472, + 473.00000000000006 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 153, + 477, + 456, + 487 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 153, + 475, + 458, + 489 + ], + "spans": [ + { + "bbox": [ + 153, + 475, + 458, + 489 + ], + "score": 1.0, + "content": "Figure 7: Four standard MuJoCo benchmark environments used in our experiments.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 24.0 + }, + { + "type": "table", + "bbox": [ + 128, + 504, + 483, + 566 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 504, + 483, + 566 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 504, + 483, + 566 + ], + "spans": [ + { + "bbox": [ + 128, + 504, + 483, + 566 + ], + "score": 0.976, + "html": "
EnvironmentRewardfunctionTerminationinrollouts
Antxt -0.1||atl²2-3.0 × (zt -0.57)² +1False
HalfCheetahxt -0.1||atll2False
Hopperxt - 0.001||atl2²+1True
Walker2dxt-0.001||atl2+1True
", + "type": "table", + "image_path": "c3dfc3126e61a5575c4040b8e48f97532d206a09c9889e721728d3fd7fd2dcf6.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 128, + 504, + 483, + 524.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 128, + 524.6666666666666, + 483, + 545.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 128, + 545.3333333333333, + 483, + 565.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 107, + 569, + 504, + 590 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "score": 1.0, + "content": "Table 3: Reward function and termination in rollouts in the experiments. We remove all contact information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 578, + 339, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 339, + 589 + ], + "score": 1.0, + "content": "from observation of Ant, basically following Wang et al. (2019).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "index": 28.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 222, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 223, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 223, + 94 + ], + "score": 1.0, + "content": "F.2 HYPER PARAMETERS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "score": 1.0, + "content": "In this section, we describe the hyper-parameters in both deployment-efficient RL (Section F.2.1)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "and offline RL (Section F.2.2) settings. We run all of our experiments with five random seed, and the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 190, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 190, + 137 + ], + "score": 1.0, + "content": "results are averaged.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 148, + 263, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 148, + 265, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 265, + 161 + ], + "score": 1.0, + "content": "F.2.1 DEPLOYMENT-EFFICIENT RL", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 167, + 504, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "Table 4 shows the hyper-parameters of BREMEN. The rollout length is searched from {250, 500,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 178, + 504, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 131, + 190 + ], + "score": 0.54, + "content": "1 0 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 178, + 206, + 191 + ], + "score": 1.0, + "content": ", and max step size", + "type": "text" + }, + { + "bbox": [ + 206, + 179, + 212, + 189 + ], + "score": 0.72, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 178, + 496, + 191 + ], + "score": 1.0, + "content": "is searched from {0.001, 0.01, 0.05, 0.1, 1.0}. As for the discount factor", + "type": "text" + }, + { + "bbox": [ + 497, + 181, + 504, + 190 + ], + "score": 0.76, + "content": "\\gamma", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 190, + 278, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 146, + 202 + ], + "score": 1.0, + "content": "and GAE", + "type": "text" + }, + { + "bbox": [ + 146, + 190, + 153, + 200 + ], + "score": 0.69, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 190, + 278, + 202 + ], + "score": 1.0, + "content": ", we follow Wang et al. (2019).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "table", + "bbox": [ + 169, + 212, + 441, + 306 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 169, + 212, + 441, + 306 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 212, + 441, + 306 + ], + "spans": [ + { + "bbox": [ + 169, + 212, + 441, + 306 + ], + "score": 0.982, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Iteration per batch2,0002,0006.0002,000
Deployment551010
Total iteration10.00010.00060.00020.000
Rollouts length2502501,0001,000
Max step size δ0.050.10.050.05
Discount factor y0.990.990.990.99
GAE入0.970.950.950.95
Stationary noise o0.10.10.10.1
", + "type": "table", + "image_path": "5bde77e082d02bae1f8f57063a505c8389660c84c3e31f5bf115066a97eec5d1.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 169, + 212, + 441, + 243.33333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 169, + 243.33333333333334, + 441, + 274.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 169, + 274.6666666666667, + 441, + 306.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 172, + 308, + 438, + 320 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 171, + 307, + 438, + 322 + ], + "spans": [ + { + "bbox": [ + 171, + 307, + 438, + 322 + ], + "score": 1.0, + "content": "Table 4: Hyper-parameters of BREMEN in deployment-efficient settings.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 506, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "Number of Iterations for Policy Optimization To achieve high deployment efficiency, the number", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "of iterations for policy optimization between deployments is one of the important hyper-parameters", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 360, + 507, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 507, + 373 + ], + "score": 1.0, + "content": "for fast convergence. In the existing methods (BCQ, BRAC, SAC), we search over three values:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 371, + 507, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 507, + 384 + ], + "score": 1.0, + "content": "{10,000, 50,000, 100,000}, and choose 10,000 in BCQ and BRAC, and 100,000 in SAC (Figure 8).", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 382, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 395 + ], + "score": 1.0, + "content": "For BREMEN, we also search over three values: {2,000, 4,000, 6,000}. Figure 9 shows the results of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 392, + 491, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 491, + 406 + ], + "score": 1.0, + "content": "iteration search, and we choose 2,000 in Ant, HalfCheetah, and Walker2d, and 6,000 in Hopper.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "image", + "bbox": [ + 116, + 419, + 497, + 507 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 419, + 497, + 507 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 419, + 497, + 507 + ], + "spans": [ + { + "bbox": [ + 116, + 419, + 497, + 507 + ], + "score": 0.859, + "type": "image", + "image_path": "e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 116, + 419, + 497, + 448.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 116, + 448.3333333333333, + 497, + 477.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 116, + 477.66666666666663, + 497, + 506.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 511, + 504, + 532 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "Figure 8: Search on the number of iterations for SAC policy optimization between deployments. The number of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 521, + 263, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 238, + 531 + ], + "score": 1.0, + "content": "transitions per one data-collection is", + "type": "text" + }, + { + "bbox": [ + 239, + 521, + 260, + 531 + ], + "score": 0.28, + "content": "2 0 0 \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 521, + 263, + 531 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + } + ], + "index": 20.25 + }, + { + "type": "image", + "bbox": [ + 115, + 552, + 496, + 640 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 552, + 496, + 640 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 115, + 552, + 496, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 496, + 640 + ], + "score": 0.961, + "type": "image", + "image_path": "e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 115, + 552, + 496, + 581.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 115, + 581.3333333333334, + 496, + 610.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 115, + 610.6666666666667, + 496, + 640.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 644, + 506, + 665 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "score": 1.0, + "content": "Figure 9: Search on the number of iterations for BREMEN policy optimization between deployments. The", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 655, + 303, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 303, + 665 + ], + "score": 1.0, + "content": "number of transitions per one data-collection is 200K.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + } + ], + "index": 25.25 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 222, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 223, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 223, + 94 + ], + "score": 1.0, + "content": "F.2 HYPER PARAMETERS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "score": 1.0, + "content": "In this section, we describe the hyper-parameters in both deployment-efficient RL (Section F.2.1)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "and offline RL (Section F.2.2) settings. We run all of our experiments with five random seed, and the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 190, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 190, + 137 + ], + "score": 1.0, + "content": "results are averaged.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 102, + 506, + 137 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 148, + 263, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 148, + 265, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 265, + 161 + ], + "score": 1.0, + "content": "F.2.1 DEPLOYMENT-EFFICIENT RL", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 167, + 504, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "Table 4 shows the hyper-parameters of BREMEN. The rollout length is searched from {250, 500,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 178, + 504, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 179, + 131, + 190 + ], + "score": 0.54, + "content": "1 0 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 178, + 206, + 191 + ], + "score": 1.0, + "content": ", and max step size", + "type": "text" + }, + { + "bbox": [ + 206, + 179, + 212, + 189 + ], + "score": 0.72, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 178, + 496, + 191 + ], + "score": 1.0, + "content": "is searched from {0.001, 0.01, 0.05, 0.1, 1.0}. As for the discount factor", + "type": "text" + }, + { + "bbox": [ + 497, + 181, + 504, + 190 + ], + "score": 0.76, + "content": "\\gamma", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 190, + 278, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 146, + 202 + ], + "score": 1.0, + "content": "and GAE", + "type": "text" + }, + { + "bbox": [ + 146, + 190, + 153, + 200 + ], + "score": 0.69, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 190, + 278, + 202 + ], + "score": 1.0, + "content": ", we follow Wang et al. (2019).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 167, + 506, + 202 + ] + }, + { + "type": "table", + "bbox": [ + 169, + 212, + 441, + 306 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 169, + 212, + 441, + 306 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 212, + 441, + 306 + ], + "spans": [ + { + "bbox": [ + 169, + 212, + 441, + 306 + ], + "score": 0.982, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Iteration per batch2,0002,0006.0002,000
Deployment551010
Total iteration10.00010.00060.00020.000
Rollouts length2502501,0001,000
Max step size δ0.050.10.050.05
Discount factor y0.990.990.990.99
GAE入0.970.950.950.95
Stationary noise o0.10.10.10.1
", + "type": "table", + "image_path": "5bde77e082d02bae1f8f57063a505c8389660c84c3e31f5bf115066a97eec5d1.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 169, + 212, + 441, + 243.33333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 169, + 243.33333333333334, + 441, + 274.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 169, + 274.6666666666667, + 441, + 306.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 172, + 308, + 438, + 320 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 171, + 307, + 438, + 322 + ], + "spans": [ + { + "bbox": [ + 171, + 307, + 438, + 322 + ], + "score": 1.0, + "content": "Table 4: Hyper-parameters of BREMEN in deployment-efficient settings.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 506, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "Number of Iterations for Policy Optimization To achieve high deployment efficiency, the number", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "of iterations for policy optimization between deployments is one of the important hyper-parameters", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 360, + 507, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 507, + 373 + ], + "score": 1.0, + "content": "for fast convergence. In the existing methods (BCQ, BRAC, SAC), we search over three values:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 371, + 507, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 507, + 384 + ], + "score": 1.0, + "content": "{10,000, 50,000, 100,000}, and choose 10,000 in BCQ and BRAC, and 100,000 in SAC (Figure 8).", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 382, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 395 + ], + "score": 1.0, + "content": "For BREMEN, we also search over three values: {2,000, 4,000, 6,000}. Figure 9 shows the results of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 392, + 491, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 491, + 406 + ], + "score": 1.0, + "content": "iteration search, and we choose 2,000 in Ant, HalfCheetah, and Walker2d, and 6,000 in Hopper.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 338, + 507, + 406 + ] + }, + { + "type": "image", + "bbox": [ + 116, + 419, + 497, + 507 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 419, + 497, + 507 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 419, + 497, + 507 + ], + "spans": [ + { + "bbox": [ + 116, + 419, + 497, + 507 + ], + "score": 0.859, + "type": "image", + "image_path": "e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 116, + 419, + 497, + 448.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 116, + 448.3333333333333, + 497, + 477.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 116, + 477.66666666666663, + 497, + 506.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 511, + 504, + 532 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "Figure 8: Search on the number of iterations for SAC policy optimization between deployments. The number of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 521, + 263, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 238, + 531 + ], + "score": 1.0, + "content": "transitions per one data-collection is", + "type": "text" + }, + { + "bbox": [ + 239, + 521, + 260, + 531 + ], + "score": 0.28, + "content": "2 0 0 \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 521, + 263, + 531 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + } + ], + "index": 20.25 + }, + { + "type": "image", + "bbox": [ + 115, + 552, + 496, + 640 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 552, + 496, + 640 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 115, + 552, + 496, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 496, + 640 + ], + "score": 0.961, + "type": "image", + "image_path": "e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 115, + 552, + 496, + 581.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 115, + 581.3333333333334, + 496, + 610.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 115, + 610.6666666666667, + 496, + 640.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 644, + 506, + 665 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 655 + ], + "score": 1.0, + "content": "Figure 9: Search on the number of iterations for BREMEN policy optimization between deployments. The", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 655, + 303, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 303, + 665 + ], + "score": 1.0, + "content": "number of transitions per one data-collection is 200K.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + } + ], + "index": 25.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Stationary Noise in BREMEN To achieve effective exploration, the stochastic Gaussian policy", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 104, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "is a good choice. We found that adding stationary Gaussian noise to the policy in the imaginary", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "trajectories and data collection led to the notable improvement. Stationary Gaussian policy is written", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 121, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 121, + 128 + ], + "score": 1.0, + "content": "as,", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 124, + 394, + 139 + ], + "lines": [ + { + "bbox": [ + 217, + 124, + 394, + 139 + ], + "spans": [ + { + "bbox": [ + 217, + 124, + 394, + 139 + ], + "score": 0.91, + "content": "a _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "1486e0d667bf2f8e17e0cefd8e07b39e41c2baf506d7618fd466feb8080a194d.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 217, + 124, + 394, + 139 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 141, + 504, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 407, + 154 + ], + "score": 1.0, + "content": "Another choice is a learned Gaussian policy, which parameterizes not only", + "type": "text" + }, + { + "bbox": [ + 407, + 143, + 419, + 153 + ], + "score": 0.84, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 141, + 454, + 154 + ], + "score": 1.0, + "content": "but also", + "type": "text" + }, + { + "bbox": [ + 454, + 143, + 465, + 152 + ], + "score": 0.84, + "content": "\\sigma _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 141, + 505, + 154 + ], + "score": 1.0, + "content": ". Learned", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 243, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 243, + 165 + ], + "score": 1.0, + "content": "gaussian policy is also written as,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 168, + 413, + 183 + ], + "lines": [ + { + "bbox": [ + 198, + 168, + 413, + 183 + ], + "spans": [ + { + "bbox": [ + 198, + 168, + 413, + 183 + ], + "score": 0.89, + "content": "a _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\sigma _ { \\theta } ( s _ { t } ) \\odot \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "398fcde4eaed74b5a84d11c3a19eb0c34bd1dd1bba4a64a1aaccbee32ce8a45e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 198, + 168, + 413, + 183 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 506, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 242, + 201 + ], + "score": 1.0, + "content": "We utilize the zero-mean Gaussian", + "type": "text" + }, + { + "bbox": [ + 242, + 187, + 280, + 200 + ], + "score": 0.93, + "content": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 186, + 330, + 201 + ], + "score": 1.0, + "content": ", and tune up", + "type": "text" + }, + { + "bbox": [ + 330, + 190, + 338, + 198 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 186, + 506, + 201 + ], + "score": 1.0, + "content": "in Figure 10 with HalfCheetah, comparing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "stationary and learned strategies. From this experiment, we found that the stationary noise, the scale", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 439, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 439, + 221 + ], + "score": 1.0, + "content": "of 0.1, consistently performs well, and therefore we used it for all our experiments.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "image", + "bbox": [ + 165, + 234, + 444, + 380 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 234, + 444, + 380 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 234, + 444, + 380 + ], + "spans": [ + { + "bbox": [ + 165, + 234, + 444, + 380 + ], + "score": 0.971, + "type": "image", + "image_path": "e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 165, + 234, + 444, + 282.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 282.6666666666667, + 444, + 331.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 165, + 331.33333333333337, + 444, + 380.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 388, + 504, + 409 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 386, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 302, + 401 + ], + "score": 1.0, + "content": "Figure 10: Search on the Gaussian noise parameter", + "type": "text" + }, + { + "bbox": [ + 302, + 390, + 309, + 397 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 386, + 505, + 401 + ], + "score": 1.0, + "content": "in HalfCheetah. The number of transitions per one", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 397, + 195, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 195, + 408 + ], + "score": 1.0, + "content": "data-collection is 200K.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + } + ], + "index": 13.25 + }, + { + "type": "text", + "bbox": [ + 106, + 427, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "Other Hyper-parameters in the Existing Methods As for online ME-TRPO, we collect 3,000", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "steps through online interaction with the environment per 25 iterations and split these transitions into", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 450, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 461 + ], + "score": 1.0, + "content": "a 2-to-1 ratio of training and validation dataset for learning dynamics models. In batch size 100,000", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 459, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 104, + 459, + 506, + 474 + ], + "score": 1.0, + "content": "settings, we collect 2,000 steps and split with 1-to-1 ratio. Totally, we iterate 12,500 times policy", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "optimization, which is equivalent to 500 deployments of the policy. Note that we carefully tune up", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "the hyper-parameters of online ME-TRPO, and the performance is improved from Wang et al. (2019).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "Table 5 and Table 6 shows the tunable hyper-parameters of BCQ and BRAC, respectively. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "refer Wu et al. (2019) to choose these values. In this work, BRAC applies a primal form of KL value", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum according to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 532, + 201, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 201, + 545 + ], + "score": 1.0, + "content": "the learned Q function.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "table", + "bbox": [ + 167, + 554, + 442, + 588 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 167, + 554, + 442, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 554, + 442, + 588 + ], + "spans": [ + { + "bbox": [ + 167, + 554, + 442, + 588 + ], + "score": 0.969, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate3e-053e-043e-063e-05
Perturbation range Φ0.150.50.150.15
", + "type": "table", + "image_path": "2dc726091fb37dcc6a4987593fc89d0964cd16c8650d4f3f0031be344dce1213.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 167, + 554, + 442, + 565.3333333333334 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 167, + 565.3333333333334, + 442, + 576.6666666666667 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 167, + 576.6666666666667, + 442, + 588.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 240, + 591, + 370, + 602 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 239, + 591, + 371, + 604 + ], + "spans": [ + { + "bbox": [ + 239, + 591, + 371, + 604 + ], + "score": 1.0, + "content": "Table 5: Hyper-parameters of BCQ.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + } + ], + "index": 28.0 + }, + { + "type": "table", + "bbox": [ + 169, + 620, + 442, + 653 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 169, + 620, + 442, + 653 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 169, + 620, + 442, + 653 + ], + "spans": [ + { + "bbox": [ + 169, + 620, + 442, + 653 + ], + "score": 0.97, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate1e-41e-33e-51e-5
Divergence penalty α0.30.10.30.3
", + "type": "table", + "image_path": "cef09bad5b8d3e3b5d0b86ce182a0c4eaca4c96fbcfb6f4abd7c8531617b6820.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 169, + 620, + 442, + 631.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 169, + 631.0, + 442, + 642.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 169, + 642.0, + 442, + 653.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 238, + 657, + 373, + 667 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 237, + 656, + 374, + 669 + ], + "spans": [ + { + "bbox": [ + 237, + 656, + 374, + 669 + ], + "score": 1.0, + "content": "Table 6: Hyper-parameters of BRAC.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + } + ], + "index": 32.0 + } + ], + "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": [ + 106, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Stationary Noise in BREMEN To achieve effective exploration, the stochastic Gaussian policy", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 104, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "is a good choice. We found that adding stationary Gaussian noise to the policy in the imaginary", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "trajectories and data collection led to the notable improvement. Stationary Gaussian policy is written", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 121, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 121, + 128 + ], + "score": 1.0, + "content": "as,", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 104, + 82, + 506, + 128 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 124, + 394, + 139 + ], + "lines": [ + { + "bbox": [ + 217, + 124, + 394, + 139 + ], + "spans": [ + { + "bbox": [ + 217, + 124, + 394, + 139 + ], + "score": 0.91, + "content": "a _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "1486e0d667bf2f8e17e0cefd8e07b39e41c2baf506d7618fd466feb8080a194d.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 217, + 124, + 394, + 139 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 141, + 504, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 407, + 154 + ], + "score": 1.0, + "content": "Another choice is a learned Gaussian policy, which parameterizes not only", + "type": "text" + }, + { + "bbox": [ + 407, + 143, + 419, + 153 + ], + "score": 0.84, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 141, + 454, + 154 + ], + "score": 1.0, + "content": "but also", + "type": "text" + }, + { + "bbox": [ + 454, + 143, + 465, + 152 + ], + "score": 0.84, + "content": "\\sigma _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 141, + 505, + 154 + ], + "score": 1.0, + "content": ". Learned", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 243, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 243, + 165 + ], + "score": 1.0, + "content": "gaussian policy is also written as,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 141, + 505, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 168, + 413, + 183 + ], + "lines": [ + { + "bbox": [ + 198, + 168, + 413, + 183 + ], + "spans": [ + { + "bbox": [ + 198, + 168, + 413, + 183 + ], + "score": 0.89, + "content": "a _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\sigma _ { \\theta } ( s _ { t } ) \\odot \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "398fcde4eaed74b5a84d11c3a19eb0c34bd1dd1bba4a64a1aaccbee32ce8a45e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 198, + 168, + 413, + 183 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 506, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 242, + 201 + ], + "score": 1.0, + "content": "We utilize the zero-mean Gaussian", + "type": "text" + }, + { + "bbox": [ + 242, + 187, + 280, + 200 + ], + "score": 0.93, + "content": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 186, + 330, + 201 + ], + "score": 1.0, + "content": ", and tune up", + "type": "text" + }, + { + "bbox": [ + 330, + 190, + 338, + 198 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 186, + 506, + 201 + ], + "score": 1.0, + "content": "in Figure 10 with HalfCheetah, comparing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "stationary and learned strategies. From this experiment, we found that the stationary noise, the scale", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 439, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 439, + 221 + ], + "score": 1.0, + "content": "of 0.1, consistently performs well, and therefore we used it for all our experiments.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 186, + 506, + 221 + ] + }, + { + "type": "image", + "bbox": [ + 165, + 234, + 444, + 380 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 234, + 444, + 380 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 234, + 444, + 380 + ], + "spans": [ + { + "bbox": [ + 165, + 234, + 444, + 380 + ], + "score": 0.971, + "type": "image", + "image_path": "e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 165, + 234, + 444, + 282.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 282.6666666666667, + 444, + 331.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 165, + 331.33333333333337, + 444, + 380.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 388, + 504, + 409 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 386, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 302, + 401 + ], + "score": 1.0, + "content": "Figure 10: Search on the Gaussian noise parameter", + "type": "text" + }, + { + "bbox": [ + 302, + 390, + 309, + 397 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 386, + 505, + 401 + ], + "score": 1.0, + "content": "in HalfCheetah. The number of transitions per one", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 397, + 195, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 195, + 408 + ], + "score": 1.0, + "content": "data-collection is 200K.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + } + ], + "index": 13.25 + }, + { + "type": "text", + "bbox": [ + 106, + 427, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "Other Hyper-parameters in the Existing Methods As for online ME-TRPO, we collect 3,000", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 451 + ], + "score": 1.0, + "content": "steps through online interaction with the environment per 25 iterations and split these transitions into", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 450, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 461 + ], + "score": 1.0, + "content": "a 2-to-1 ratio of training and validation dataset for learning dynamics models. In batch size 100,000", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 459, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 104, + 459, + 506, + 474 + ], + "score": 1.0, + "content": "settings, we collect 2,000 steps and split with 1-to-1 ratio. Totally, we iterate 12,500 times policy", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "optimization, which is equivalent to 500 deployments of the policy. Note that we carefully tune up", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "the hyper-parameters of online ME-TRPO, and the performance is improved from Wang et al. (2019).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 428, + 506, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "Table 5 and Table 6 shows the tunable hyper-parameters of BCQ and BRAC, respectively. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "refer Wu et al. (2019) to choose these values. In this work, BRAC applies a primal form of KL value", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum according to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 532, + 201, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 201, + 545 + ], + "score": 1.0, + "content": "the learned Q function.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 498, + 506, + 545 + ] + }, + { + "type": "table", + "bbox": [ + 167, + 554, + 442, + 588 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 167, + 554, + 442, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 554, + 442, + 588 + ], + "spans": [ + { + "bbox": [ + 167, + 554, + 442, + 588 + ], + "score": 0.969, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate3e-053e-043e-063e-05
Perturbation range Φ0.150.50.150.15
", + "type": "table", + "image_path": "2dc726091fb37dcc6a4987593fc89d0964cd16c8650d4f3f0031be344dce1213.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 167, + 554, + 442, + 565.3333333333334 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 167, + 565.3333333333334, + 442, + 576.6666666666667 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 167, + 576.6666666666667, + 442, + 588.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 240, + 591, + 370, + 602 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 239, + 591, + 371, + 604 + ], + "spans": [ + { + "bbox": [ + 239, + 591, + 371, + 604 + ], + "score": 1.0, + "content": "Table 5: Hyper-parameters of BCQ.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + } + ], + "index": 28.0 + }, + { + "type": "table", + "bbox": [ + 169, + 620, + 442, + 653 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 169, + 620, + 442, + 653 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 169, + 620, + 442, + 653 + ], + "spans": [ + { + "bbox": [ + 169, + 620, + 442, + 653 + ], + "score": 0.97, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate1e-41e-33e-51e-5
Divergence penalty α0.30.10.30.3
", + "type": "table", + "image_path": "cef09bad5b8d3e3b5d0b86ce182a0c4eaca4c96fbcfb6f4abd7c8531617b6820.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 169, + 620, + 442, + 631.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 169, + 631.0, + 442, + 642.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 169, + 642.0, + 442, + 653.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 238, + 657, + 373, + 667 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 237, + 656, + 374, + 669 + ], + "spans": [ + { + "bbox": [ + 237, + 656, + 374, + 669 + ], + "score": 1.0, + "content": "Table 6: Hyper-parameters of BRAC.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + } + ], + "index": 32.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 192, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 195, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 195, + 96 + ], + "score": 1.0, + "content": "F.2.2 OFFLINE RL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 505, + 115 + ], + "score": 1.0, + "content": "In the offline experiments, we apply the same hyper-parameters as in the deployment-efficient settings", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "score": 1.0, + "content": "described above, except for the iteration per batch. Algorithm 2 is pseudocode for BREMEN in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 124, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 136 + ], + "score": 1.0, + "content": "offline RL settings where policies are updated only with one fixed batch dataset. The number of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 134, + 420, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 142, + 147 + ], + "score": 1.0, + "content": "iteration", + "type": "text" + }, + { + "bbox": [ + 142, + 135, + 151, + 145 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 134, + 420, + 147 + ], + "score": 1.0, + "content": "is set to 6,250 in BREMEN, and 500,000 in BC, BCQ, and BRAC.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 172, + 164 + ], + "score": 1.0, + "content": "The datasets for", + "type": "text" + }, + { + "bbox": [ + 173, + 152, + 190, + 162 + ], + "score": 0.26, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 151, + 201, + 164 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 201, + 152, + 223, + 162 + ], + "score": 0.55, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "experiments are sliced from the beginning of the 1M batched datasets", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 419, + 173 + ], + "score": 1.0, + "content": "without shuffling, but we observed that the distribution of rewards in 50k or", + "type": "text" + }, + { + "bbox": [ + 420, + 163, + 441, + 173 + ], + "score": 0.26, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 162, + 504, + 173 + ], + "score": 1.0, + "content": "is not different", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 148, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 148, + 185 + ], + "score": 1.0, + "content": "from 1M.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 195, + 253, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 255, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 255, + 208 + ], + "score": 1.0, + "content": "Algorithm 2 BREMEN for Offline RL", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 108, + 210, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 192, + 223 + ], + "score": 1.0, + "content": "Input: Offline dataset", + "type": "text" + }, + { + "bbox": [ + 192, + 210, + 276, + 222 + ], + "score": 0.9, + "content": "\\mathcal { D } = \\{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 209, + 348, + 223 + ], + "score": 1.0, + "content": ", Initial parameters", + "type": "text" + }, + { + "bbox": [ + 348, + 210, + 422, + 222 + ], + "score": 0.89, + "content": "\\phi = \\{ \\phi _ { 1 } , \\cdot \\cdot \\cdot , \\phi _ { K } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 209, + 426, + 223 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 211, + 433, + 222 + ], + "score": 0.61, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 209, + 505, + 223 + ], + "score": 1.0, + "content": ", Number of policy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 121, + 221, + 180, + 231 + ], + "spans": [ + { + "bbox": [ + 121, + 221, + 169, + 231 + ], + "score": 1.0, + "content": "optimization", + "type": "text" + }, + { + "bbox": [ + 169, + 221, + 177, + 230 + ], + "score": 0.7, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 221, + 180, + 231 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 230, + 318, + 243 + ], + "spans": [ + { + "bbox": [ + 110, + 232, + 143, + 243 + ], + "score": 1.0, + "content": "1: Train", + "type": "text" + }, + { + "bbox": [ + 143, + 232, + 153, + 241 + ], + "score": 0.77, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 232, + 218, + 243 + ], + "score": 1.0, + "content": "dynamics models", + "type": "text" + }, + { + "bbox": [ + 219, + 230, + 229, + 243 + ], + "score": 0.89, + "content": "\\hat { f } _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 232, + 252, + 243 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 252, + 232, + 261, + 241 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 232, + 318, + 243 + ], + "score": 1.0, + "content": "via Equation 1.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 109, + 241, + 412, + 254 + ], + "spans": [ + { + "bbox": [ + 109, + 241, + 237, + 254 + ], + "score": 1.0, + "content": "2: Train estimated behavior policy", + "type": "text" + }, + { + "bbox": [ + 238, + 243, + 249, + 253 + ], + "score": 0.85, + "content": "\\hat { \\pi } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 241, + 271, + 254 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 272, + 243, + 280, + 252 + ], + "score": 0.79, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 241, + 412, + 254 + ], + "score": 1.0, + "content": "by behavior cloning via Equation 3.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 109, + 251, + 290, + 264 + ], + "spans": [ + { + "bbox": [ + 109, + 251, + 203, + 264 + ], + "score": 1.0, + "content": "3: Initialize target policy", + "type": "text" + }, + { + "bbox": [ + 203, + 253, + 285, + 263 + ], + "score": 0.88, + "content": "\\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 251, + 290, + 264 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 108, + 261, + 273, + 274 + ], + "spans": [ + { + "bbox": [ + 108, + 261, + 207, + 274 + ], + "score": 1.0, + "content": "4: for policy optimization", + "type": "text" + }, + { + "bbox": [ + 207, + 263, + 259, + 272 + ], + "score": 0.87, + "content": "k = 1 , \\cdots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 261, + 273, + 274 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 109, + 271, + 234, + 284 + ], + "spans": [ + { + "bbox": [ + 109, + 271, + 120, + 284 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 271, + 234, + 284 + ], + "score": 1.0, + "content": "Generate imaginary rollout.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 109, + 281, + 365, + 294 + ], + "spans": [ + { + "bbox": [ + 109, + 281, + 120, + 293 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 129, + 281, + 214, + 294 + ], + "score": 1.0, + "content": "Optimize target policy", + "type": "text" + }, + { + "bbox": [ + 214, + 284, + 225, + 292 + ], + "score": 0.83, + "content": "\\pi \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 281, + 365, + 294 + ], + "score": 1.0, + "content": "satisfying Equation 4 with the rollout.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.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": "title", + "bbox": [ + 107, + 82, + 192, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 195, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 195, + 96 + ], + "score": 1.0, + "content": "F.2.2 OFFLINE RL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 505, + 115 + ], + "score": 1.0, + "content": "In the offline experiments, we apply the same hyper-parameters as in the deployment-efficient settings", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "score": 1.0, + "content": "described above, except for the iteration per batch. Algorithm 2 is pseudocode for BREMEN in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 124, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 136 + ], + "score": 1.0, + "content": "offline RL settings where policies are updated only with one fixed batch dataset. The number of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 134, + 420, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 142, + 147 + ], + "score": 1.0, + "content": "iteration", + "type": "text" + }, + { + "bbox": [ + 142, + 135, + 151, + 145 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 134, + 420, + 147 + ], + "score": 1.0, + "content": "is set to 6,250 in BREMEN, and 500,000 in BC, BCQ, and BRAC.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 101, + 506, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 504, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 172, + 164 + ], + "score": 1.0, + "content": "The datasets for", + "type": "text" + }, + { + "bbox": [ + 173, + 152, + 190, + 162 + ], + "score": 0.26, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 151, + 201, + 164 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 201, + 152, + 223, + 162 + ], + "score": 0.55, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "experiments are sliced from the beginning of the 1M batched datasets", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 419, + 173 + ], + "score": 1.0, + "content": "without shuffling, but we observed that the distribution of rewards in 50k or", + "type": "text" + }, + { + "bbox": [ + 420, + 163, + 441, + 173 + ], + "score": 0.26, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 162, + 504, + 173 + ], + "score": 1.0, + "content": "is not different", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 148, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 148, + 185 + ], + "score": 1.0, + "content": "from 1M.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 151, + 505, + 185 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 195, + 253, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 255, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 255, + 208 + ], + "score": 1.0, + "content": "Algorithm 2 BREMEN for Offline RL", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "list", + "bbox": [ + 108, + 210, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 192, + 223 + ], + "score": 1.0, + "content": "Input: Offline dataset", + "type": "text" + }, + { + "bbox": [ + 192, + 210, + 276, + 222 + ], + "score": 0.9, + "content": "\\mathcal { D } = \\{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 209, + 348, + 223 + ], + "score": 1.0, + "content": ", Initial parameters", + "type": "text" + }, + { + "bbox": [ + 348, + 210, + 422, + 222 + ], + "score": 0.89, + "content": "\\phi = \\{ \\phi _ { 1 } , \\cdot \\cdot \\cdot , \\phi _ { K } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 209, + 426, + 223 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 211, + 433, + 222 + ], + "score": 0.61, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 209, + 505, + 223 + ], + "score": 1.0, + "content": ", Number of policy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 121, + 221, + 180, + 231 + ], + "spans": [ + { + "bbox": [ + 121, + 221, + 169, + 231 + ], + "score": 1.0, + "content": "optimization", + "type": "text" + }, + { + "bbox": [ + 169, + 221, + 177, + 230 + ], + "score": 0.7, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 221, + 180, + 231 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 230, + 318, + 243 + ], + "spans": [ + { + "bbox": [ + 110, + 232, + 143, + 243 + ], + "score": 1.0, + "content": "1: Train", + "type": "text" + }, + { + "bbox": [ + 143, + 232, + 153, + 241 + ], + "score": 0.77, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 232, + 218, + 243 + ], + "score": 1.0, + "content": "dynamics models", + "type": "text" + }, + { + "bbox": [ + 219, + 230, + 229, + 243 + ], + "score": 0.89, + "content": "\\hat { f } _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 232, + 252, + 243 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 252, + 232, + 261, + 241 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 232, + 318, + 243 + ], + "score": 1.0, + "content": "via Equation 1.", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 241, + 412, + 254 + ], + "spans": [ + { + "bbox": [ + 109, + 241, + 237, + 254 + ], + "score": 1.0, + "content": "2: Train estimated behavior policy", + "type": "text" + }, + { + "bbox": [ + 238, + 243, + 249, + 253 + ], + "score": 0.85, + "content": "\\hat { \\pi } _ { \\beta }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 241, + 271, + 254 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 272, + 243, + 280, + 252 + ], + "score": 0.79, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 241, + 412, + 254 + ], + "score": 1.0, + "content": "by behavior cloning via Equation 3.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 251, + 290, + 264 + ], + "spans": [ + { + "bbox": [ + 109, + 251, + 203, + 264 + ], + "score": 1.0, + "content": "3: Initialize target policy", + "type": "text" + }, + { + "bbox": [ + 203, + 253, + 285, + 263 + ], + "score": 0.88, + "content": "\\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 251, + 290, + 264 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 261, + 273, + 274 + ], + "spans": [ + { + "bbox": [ + 108, + 261, + 207, + 274 + ], + "score": 1.0, + "content": "4: for policy optimization", + "type": "text" + }, + { + "bbox": [ + 207, + 263, + 259, + 272 + ], + "score": 0.87, + "content": "k = 1 , \\cdots , T", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 261, + 273, + 274 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 271, + 234, + 284 + ], + "spans": [ + { + "bbox": [ + 109, + 271, + 120, + 284 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 271, + 234, + 284 + ], + "score": 1.0, + "content": "Generate imaginary rollout.", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 281, + 365, + 294 + ], + "spans": [ + { + "bbox": [ + 109, + 281, + 120, + 293 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 129, + 281, + 214, + 294 + ], + "score": 1.0, + "content": "Optimize target policy", + "type": "text" + }, + { + "bbox": [ + 214, + 284, + 225, + 292 + ], + "score": 0.83, + "content": "\\pi \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 281, + 365, + 294 + ], + "score": 1.0, + "content": "satisfying Equation 4 with the rollout.", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 209, + 505, + 294 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 330, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 330, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 330, + 95 + ], + "score": 1.0, + "content": "G ADDITIONAL EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 381, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 383, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 383, + 118 + ], + "score": 1.0, + "content": "G.1 PERFORMANCE ON THE DATASET WITH DIFFERENT NOISE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 126, + 506, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "Following Wu et al. (2019) and Kidambi et al. (2020), we additionally compare BREMEN in offline", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 136, + 507, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 507, + 151 + ], + "score": 1.0, + "content": "settings to the other baselines (BC, BCQ, BRAC) with five datasets of different exploration noise.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 149, + 288, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 288, + 160 + ], + "score": 1.0, + "content": "Each dataset has also one million transitions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 132, + 169, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 132, + 170, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 132, + 170, + 167, + 182 + ], + "score": 1.0, + "content": "• eps1:", + "type": "text" + }, + { + "bbox": [ + 167, + 170, + 188, + 180 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 170, + 506, + 182 + ], + "score": 1.0, + "content": "of the dataset is collected by data-collection policy (partially trained SAC policy)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 142, + 180, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 142, + 182, + 153, + 191 + ], + "score": 0.8, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 180, + 156, + 193 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 157, + 181, + 179, + 191 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 180, + 403, + 193 + ], + "score": 1.0, + "content": "of the dataset is collected by epsilon greedy policy with", + "type": "text" + }, + { + "bbox": [ + 403, + 181, + 435, + 191 + ], + "score": 0.91, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 180, + 505, + 193 + ], + "score": 1.0, + "content": "to take a random", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 191, + 429, + 205 + ], + "spans": [ + { + "bbox": [ + 141, + 191, + 188, + 205 + ], + "score": 1.0, + "content": "action, and", + "type": "text" + }, + { + "bbox": [ + 189, + 192, + 210, + 202 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 191, + 429, + 205 + ], + "score": 1.0, + "content": "of dataset is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 133, + 206, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 133, + 207, + 228, + 218 + ], + "score": 1.0, + "content": "• eps3: Same as eps1,", + "type": "text" + }, + { + "bbox": [ + 228, + 206, + 251, + 217 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 207, + 371, + 218 + ], + "score": 1.0, + "content": "of the dataset is collected by", + "type": "text" + }, + { + "bbox": [ + 372, + 208, + 383, + 217 + ], + "score": 0.82, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 207, + 387, + 218 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 387, + 206, + 410, + 217 + ], + "score": 0.84, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "is collected by epsilon", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 217, + 471, + 230 + ], + "spans": [ + { + "bbox": [ + 141, + 218, + 219, + 230 + ], + "score": 1.0, + "content": "greedy policy with", + "type": "text" + }, + { + "bbox": [ + 219, + 218, + 251, + 228 + ], + "score": 0.9, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 218, + 271, + 230 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 271, + 217, + 293, + 228 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 218, + 471, + 230 + ], + "score": 1.0, + "content": "is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 189, + 244 + ], + "score": 1.0, + "content": "gaussian1:", + "type": "text" + }, + { + "bbox": [ + 190, + 232, + 212, + 243 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 232, + 419, + 244 + ], + "score": 1.0, + "content": "of the dataset is collected by data-collection policy", + "type": "text" + }, + { + "bbox": [ + 419, + 234, + 430, + 243 + ], + "score": 0.82, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 232, + 433, + 244 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 434, + 232, + 456, + 243 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "is collected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 361, + 256 + ], + "score": 1.0, + "content": "by the policy with adding zero-mean Gaussian noise", + "type": "text" + }, + { + "bbox": [ + 361, + 243, + 406, + 255 + ], + "score": 0.93, + "content": "\\mathcal { N } ( 0 , 0 . \\bar { 1 } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "to each action sampled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 253, + 395, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 164, + 268 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 164, + 256, + 175, + 265 + ], + "score": 0.84, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 253, + 195, + 268 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 196, + 254, + 218, + 264 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 253, + 395, + 268 + ], + "score": 1.0, + "content": "is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 132, + 269, + 189, + 282 + ], + "score": 1.0, + "content": "• gaussian3:", + "type": "text" + }, + { + "bbox": [ + 189, + 270, + 211, + 280 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 269, + 410, + 282 + ], + "score": 1.0, + "content": "of the dataset is collected by data-collection policy", + "type": "text" + }, + { + "bbox": [ + 410, + 271, + 421, + 280 + ], + "score": 0.82, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 269, + 424, + 282 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 425, + 270, + 446, + 280 + ], + "score": 0.84, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "is collected by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 307, + 293 + ], + "score": 1.0, + "content": "the policy with zero-mean Gaussian noise", + "type": "text" + }, + { + "bbox": [ + 307, + 280, + 352, + 292 + ], + "score": 0.93, + "content": "\\bar { \\mathcal { N } ( 0 , 0 . 3 ^ { 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 280, + 371, + 293 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 372, + 280, + 393, + 290 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "is collected by an uniformly", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 291, + 204, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 204, + 304 + ], + "score": 1.0, + "content": "random policy.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 131, + 304, + 429, + 320 + ], + "spans": [ + { + "bbox": [ + 131, + 304, + 429, + 320 + ], + "score": 1.0, + "content": "• random: All of the dataset is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 506, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "Table 7 shows that BREMEN can also achieve performance competitive with state-of-the-art model-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "free offline RL algorithm even with noisy datasets. The training curves of each experiment are shown", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 349, + 178, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 178, + 361 + ], + "score": 1.0, + "content": "in Appendix G.4.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 373, + 387, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 388, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 388, + 386 + ], + "score": 1.0, + "content": "G.2 COMPARISON AMONG DIFFERENT NUMBER OF ENSEMBLES", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 506, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "To deal with the distribution shift during policy optimization, also known as model bias, we introduce", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "the dynamics model ensembles. We validate the performance of BREMEN with a different number of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 177, + 428 + ], + "score": 1.0, + "content": "dynamics models", + "type": "text" + }, + { + "bbox": [ + 178, + 416, + 188, + 426 + ], + "score": 0.73, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 416, + 505, + 428 + ], + "score": 1.0, + "content": ". Figure 11 and Figure 12 show the performance of BREMEN with the different", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "number of ensembles in deployment-efficient and offline settings. Ensembles with more dynamics", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 469, + 451 + ], + "score": 1.0, + "content": "models resulted in better performance due to the mitigation of distributional shift except for", + "type": "text" + }, + { + "bbox": [ + 469, + 438, + 502, + 448 + ], + "score": 0.9, + "content": "K = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 438, + 506, + 451 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 449, + 220, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 187, + 461 + ], + "score": 1.0, + "content": "and then we choose", + "type": "text" + }, + { + "bbox": [ + 187, + 450, + 216, + 459 + ], + "score": 0.9, + "content": "K = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 449, + 220, + 461 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "image", + "bbox": [ + 117, + 473, + 495, + 561 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 473, + 495, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 473, + 495, + 561 + ], + "spans": [ + { + "bbox": [ + 117, + 473, + 495, + 561 + ], + "score": 0.964, + "type": "image", + "image_path": "6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 117, + 473, + 495, + 502.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 117, + 502.3333333333333, + 495, + 531.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 117, + 531.6666666666666, + 495, + 561.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 137, + 565, + 470, + 576 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 139, + 564, + 471, + 578 + ], + "spans": [ + { + "bbox": [ + 139, + 564, + 471, + 578 + ], + "score": 1.0, + "content": "Figure 11: Comparison of the number of dynamics models in deployment-efficient settings.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + } + ], + "index": 29.0 + }, + { + "type": "image", + "bbox": [ + 117, + 596, + 495, + 684 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 596, + 495, + 684 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 596, + 495, + 684 + ], + "spans": [ + { + "bbox": [ + 117, + 596, + 495, + 684 + ], + "score": 0.968, + "type": "image", + "image_path": "4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 117, + 596, + 495, + 625.3333333333334 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 117, + 625.3333333333334, + 495, + 654.6666666666667 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 117, + 654.6666666666667, + 495, + 684.0000000000001 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 165, + 689, + 444, + 699 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 165, + 687, + 446, + 701 + ], + "spans": [ + { + "bbox": [ + 165, + 687, + 446, + 701 + ], + "score": 1.0, + "content": "Figure 12: Comparison of the number of dynamics models in offline settings.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + } + ], + "index": 33.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": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 330, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 330, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 330, + 95 + ], + "score": 1.0, + "content": "G ADDITIONAL EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 381, + 118 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 383, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 383, + 118 + ], + "score": 1.0, + "content": "G.1 PERFORMANCE ON THE DATASET WITH DIFFERENT NOISE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 106, + 383, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 126, + 506, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "Following Wu et al. (2019) and Kidambi et al. (2020), we additionally compare BREMEN in offline", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 136, + 507, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 507, + 151 + ], + "score": 1.0, + "content": "settings to the other baselines (BC, BCQ, BRAC) with five datasets of different exploration noise.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 149, + 288, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 288, + 160 + ], + "score": 1.0, + "content": "Each dataset has also one million transitions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 126, + 507, + 160 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 169, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 132, + 170, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 132, + 170, + 167, + 182 + ], + "score": 1.0, + "content": "• eps1:", + "type": "text" + }, + { + "bbox": [ + 167, + 170, + 188, + 180 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 170, + 506, + 182 + ], + "score": 1.0, + "content": "of the dataset is collected by data-collection policy (partially trained SAC policy)", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 180, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 142, + 182, + 153, + 191 + ], + "score": 0.8, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 180, + 156, + 193 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 157, + 181, + 179, + 191 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 180, + 403, + 193 + ], + "score": 1.0, + "content": "of the dataset is collected by epsilon greedy policy with", + "type": "text" + }, + { + "bbox": [ + 403, + 181, + 435, + 191 + ], + "score": 0.91, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 180, + 505, + 193 + ], + "score": 1.0, + "content": "to take a random", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 191, + 429, + 205 + ], + "spans": [ + { + "bbox": [ + 141, + 191, + 188, + 205 + ], + "score": 1.0, + "content": "action, and", + "type": "text" + }, + { + "bbox": [ + 189, + 192, + 210, + 202 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 191, + 429, + 205 + ], + "score": 1.0, + "content": "of dataset is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 133, + 206, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 133, + 207, + 228, + 218 + ], + "score": 1.0, + "content": "• eps3: Same as eps1,", + "type": "text" + }, + { + "bbox": [ + 228, + 206, + 251, + 217 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 207, + 371, + 218 + ], + "score": 1.0, + "content": "of the dataset is collected by", + "type": "text" + }, + { + "bbox": [ + 372, + 208, + 383, + 217 + ], + "score": 0.82, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 207, + 387, + 218 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 387, + 206, + 410, + 217 + ], + "score": 0.84, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "is collected by epsilon", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 217, + 471, + 230 + ], + "spans": [ + { + "bbox": [ + 141, + 218, + 219, + 230 + ], + "score": 1.0, + "content": "greedy policy with", + "type": "text" + }, + { + "bbox": [ + 219, + 218, + 251, + 228 + ], + "score": 0.9, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 218, + 271, + 230 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 271, + 217, + 293, + 228 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 218, + 471, + 230 + ], + "score": 1.0, + "content": "is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 141, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 189, + 244 + ], + "score": 1.0, + "content": "gaussian1:", + "type": "text" + }, + { + "bbox": [ + 190, + 232, + 212, + 243 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 232, + 419, + 244 + ], + "score": 1.0, + "content": "of the dataset is collected by data-collection policy", + "type": "text" + }, + { + "bbox": [ + 419, + 234, + 430, + 243 + ], + "score": 0.82, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 232, + 433, + 244 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 434, + 232, + 456, + 243 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "is collected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 361, + 256 + ], + "score": 1.0, + "content": "by the policy with adding zero-mean Gaussian noise", + "type": "text" + }, + { + "bbox": [ + 361, + 243, + 406, + 255 + ], + "score": 0.93, + "content": "\\mathcal { N } ( 0 , 0 . \\bar { 1 } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "to each action sampled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 253, + 395, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 164, + 268 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 164, + 256, + 175, + 265 + ], + "score": 0.84, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 253, + 195, + 268 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 196, + 254, + 218, + 264 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 253, + 395, + 268 + ], + "score": 1.0, + "content": "is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 132, + 269, + 189, + 282 + ], + "score": 1.0, + "content": "• gaussian3:", + "type": "text" + }, + { + "bbox": [ + 189, + 270, + 211, + 280 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 269, + 410, + 282 + ], + "score": 1.0, + "content": "of the dataset is collected by data-collection policy", + "type": "text" + }, + { + "bbox": [ + 410, + 271, + 421, + 280 + ], + "score": 0.82, + "content": "\\pi _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 269, + 424, + 282 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 425, + 270, + 446, + 280 + ], + "score": 0.84, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "is collected by", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 307, + 293 + ], + "score": 1.0, + "content": "the policy with zero-mean Gaussian noise", + "type": "text" + }, + { + "bbox": [ + 307, + 280, + 352, + 292 + ], + "score": 0.93, + "content": "\\bar { \\mathcal { N } ( 0 , 0 . 3 ^ { 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 280, + 371, + 293 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 372, + 280, + 393, + 290 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "is collected by an uniformly", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 291, + 204, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 204, + 304 + ], + "score": 1.0, + "content": "random policy.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 304, + 429, + 320 + ], + "spans": [ + { + "bbox": [ + 131, + 304, + 429, + 320 + ], + "score": 1.0, + "content": "• random: All of the dataset is collected by an uniformly random policy.", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 10.5, + "bbox_fs": [ + 131, + 170, + 506, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 506, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "Table 7 shows that BREMEN can also achieve performance competitive with state-of-the-art model-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "free offline RL algorithm even with noisy datasets. The training curves of each experiment are shown", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 349, + 178, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 178, + 361 + ], + "score": 1.0, + "content": "in Appendix G.4.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 326, + 506, + 361 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 373, + 387, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 388, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 388, + 386 + ], + "score": 1.0, + "content": "G.2 COMPARISON AMONG DIFFERENT NUMBER OF ENSEMBLES", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 506, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "To deal with the distribution shift during policy optimization, also known as model bias, we introduce", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "the dynamics model ensembles. We validate the performance of BREMEN with a different number of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 177, + 428 + ], + "score": 1.0, + "content": "dynamics models", + "type": "text" + }, + { + "bbox": [ + 178, + 416, + 188, + 426 + ], + "score": 0.73, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 416, + 505, + 428 + ], + "score": 1.0, + "content": ". Figure 11 and Figure 12 show the performance of BREMEN with the different", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "number of ensembles in deployment-efficient and offline settings. Ensembles with more dynamics", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 469, + 451 + ], + "score": 1.0, + "content": "models resulted in better performance due to the mitigation of distributional shift except for", + "type": "text" + }, + { + "bbox": [ + 469, + 438, + 502, + 448 + ], + "score": 0.9, + "content": "K = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 438, + 506, + 451 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 449, + 220, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 187, + 461 + ], + "score": 1.0, + "content": "and then we choose", + "type": "text" + }, + { + "bbox": [ + 187, + 450, + 216, + 459 + ], + "score": 0.9, + "content": "K = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 449, + 220, + 461 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 393, + 506, + 461 + ] + }, + { + "type": "image", + "bbox": [ + 117, + 473, + 495, + 561 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 473, + 495, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 473, + 495, + 561 + ], + "spans": [ + { + "bbox": [ + 117, + 473, + 495, + 561 + ], + "score": 0.964, + "type": "image", + "image_path": "6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 117, + 473, + 495, + 502.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 117, + 502.3333333333333, + 495, + 531.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 117, + 531.6666666666666, + 495, + 561.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 137, + 565, + 470, + 576 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 139, + 564, + 471, + 578 + ], + "spans": [ + { + "bbox": [ + 139, + 564, + 471, + 578 + ], + "score": 1.0, + "content": "Figure 11: Comparison of the number of dynamics models in deployment-efficient settings.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + } + ], + "index": 29.0 + }, + { + "type": "image", + "bbox": [ + 117, + 596, + 495, + 684 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 596, + 495, + 684 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 596, + 495, + 684 + ], + "spans": [ + { + "bbox": [ + 117, + 596, + 495, + 684 + ], + "score": 0.968, + "type": "image", + "image_path": "4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 117, + 596, + 495, + 625.3333333333334 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 117, + 625.3333333333334, + 495, + 654.6666666666667 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 117, + 654.6666666666667, + 495, + 684.0000000000001 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 165, + 689, + 444, + 699 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 165, + 687, + 446, + 701 + ], + "spans": [ + { + "bbox": [ + 165, + 687, + 446, + 701 + ], + "score": 1.0, + "content": "Figure 12: Comparison of the number of dynamics models in offline settings.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + } + ], + "index": 33.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 154, + 143, + 457, + 235 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 154, + 143, + 457, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 143, + 457, + 235 + ], + "spans": [ + { + "bbox": [ + 154, + 143, + 457, + 235 + ], + "score": 0.291, + "html": "
Noise: eps1,1,000,000 (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10772936791815
BC1381±713788±740266±4861185±155
BCQ1937±1166046±276800±659479±537
BRAC2693±1557003±1181243±1623204±103
BRAC (max Q)2907±987070±811488±3863330±147
BREMEN (Ours)3519±1297585±4252818±761710±429
ME-TRPO (offline)1514±5031009±7311301±654128±153
", + "type": "table", + "image_path": "88aced6a34cb4f97ea91ae388e1e86d3382eadf9999fc3997ee8d8ad4d836b10.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 154, + 143, + 457, + 173.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 154, + 173.66666666666666, + 457, + 204.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 154, + 204.33333333333331, + 457, + 234.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 154, + 244, + 456, + 326 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 229, + 236, + 381, + 245 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 228, + 234, + 381, + 248 + ], + "spans": [ + { + "bbox": [ + 228, + 234, + 381, + 248 + ], + "score": 1.0, + "content": "Noise: eps3, 1,000,000 (1M) transitions", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 154, + 244, + 456, + 326 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 154, + 244, + 456, + 326 + ], + "spans": [ + { + "bbox": [ + 154, + 244, + 456, + 326 + ], + "score": 0.244, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset BC BCQ BRAC936 1364±121 1938±21 2718±90 2913±872408 2877±797 5739±188 6434±147662 519±532 1170±446 1224±71648 1066±176 1018±1231 2921±101
", + "type": "table", + "image_path": "ea8f638bbf7ff6349d977a1d93087eacd6ddcf16af53ed9bbe789657b09ce501.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 154, + 244, + 456, + 271.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 154, + 271.3333333333333, + 456, + 298.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 154, + 298.66666666666663, + 456, + 325.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "table", + "bbox": [ + 154, + 336, + 457, + 417 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 219, + 327, + 392, + 336 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 219, + 326, + 391, + 339 + ], + "spans": [ + { + "bbox": [ + 219, + 326, + 391, + 339 + ], + "score": 1.0, + "content": "Noise: gaussian1, 1,000,000 (1M) transitions", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "table_body", + "bbox": [ + 154, + 336, + 457, + 417 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 154, + 336, + 457, + 417 + ], + "spans": [ + { + "bbox": [ + 154, + 336, + 457, + 417 + ], + "score": 0.226, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset107231508821070
BC1279±804142±18931±161137±477
BCQ1958±765854±498475±416608±416
BRAC2905±817026±1681456±1613030±103
BRAC (max Q)2910±1577026±1681575±893242±97
BREMEN (Ours)2912±1657928±3131999±6171402±290
ME-TRPO (offline)1275±6561275±656909±631171±119
", + "type": "table", + "image_path": "a5c60f6d4dc2d15f32b77b3fe51506190ea36462050828690ddcd22320f35c19.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 154, + 336, + 457, + 363.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 154, + 363.0, + 457, + 390.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 154, + 390.0, + 457, + 417.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 8.0 + }, + { + "type": "table", + "bbox": [ + 154, + 420, + 457, + 510 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 154, + 420, + 457, + 510 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 154, + 420, + 457, + 510 + ], + "spans": [ + { + "bbox": [ + 154, + 420, + 457, + 510 + ], + "score": 0.201, + "html": "
Noise:gaussian3,1,0oo,0oo (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10582872781981
BC1300±344190±69611±4671217±361
BCQ1982±975781±5431137±582258±286
BRAC3084±1803933±27401432±4993253±118
BRAC (max Q)2916±993997±27611417±2673372±153
BREMEN (Ours)3432±1858124±1451867±3542299±474
ME-TRPO (offline)1237±3102141±872973±243219±145
", + "type": "table", + "image_path": "3efb47f42995fa78d09c7030250bb993ff41c7fa338cfb246aaf3d62b47b7b86.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 154, + 420, + 457, + 450.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 154, + 450.0, + 457, + 480.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 154, + 480.0, + 457, + 510.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 12 + }, + { + "type": "table", + "bbox": [ + 153, + 519, + 457, + 603 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 221, + 511, + 387, + 519 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 222, + 509, + 387, + 522 + ], + "spans": [ + { + "bbox": [ + 222, + 509, + 387, + 522 + ], + "score": 1.0, + "content": "Noise: random, 1,000,000 (1M) transitions", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 153, + 519, + 457, + 603 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 153, + 519, + 457, + 603 + ], + "spans": [ + { + "bbox": [ + 153, + 519, + 457, + 603 + ], + "score": 0.344, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset470-285342
BC989±10-2±1106±62108±110
BCQ1222±1142887±242206±7228±12
BRAC1057±923449±259227±3029±54
BRAC (max Q)683±573418±171224±3726±50
BREMEN (Ours)905±113627±193270±68254±6
ME-TRPO (offline)2221±6652701±120321±29262±13
", + "type": "table", + "image_path": "a5420d75a03349ea446e7f88e19e3708dd033674ec3b139281345a003d9b9ae8.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 153, + 519, + 457, + 547.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 547.0, + 457, + 575.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 153, + 575.0, + 457, + 603.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 606, + 506, + 667 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 617 + ], + "score": 1.0, + "content": "Table 7: Comparison of BREMEN to the existing offline methods in offline settings, namely, BC, BCQ (Fujimoto", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "et al., 2019), and BRAC (Wu et al., 2019). Each cell shows the average cumulative reward and their standard", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "score": 1.0, + "content": "deviation with 5 seeds. The maximum steps per episode is 1,000. Five different types of exploration noise are", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "introduced during the data collection, eps1, eps3, gaussian1, gaussian3, and random. BRAC applies a primal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "score": 1.0, + "content": "form of KL value penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 657, + 238, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 238, + 667 + ], + "score": 1.0, + "content": "according to the learned Q function.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + } + ], + "index": 16 + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "23", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 154, + 143, + 457, + 235 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 154, + 143, + 457, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 143, + 457, + 235 + ], + "spans": [ + { + "bbox": [ + 154, + 143, + 457, + 235 + ], + "score": 0.291, + "html": "
Noise: eps1,1,000,000 (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10772936791815
BC1381±713788±740266±4861185±155
BCQ1937±1166046±276800±659479±537
BRAC2693±1557003±1181243±1623204±103
BRAC (max Q)2907±987070±811488±3863330±147
BREMEN (Ours)3519±1297585±4252818±761710±429
ME-TRPO (offline)1514±5031009±7311301±654128±153
", + "type": "table", + "image_path": "88aced6a34cb4f97ea91ae388e1e86d3382eadf9999fc3997ee8d8ad4d836b10.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 154, + 143, + 457, + 173.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 154, + 173.66666666666666, + 457, + 204.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 154, + 204.33333333333331, + 457, + 234.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 154, + 244, + 456, + 326 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 229, + 236, + 381, + 245 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 228, + 234, + 381, + 248 + ], + "spans": [ + { + "bbox": [ + 228, + 234, + 381, + 248 + ], + "score": 1.0, + "content": "Noise: eps3, 1,000,000 (1M) transitions", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 154, + 244, + 456, + 326 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 154, + 244, + 456, + 326 + ], + "spans": [ + { + "bbox": [ + 154, + 244, + 456, + 326 + ], + "score": 0.244, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset BC BCQ BRAC936 1364±121 1938±21 2718±90 2913±872408 2877±797 5739±188 6434±147662 519±532 1170±446 1224±71648 1066±176 1018±1231 2921±101
", + "type": "table", + "image_path": "ea8f638bbf7ff6349d977a1d93087eacd6ddcf16af53ed9bbe789657b09ce501.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 154, + 244, + 456, + 271.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 154, + 271.3333333333333, + 456, + 298.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 154, + 298.66666666666663, + 456, + 325.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "table", + "bbox": [ + 154, + 336, + 457, + 417 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 219, + 327, + 392, + 336 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 219, + 326, + 391, + 339 + ], + "spans": [ + { + "bbox": [ + 219, + 326, + 391, + 339 + ], + "score": 1.0, + "content": "Noise: gaussian1, 1,000,000 (1M) transitions", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "table_body", + "bbox": [ + 154, + 336, + 457, + 417 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 154, + 336, + 457, + 417 + ], + "spans": [ + { + "bbox": [ + 154, + 336, + 457, + 417 + ], + "score": 0.226, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset107231508821070
BC1279±804142±18931±161137±477
BCQ1958±765854±498475±416608±416
BRAC2905±817026±1681456±1613030±103
BRAC (max Q)2910±1577026±1681575±893242±97
BREMEN (Ours)2912±1657928±3131999±6171402±290
ME-TRPO (offline)1275±6561275±656909±631171±119
", + "type": "table", + "image_path": "a5c60f6d4dc2d15f32b77b3fe51506190ea36462050828690ddcd22320f35c19.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 154, + 336, + 457, + 363.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 154, + 363.0, + 457, + 390.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 154, + 390.0, + 457, + 417.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 8.0 + }, + { + "type": "table", + "bbox": [ + 154, + 420, + 457, + 510 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 154, + 420, + 457, + 510 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 154, + 420, + 457, + 510 + ], + "spans": [ + { + "bbox": [ + 154, + 420, + 457, + 510 + ], + "score": 0.201, + "html": "
Noise:gaussian3,1,0oo,0oo (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10582872781981
BC1300±344190±69611±4671217±361
BCQ1982±975781±5431137±582258±286
BRAC3084±1803933±27401432±4993253±118
BRAC (max Q)2916±993997±27611417±2673372±153
BREMEN (Ours)3432±1858124±1451867±3542299±474
ME-TRPO (offline)1237±3102141±872973±243219±145
", + "type": "table", + "image_path": "3efb47f42995fa78d09c7030250bb993ff41c7fa338cfb246aaf3d62b47b7b86.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 154, + 420, + 457, + 450.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 154, + 450.0, + 457, + 480.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 154, + 480.0, + 457, + 510.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 12 + }, + { + "type": "table", + "bbox": [ + 153, + 519, + 457, + 603 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 221, + 511, + 387, + 519 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 222, + 509, + 387, + 522 + ], + "spans": [ + { + "bbox": [ + 222, + 509, + 387, + 522 + ], + "score": 1.0, + "content": "Noise: random, 1,000,000 (1M) transitions", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 153, + 519, + 457, + 603 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 153, + 519, + 457, + 603 + ], + "spans": [ + { + "bbox": [ + 153, + 519, + 457, + 603 + ], + "score": 0.344, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset470-285342
BC989±10-2±1106±62108±110
BCQ1222±1142887±242206±7228±12
BRAC1057±923449±259227±3029±54
BRAC (max Q)683±573418±171224±3726±50
BREMEN (Ours)905±113627±193270±68254±6
ME-TRPO (offline)2221±6652701±120321±29262±13
", + "type": "table", + "image_path": "a5420d75a03349ea446e7f88e19e3708dd033674ec3b139281345a003d9b9ae8.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 153, + 519, + 457, + 547.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 547.0, + 457, + 575.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 153, + 575.0, + 457, + 603.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 606, + 506, + 667 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 617 + ], + "score": 1.0, + "content": "Table 7: Comparison of BREMEN to the existing offline methods in offline settings, namely, BC, BCQ (Fujimoto", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "et al., 2019), and BRAC (Wu et al., 2019). Each cell shows the average cumulative reward and their standard", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "score": 1.0, + "content": "deviation with 5 seeds. The maximum steps per episode is 1,000. Five different types of exploration noise are", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "introduced during the data collection, eps1, eps3, gaussian1, gaussian3, and random. BRAC applies a primal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 657 + ], + "score": 1.0, + "content": "form of KL value penalty, and BRAC (max Q) means sampling multiple actions and taking the maximum", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 657, + 238, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 238, + 667 + ], + "score": 1.0, + "content": "according to the learned Q function.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + } + ], + "index": 16 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 331, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 331, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 331, + 95 + ], + "score": 1.0, + "content": "G.3 IMPLICIT KL CONTROL IN OFFLINE SETTINGS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "Similar to Section 5.3, we present offline RL experiments to better understand the effect of implicit", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 126 + ], + "score": 1.0, + "content": "KL regularization. In contrast to the implicit KL regularization with Equation 4, the optimization of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 312, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 312, + 137 + ], + "score": 1.0, + "content": "BREMEN with explicit KL value penalty becomes", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 141, + 468, + 193 + ], + "lines": [ + { + "bbox": [ + 142, + 141, + 468, + 193 + ], + "spans": [ + { + "bbox": [ + 142, + 141, + 468, + 193 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathrm { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } ( A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) - \\alpha D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | ) \\hat { \\pi } _ { \\beta } ( \\cdot | s ) ) ) ] } \\\\ & { \\quad \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } } { \\mathrm { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , } \\end{array}", + "type": "interline_equation", + "image_path": "ce620e6424c73535e915a205c5e5502c596ac9ad74d58381048c4a153f0eb809.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 142, + 141, + 468, + 158.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 142, + 158.33333333333334, + 468, + 175.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 142, + 175.66666666666669, + 468, + 193.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 198, + 502, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 135, + 211 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 198, + 179, + 210 + ], + "score": 0.93, + "content": "A ^ { \\pi _ { \\theta _ { k } } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 197, + 266, + 211 + ], + "score": 1.0, + "content": "is the advantage of", + "type": "text" + }, + { + "bbox": [ + 266, + 200, + 281, + 210 + ], + "score": 0.88, + "content": "\\pi _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "computed using imaginary rollouts with the learned", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 108, + 209, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 108, + 209, + 190, + 222 + ], + "score": 1.0, + "content": "dynamics model and", + "type": "text" + }, + { + "bbox": [ + 191, + 210, + 197, + 219 + ], + "score": 0.8, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 209, + 504, + 222 + ], + "score": 1.0, + "content": "is the maximum step size. Note that BREMEN with explicit KL penalty does", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 108, + 221, + 274, + 233 + ], + "spans": [ + { + "bbox": [ + 108, + 221, + 274, + 233 + ], + "score": 1.0, + "content": "not utilize behavior cloning initialization.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 320, + 251 + ], + "score": 1.0, + "content": "We empirically conclude that the explicit constraint", + "type": "text" + }, + { + "bbox": [ + 320, + 237, + 424, + 250 + ], + "score": 0.92, + "content": "- \\alpha D _ { \\mathrm { K L } } \\big ( \\pi _ { \\boldsymbol { \\theta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big | \\big | \\hat { \\pi } _ { \\boldsymbol { \\beta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 236, + 506, + 251 + ], + "score": 1.0, + "content": "is unnecessary and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "just TRPO update with behavior-initialization as implicit regularization is sufficient in BREMEN", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "algorithm. Figure 13 shows the KL divergence between learned policies and the last deployed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "policies (top row) and model errors measured by a mean squared error of predicted next state from", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "the true state (second row). We find that behavior initialized policy with conservative KL trust-region", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "score": 1.0, + "content": "updates well stuck to the last deployed policy during improvement without explicit KL penalty. The", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "policy initialized with behavior cloning also tended to suppress the increase of model error, which", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "implies that behavior initialization alleviates the effect of the distribution shift. In Walker2d, the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "model error of BREMEN is relatively large, which may relate to the poor performance with noisy", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 336, + 203, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 203, + 347 + ], + "score": 1.0, + "content": "datasets in Section G.1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5 + }, + { + "type": "image", + "bbox": [ + 115, + 358, + 496, + 580 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 358, + 496, + 580 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 358, + 496, + 580 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 496, + 580 + ], + "score": 0.976, + "type": "image", + "image_path": "380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 115, + 358, + 496, + 432.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 115, + 432.0, + 496, + 506.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 115, + 506.0, + 496, + 580.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 583, + 506, + 624 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "Figure 13: Average cumulative rewards (top row) and corresponding KL divergence of learned policies from the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "score": 1.0, + "content": "last deployed policy (second row) and model errors (bottom row) in offline settings with 1M dataset (no noise).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "Behavior initialized policy (purple line) tends to suppress the policy and model error during training better than", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 614, + 329, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 329, + 626 + ], + "score": 1.0, + "content": "no-initialization (red line) or explicit KL penalty (green line).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + } + ], + "index": 22.75 + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 331, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 331, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 331, + 95 + ], + "score": 1.0, + "content": "G.3 IMPLICIT KL CONTROL IN OFFLINE SETTINGS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "Similar to Section 5.3, we present offline RL experiments to better understand the effect of implicit", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 126 + ], + "score": 1.0, + "content": "KL regularization. In contrast to the implicit KL regularization with Equation 4, the optimization of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 312, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 312, + 137 + ], + "score": 1.0, + "content": "BREMEN with explicit KL value penalty becomes", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 102, + 505, + 137 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 141, + 468, + 193 + ], + "lines": [ + { + "bbox": [ + 142, + 141, + 468, + 193 + ], + "spans": [ + { + "bbox": [ + 142, + 141, + 468, + 193 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathrm { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } ( A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) - \\alpha D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | ) \\hat { \\pi } _ { \\beta } ( \\cdot | s ) ) ) ] } \\\\ & { \\quad \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } } { \\mathrm { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , } \\end{array}", + "type": "interline_equation", + "image_path": "ce620e6424c73535e915a205c5e5502c596ac9ad74d58381048c4a153f0eb809.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 142, + 141, + 468, + 158.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 142, + 158.33333333333334, + 468, + 175.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 142, + 175.66666666666669, + 468, + 193.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 198, + 502, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 135, + 211 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 198, + 179, + 210 + ], + "score": 0.93, + "content": "A ^ { \\pi _ { \\theta _ { k } } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 197, + 266, + 211 + ], + "score": 1.0, + "content": "is the advantage of", + "type": "text" + }, + { + "bbox": [ + 266, + 200, + 281, + 210 + ], + "score": 0.88, + "content": "\\pi _ { \\theta _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "computed using imaginary rollouts with the learned", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 108, + 209, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 108, + 209, + 190, + 222 + ], + "score": 1.0, + "content": "dynamics model and", + "type": "text" + }, + { + "bbox": [ + 191, + 210, + 197, + 219 + ], + "score": 0.8, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 209, + 504, + 222 + ], + "score": 1.0, + "content": "is the maximum step size. Note that BREMEN with explicit KL penalty does", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 108, + 221, + 274, + 233 + ], + "spans": [ + { + "bbox": [ + 108, + 221, + 274, + 233 + ], + "score": 1.0, + "content": "not utilize behavior cloning initialization.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 197, + 505, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 320, + 251 + ], + "score": 1.0, + "content": "We empirically conclude that the explicit constraint", + "type": "text" + }, + { + "bbox": [ + 320, + 237, + 424, + 250 + ], + "score": 0.92, + "content": "- \\alpha D _ { \\mathrm { K L } } \\big ( \\pi _ { \\boldsymbol { \\theta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big | \\big | \\hat { \\pi } _ { \\boldsymbol { \\beta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 236, + 506, + 251 + ], + "score": 1.0, + "content": "is unnecessary and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "just TRPO update with behavior-initialization as implicit regularization is sufficient in BREMEN", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "algorithm. Figure 13 shows the KL divergence between learned policies and the last deployed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "policies (top row) and model errors measured by a mean squared error of predicted next state from", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "the true state (second row). We find that behavior initialized policy with conservative KL trust-region", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "score": 1.0, + "content": "updates well stuck to the last deployed policy during improvement without explicit KL penalty. The", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "policy initialized with behavior cloning also tended to suppress the increase of model error, which", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "implies that behavior initialization alleviates the effect of the distribution shift. In Walker2d, the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "model error of BREMEN is relatively large, which may relate to the poor performance with noisy", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 336, + 203, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 203, + 347 + ], + "score": 1.0, + "content": "datasets in Section G.1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 236, + 506, + 347 + ] + }, + { + "type": "image", + "bbox": [ + 115, + 358, + 496, + 580 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 358, + 496, + 580 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 358, + 496, + 580 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 496, + 580 + ], + "score": 0.976, + "type": "image", + "image_path": "380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 115, + 358, + 496, + 432.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 115, + 432.0, + 496, + 506.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 115, + 506.0, + 496, + 580.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 583, + 506, + 624 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "Figure 13: Average cumulative rewards (top row) and corresponding KL divergence of learned policies from the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "score": 1.0, + "content": "last deployed policy (second row) and model errors (bottom row) in offline settings with 1M dataset (no noise).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "Behavior initialized policy (purple line) tends to suppress the policy and model error during training better than", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 614, + 329, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 329, + 626 + ], + "score": 1.0, + "content": "no-initialization (red line) or explicit KL penalty (green line).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + } + ], + "index": 22.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 402, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 402, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 402, + 95 + ], + "score": 1.0, + "content": "G.4 TRAINING CURVES FOR OFFLINE RL WITH DIFFERENT NOISES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "In this section, we present training curves of our all experiments in offline settings. Figure 14 shows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 475, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 475, + 126 + ], + "score": 1.0, + "content": "the results in Section 5.1. Figure 15, 16, 17, 18, and 19 also show the results in Section G.1.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "image", + "bbox": [ + 116, + 137, + 496, + 371 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 137, + 496, + 371 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 137, + 496, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 137, + 496, + 371 + ], + "score": 0.975, + "type": "image", + "image_path": "c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 116, + 137, + 496, + 215.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 116, + 215.0, + 496, + 293.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 116, + 293.0, + 496, + 371.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 375, + 506, + 406 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "Figure 14: Performance in Offline RL experiments (Table 1). (top row) dataset size is 1M, (second row) 100K,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 276, + 397 + ], + "score": 1.0, + "content": "and (bottom row) 50K, respectively. Note that", + "type": "text" + }, + { + "bbox": [ + 276, + 387, + 282, + 394 + ], + "score": 0.42, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "-axis is the number of iterations with policy optimization in a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 394, + 145, + 408 + ], + "spans": [ + { + "bbox": [ + 104, + 394, + 145, + 408 + ], + "score": 1.0, + "content": "log-scale.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "image", + "bbox": [ + 117, + 425, + 495, + 515 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 425, + 495, + 515 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 425, + 495, + 515 + ], + "spans": [ + { + "bbox": [ + 117, + 425, + 495, + 515 + ], + "score": 0.967, + "type": "image", + "image_path": "d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 117, + 425, + 495, + 455.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 117, + 455.0, + 495, + 485.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 485.0, + 495, + 515.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 519, + 498, + 531 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 518, + 500, + 531 + ], + "spans": [ + { + "bbox": [ + 111, + 518, + 314, + 531 + ], + "score": 1.0, + "content": "Figure 15: Performance in Offline RL experiments with", + "type": "text" + }, + { + "bbox": [ + 315, + 521, + 319, + 528 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 518, + 396, + 531 + ], + "score": 1.0, + "content": "-greedy dataset noise", + "type": "text" + }, + { + "bbox": [ + 396, + 520, + 425, + 529 + ], + "score": 0.85, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 518, + 500, + 531 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.0 + }, + { + "type": "image", + "bbox": [ + 117, + 550, + 495, + 639 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 550, + 495, + 639 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 550, + 495, + 639 + ], + "spans": [ + { + "bbox": [ + 117, + 550, + 495, + 639 + ], + "score": 0.967, + "type": "image", + "image_path": "f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 117, + 550, + 495, + 579.6666666666666 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 117, + 579.6666666666666, + 495, + 609.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 117, + 609.3333333333333, + 495, + 638.9999999999999 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 110, + 642, + 497, + 654 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 111, + 641, + 499, + 655 + ], + "spans": [ + { + "bbox": [ + 111, + 641, + 314, + 655 + ], + "score": 1.0, + "content": "Figure 16: Performance in Offline RL experiments with", + "type": "text" + }, + { + "bbox": [ + 315, + 645, + 319, + 652 + ], + "score": 0.56, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 641, + 396, + 655 + ], + "score": 1.0, + "content": "-greedy dataset noise", + "type": "text" + }, + { + "bbox": [ + 396, + 643, + 425, + 652 + ], + "score": 0.87, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 641, + 499, + 655 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 15.0 + } + ], + "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": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 402, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 402, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 402, + 95 + ], + "score": 1.0, + "content": "G.4 TRAINING CURVES FOR OFFLINE RL WITH DIFFERENT NOISES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "In this section, we present training curves of our all experiments in offline settings. Figure 14 shows", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 475, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 475, + 126 + ], + "score": 1.0, + "content": "the results in Section 5.1. Figure 15, 16, 17, 18, and 19 also show the results in Section G.1.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 102, + 505, + 126 + ] + }, + { + "type": "image", + "bbox": [ + 116, + 137, + 496, + 371 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 137, + 496, + 371 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 137, + 496, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 137, + 496, + 371 + ], + "score": 0.975, + "type": "image", + "image_path": "c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 116, + 137, + 496, + 215.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 116, + 215.0, + 496, + 293.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 116, + 293.0, + 496, + 371.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 375, + 506, + 406 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "Figure 14: Performance in Offline RL experiments (Table 1). (top row) dataset size is 1M, (second row) 100K,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 276, + 397 + ], + "score": 1.0, + "content": "and (bottom row) 50K, respectively. Note that", + "type": "text" + }, + { + "bbox": [ + 276, + 387, + 282, + 394 + ], + "score": 0.42, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "-axis is the number of iterations with policy optimization in a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 394, + 145, + 408 + ], + "spans": [ + { + "bbox": [ + 104, + 394, + 145, + 408 + ], + "score": 1.0, + "content": "log-scale.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "image", + "bbox": [ + 117, + 425, + 495, + 515 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 425, + 495, + 515 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 425, + 495, + 515 + ], + "spans": [ + { + "bbox": [ + 117, + 425, + 495, + 515 + ], + "score": 0.967, + "type": "image", + "image_path": "d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 117, + 425, + 495, + 455.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 117, + 455.0, + 495, + 485.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 485.0, + 495, + 515.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 519, + 498, + 531 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 518, + 500, + 531 + ], + "spans": [ + { + "bbox": [ + 111, + 518, + 314, + 531 + ], + "score": 1.0, + "content": "Figure 15: Performance in Offline RL experiments with", + "type": "text" + }, + { + "bbox": [ + 315, + 521, + 319, + 528 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 518, + 396, + 531 + ], + "score": 1.0, + "content": "-greedy dataset noise", + "type": "text" + }, + { + "bbox": [ + 396, + 520, + 425, + 529 + ], + "score": 0.85, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 518, + 500, + 531 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.0 + }, + { + "type": "image", + "bbox": [ + 117, + 550, + 495, + 639 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 550, + 495, + 639 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 550, + 495, + 639 + ], + "spans": [ + { + "bbox": [ + 117, + 550, + 495, + 639 + ], + "score": 0.967, + "type": "image", + "image_path": "f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 117, + 550, + 495, + 579.6666666666666 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 117, + 579.6666666666666, + 495, + 609.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 117, + 609.3333333333333, + 495, + 638.9999999999999 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 110, + 642, + 497, + 654 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 111, + 641, + 499, + 655 + ], + "spans": [ + { + "bbox": [ + 111, + 641, + 314, + 655 + ], + "score": 1.0, + "content": "Figure 16: Performance in Offline RL experiments with", + "type": "text" + }, + { + "bbox": [ + 315, + 645, + 319, + 652 + ], + "score": 0.56, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 641, + 396, + 655 + ], + "score": 1.0, + "content": "-greedy dataset noise", + "type": "text" + }, + { + "bbox": [ + 396, + 643, + 425, + 652 + ], + "score": 0.87, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 641, + 499, + 655 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 15.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 136, + 495, + 224 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 136, + 495, + 224 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 136, + 495, + 224 + ], + "spans": [ + { + "bbox": [ + 116, + 136, + 495, + 224 + ], + "score": 0.963, + "type": "image", + "image_path": "130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 136, + 495, + 165.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 165.33333333333334, + 495, + 194.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 194.66666666666669, + 495, + 224.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 229, + 503, + 240 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 227, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 389, + 241 + ], + "score": 1.0, + "content": "Figure 17: Performance in Offline RL experiments with gaussian dataset noise", + "type": "text" + }, + { + "bbox": [ + 389, + 228, + 430, + 240 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 0 . 1 ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 227, + 505, + 241 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 117, + 355, + 495, + 443 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 355, + 495, + 443 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 355, + 495, + 443 + ], + "spans": [ + { + "bbox": [ + 117, + 355, + 495, + 443 + ], + "score": 0.958, + "type": "image", + "image_path": "b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 117, + 355, + 495, + 384.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 117, + 384.3333333333333, + 495, + 413.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 117, + 413.66666666666663, + 495, + 442.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 448, + 503, + 459 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 389, + 460 + ], + "score": 1.0, + "content": "Figure 18: Performance in Offline RL experiments with gaussian dataset noise", + "type": "text" + }, + { + "bbox": [ + 389, + 447, + 430, + 459 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 0 . 3 ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 446, + 505, + 460 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 117, + 573, + 495, + 662 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 573, + 495, + 662 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 573, + 495, + 662 + ], + "spans": [ + { + "bbox": [ + 117, + 573, + 495, + 662 + ], + "score": 0.959, + "type": "image", + "image_path": "e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 117, + 573, + 495, + 602.6666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 117, + 602.6666666666666, + 495, + 632.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 117, + 632.3333333333333, + 495, + 661.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 112, + 666, + 497, + 677 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 113, + 664, + 498, + 678 + ], + "spans": [ + { + "bbox": [ + 113, + 664, + 498, + 678 + ], + "score": 1.0, + "content": "Figure 19: Performance in Offline RL experiments with completely random behaviors. Dataset size is 1M.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + } + ], + "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, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "26", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 136, + 495, + 224 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 136, + 495, + 224 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 136, + 495, + 224 + ], + "spans": [ + { + "bbox": [ + 116, + 136, + 495, + 224 + ], + "score": 0.963, + "type": "image", + "image_path": "130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 136, + 495, + 165.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 165.33333333333334, + 495, + 194.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 194.66666666666669, + 495, + 224.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 229, + 503, + 240 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 227, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 389, + 241 + ], + "score": 1.0, + "content": "Figure 17: Performance in Offline RL experiments with gaussian dataset noise", + "type": "text" + }, + { + "bbox": [ + 389, + 228, + 430, + 240 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 0 . 1 ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 227, + 505, + 241 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 117, + 355, + 495, + 443 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 355, + 495, + 443 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 355, + 495, + 443 + ], + "spans": [ + { + "bbox": [ + 117, + 355, + 495, + 443 + ], + "score": 0.958, + "type": "image", + "image_path": "b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 117, + 355, + 495, + 384.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 117, + 384.3333333333333, + 495, + 413.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 117, + 413.66666666666663, + 495, + 442.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 448, + 503, + 459 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 389, + 460 + ], + "score": 1.0, + "content": "Figure 18: Performance in Offline RL experiments with gaussian dataset noise", + "type": "text" + }, + { + "bbox": [ + 389, + 447, + 430, + 459 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , 0 . 3 ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 446, + 505, + 460 + ], + "score": 1.0, + "content": ". Dataset size is 1M.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 117, + 573, + 495, + 662 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 573, + 495, + 662 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 117, + 573, + 495, + 662 + ], + "spans": [ + { + "bbox": [ + 117, + 573, + 495, + 662 + ], + "score": 0.959, + "type": "image", + "image_path": "e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 117, + 573, + 495, + 602.6666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 117, + 602.6666666666666, + 495, + 632.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 117, + 632.3333333333333, + 495, + 661.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 112, + 666, + 497, + 677 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 113, + 664, + 498, + 678 + ], + "spans": [ + { + "bbox": [ + 113, + 664, + 498, + 678 + ], + "score": 1.0, + "content": "Figure 19: Performance in Offline RL experiments with completely random behaviors. Dataset size is 1M.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 104, + 82, + 483, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 482, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 482, + 94 + ], + "score": 1.0, + "content": "G.5 DEPLOYMENT-EFFICIENT RL EXPERIMENT WITH DIFFERENT REWARD FUNCTION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "In addition to the main results in Section 5.2 (Figure 2), we also evaluate BREMEN in deployment-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "efficient setting with different reward function. We modified HalfCheetah environment into the one", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 471, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 471, + 137 + ], + "score": 1.0, + "content": "similar to cheetah-run task in Deep Mind Control Suite.5 The reward function is defined as", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 142, + 366, + 171 + ], + "lines": [ + { + "bbox": [ + 244, + 142, + 366, + 171 + ], + "spans": [ + { + "bbox": [ + 244, + 142, + 366, + 171 + ], + "score": 0.94, + "content": "r _ { t } = \\left\\{ \\begin{array} { l l } { 0 . 1 \\dot { x } _ { t } } & { ( 0 \\leq \\dot { x } _ { t } \\leq 1 0 ) } \\\\ { 1 } & { ( \\dot { x } _ { t } > 1 0 ) , } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "7fcc04ad00beb4079f7af7b1ac686011f5d205f51c984d1fda920384d2e971df.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 142, + 366, + 156.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 244, + 156.5, + 366, + 171.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 190 + ], + "score": 1.0, + "content": "and the termination is turned off. Figure 20 shows the performance of BREMEN and existing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "methods. BREMEN also shows better deployment efficiency than other existing offline methods and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 198, + 438, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 438, + 210 + ], + "score": 1.0, + "content": "online ME-TRPO, except for SAC, which is the same trend as that of main results.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 119, + 225, + 496, + 375 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 225, + 496, + 375 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 225, + 496, + 375 + ], + "spans": [ + { + "bbox": [ + 119, + 225, + 496, + 375 + ], + "score": 0.972, + "type": "image", + "image_path": "dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 119, + 225, + 496, + 275.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 119, + 275.0, + 496, + 325.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 119, + 325.0, + 496, + 375.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 380, + 504, + 392 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 393 + ], + "score": 1.0, + "content": "Figure 20: Performance in Deployment-Efficient RL experiments with different reward function of HalfCheetah.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.0 + } + ], + "page_idx": 26, + "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": [ + 108, + 712, + 492, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 491, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 491, + 723 + ], + "score": 1.0, + "content": "5https://github.com/deepmind/dm_control/blob/master/dm_control/suite/", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 719, + 163, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 163, + 734 + ], + "score": 1.0, + "content": "cheetah.py", + "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": [ + 104, + 82, + 483, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 482, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 482, + 94 + ], + "score": 1.0, + "content": "G.5 DEPLOYMENT-EFFICIENT RL EXPERIMENT WITH DIFFERENT REWARD FUNCTION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "In addition to the main results in Section 5.2 (Figure 2), we also evaluate BREMEN in deployment-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "efficient setting with different reward function. We modified HalfCheetah environment into the one", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 471, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 471, + 137 + ], + "score": 1.0, + "content": "similar to cheetah-run task in Deep Mind Control Suite.5 The reward function is defined as", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 102, + 506, + 137 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 142, + 366, + 171 + ], + "lines": [ + { + "bbox": [ + 244, + 142, + 366, + 171 + ], + "spans": [ + { + "bbox": [ + 244, + 142, + 366, + 171 + ], + "score": 0.94, + "content": "r _ { t } = \\left\\{ \\begin{array} { l l } { 0 . 1 \\dot { x } _ { t } } & { ( 0 \\leq \\dot { x } _ { t } \\leq 1 0 ) } \\\\ { 1 } & { ( \\dot { x } _ { t } > 1 0 ) , } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "7fcc04ad00beb4079f7af7b1ac686011f5d205f51c984d1fda920384d2e971df.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 142, + 366, + 156.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 244, + 156.5, + 366, + 171.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 190 + ], + "score": 1.0, + "content": "and the termination is turned off. Figure 20 shows the performance of BREMEN and existing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "methods. BREMEN also shows better deployment efficiency than other existing offline methods and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 198, + 438, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 438, + 210 + ], + "score": 1.0, + "content": "online ME-TRPO, except for SAC, which is the same trend as that of main results.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 174, + 505, + 210 + ] + }, + { + "type": "image", + "bbox": [ + 119, + 225, + 496, + 375 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 225, + 496, + 375 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 225, + 496, + 375 + ], + "spans": [ + { + "bbox": [ + 119, + 225, + 496, + 375 + ], + "score": 0.972, + "type": "image", + "image_path": "dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 119, + 225, + 496, + 275.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 119, + 275.0, + 496, + 325.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 119, + 325.0, + 496, + 375.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 380, + 504, + 392 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 393 + ], + "score": 1.0, + "content": "Figure 20: Performance in Deployment-Efficient RL experiments with different reward function of HalfCheetah.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/3hGNqpI4WS/3hGNqpI4WS_model.json b/parse/train/3hGNqpI4WS/3hGNqpI4WS_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1e0347789a2accc4308555fbd2c6035f276d1834 --- /dev/null +++ b/parse/train/3hGNqpI4WS/3hGNqpI4WS_model.json @@ -0,0 +1,40231 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 397, + 759, + 1305, + 759, + 1305, + 1339, + 397, + 1339 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1475, + 1404, + 1475, + 1404, + 1749, + 298, + 1749 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1765, + 1402, + 1765, + 1402, + 1949, + 299, + 1949 + ], + "score": 0.97 + }, + { + "category_id": 0, + "poly": [ + 300, + 220, + 1406, + 220, + 1406, + 324, + 300, + 324 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 328, + 1978, + 1339, + 1978, + 1339, + 2034, + 328, + 2034 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 302, + 1403, + 572, + 1403, + 572, + 1438, + 302, + 1438 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 773, + 689, + 926, + 689, + 926, + 722, + 773, + 722 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 319, + 580, + 848, + 580, + 848, + 607, + 319, + 607 + ], + "score": 0.648 + }, + { + "category_id": 0, + "poly": [ + 532, + 515, + 762, + 515, + 762, + 546, + 532, + 546 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 314, + 374, + 1167, + 374, + 1167, + 468, + 314, + 468 + ], + "score": 0.528 + }, + { + "category_id": 0, + "poly": [ + 315, + 517, + 473, + 517, + 473, + 545, + 315, + 545 + ], + "score": 0.452 + }, + { + "category_id": 1, + "poly": [ + 317, + 549, + 507, + 549, + 507, + 576, + 317, + 576 + ], + "score": 0.327 + }, + { + "category_id": 1, + "poly": [ + 532, + 515, + 762, + 515, + 762, + 546, + 532, + 546 + ], + "score": 0.286 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 217.0, + 1411.0, + 217.0, + 1411.0, + 271.0, + 294.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 276.0, + 1300.0, + 276.0, + 1300.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1969.0, + 540.0, + 1969.0, + 540.0, + 2006.0, + 330.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1997.0, + 1338.0, + 1997.0, + 1338.0, + 2038.0, + 329.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1400.0, + 579.0, + 1400.0, + 579.0, + 1447.0, + 293.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 688.0, + 932.0, + 688.0, + 932.0, + 725.0, + 769.0, + 725.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": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 513.0, + 766.0, + 513.0, + 766.0, + 552.0, + 529.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 516.0, + 476.0, + 516.0, + 476.0, + 548.0, + 313.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 761.0, + 1308.0, + 761.0, + 1308.0, + 794.0, + 395.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 790.0, + 1305.0, + 790.0, + 1305.0, + 827.0, + 392.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 823.0, + 1305.0, + 823.0, + 1305.0, + 856.0, + 396.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 849.0, + 1307.0, + 849.0, + 1307.0, + 889.0, + 392.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 882.0, + 1306.0, + 882.0, + 1306.0, + 917.0, + 393.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 912.0, + 1306.0, + 912.0, + 1306.0, + 948.0, + 392.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 944.0, + 1306.0, + 944.0, + 1306.0, + 980.0, + 393.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 971.0, + 1307.0, + 971.0, + 1307.0, + 1010.0, + 393.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1003.0, + 1309.0, + 1003.0, + 1309.0, + 1039.0, + 394.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1035.0, + 1305.0, + 1035.0, + 1305.0, + 1068.0, + 393.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1064.0, + 1306.0, + 1064.0, + 1306.0, + 1100.0, + 393.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1094.0, + 1306.0, + 1094.0, + 1306.0, + 1132.0, + 392.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1126.0, + 1306.0, + 1126.0, + 1306.0, + 1162.0, + 393.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1153.0, + 1309.0, + 1153.0, + 1309.0, + 1194.0, + 392.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1188.0, + 1309.0, + 1188.0, + 1309.0, + 1221.0, + 394.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1218.0, + 1305.0, + 1218.0, + 1305.0, + 1254.0, + 393.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1249.0, + 1308.0, + 1249.0, + 1308.0, + 1282.0, + 394.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1276.0, + 1309.0, + 1276.0, + 1309.0, + 1313.0, + 394.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1308.0, + 1252.0, + 1308.0, + 1252.0, + 1342.0, + 393.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1472.0, + 1404.0, + 1472.0, + 1404.0, + 1511.0, + 293.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1534.0, + 1405.0, + 1534.0, + 1405.0, + 1569.0, + 296.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1404.0, + 1561.0, + 1404.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1595.0, + 1404.0, + 1595.0, + 1404.0, + 1630.0, + 295.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1660.0, + 296.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1721.0, + 296.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1717.0, + 1408.0, + 1717.0, + 1408.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1406.0, + 1762.0, + 1406.0, + 1800.0, + 293.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1796.0, + 1407.0, + 1796.0, + 1407.0, + 1829.0, + 295.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1821.0, + 1407.0, + 1821.0, + 1407.0, + 1865.0, + 292.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1856.0, + 1406.0, + 1856.0, + 1406.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1886.0, + 1406.0, + 1886.0, + 1406.0, + 1922.0, + 293.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 1404.0, + 1918.0, + 1404.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 575.0, + 854.0, + 575.0, + 854.0, + 613.0, + 315.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 378.0, + 577.0, + 378.0, + 577.0, + 407.0, + 314.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 378.0, + 816.0, + 378.0, + 816.0, + 407.0, + 621.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 374.0, + 1033.0, + 374.0, + 1033.0, + 409.0, + 843.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 406.0, + 593.0, + 406.0, + 593.0, + 440.0, + 312.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 434.0, + 1167.0, + 434.0, + 1167.0, + 476.0, + 314.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 544.0, + 511.0, + 544.0, + 511.0, + 581.0, + 312.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 513.0, + 766.0, + 513.0, + 766.0, + 552.0, + 529.0, + 552.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1405, + 1698, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1226, + 1405, + 1226, + 1405, + 1682, + 298, + 1682 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 933, + 1404, + 933, + 1404, + 1210, + 297, + 1210 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 362, + 220, + 1350, + 220, + 1350, + 571, + 362, + 571 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 581, + 1406, + 581, + 1406, + 803, + 296, + 803 + ], + "score": 0.961 + }, + { + "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": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.138 + }, + { + "category_id": 13, + "poly": [ + 1293, + 582, + 1324, + 582, + 1324, + 609, + 1293, + 609 + ], + "score": 0.52, + "latex": "( I )" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 219.0, + 678.0, + 219.0, + 678.0, + 245.0, + 521.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 255.0, + 662.0, + 255.0, + 662.0, + 266.0, + 644.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 252.0, + 836.0, + 252.0, + 836.0, + 269.0, + 807.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 251.0, + 1010.0, + 251.0, + 1010.0, + 269.0, + 982.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 253.0, + 1320.0, + 253.0, + 1320.0, + 266.0, + 1297.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 262.0, + 513.0, + 262.0, + 513.0, + 291.0, + 366.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 270.0, + 998.0, + 270.0, + 998.0, + 280.0, + 986.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 296.0, + 558.0, + 296.0, + 558.0, + 313.0, + 530.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 294.0, + 671.0, + 294.0, + 671.0, + 314.0, + 628.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 320.0, + 565.0, + 320.0, + 565.0, + 371.0, + 493.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 329.0, + 679.0, + 329.0, + 679.0, + 362.0, + 618.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 330.0, + 852.0, + 330.0, + 852.0, + 361.0, + 790.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 329.0, + 1023.0, + 329.0, + 1023.0, + 363.0, + 963.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 390.0, + 668.0, + 390.0, + 668.0, + 405.0, + 596.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 392.0, + 1329.0, + 392.0, + 1329.0, + 400.0, + 1312.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 400.0, + 508.0, + 400.0, + 508.0, + 431.0, + 372.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 433.0, + 592.0, + 433.0, + 592.0, + 453.0, + 540.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 431.0, + 681.0, + 431.0, + 681.0, + 454.0, + 638.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 461.0, + 677.0, + 461.0, + 677.0, + 484.0, + 558.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 458.0, + 836.0, + 458.0, + 836.0, + 485.0, + 748.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 461.0, + 1165.0, + 461.0, + 1165.0, + 484.0, + 968.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 459.0, + 1326.0, + 459.0, + 1326.0, + 485.0, + 1211.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 485.0, + 676.0, + 485.0, + 676.0, + 515.0, + 562.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 484.0, + 824.0, + 484.0, + 824.0, + 515.0, + 765.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 484.0, + 1210.0, + 484.0, + 1210.0, + 514.0, + 1100.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 513.0, + 551.0, + 513.0, + 551.0, + 546.0, + 354.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 519.0, + 623.0, + 519.0, + 623.0, + 535.0, + 609.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 512.0, + 827.0, + 512.0, + 827.0, + 543.0, + 768.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 512.0, + 1127.0, + 512.0, + 1127.0, + 545.0, + 1012.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 515.0, + 1322.0, + 515.0, + 1322.0, + 542.0, + 1214.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 526.0, + 1164.0, + 526.0, + 1164.0, + 556.0, + 1138.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 543.0, + 643.0, + 543.0, + 643.0, + 576.0, + 591.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 542.0, + 1037.0, + 542.0, + 1037.0, + 575.0, + 829.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 546.0, + 1295.0, + 546.0, + 1295.0, + 574.0, + 1247.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 580.0, + 1292.0, + 580.0, + 1292.0, + 611.0, + 295.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 580.0, + 1404.0, + 580.0, + 1404.0, + 611.0, + 1325.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 605.0, + 1406.0, + 605.0, + 1406.0, + 643.0, + 291.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 633.0, + 1408.0, + 633.0, + 1408.0, + 672.0, + 291.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 663.0, + 1404.0, + 663.0, + 1404.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 691.0, + 1407.0, + 691.0, + 1407.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 717.0, + 1406.0, + 717.0, + 1406.0, + 754.0, + 291.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 744.0, + 1406.0, + 744.0, + 1406.0, + 783.0, + 291.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 774.0, + 603.0, + 774.0, + 603.0, + 807.0, + 293.0, + 807.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, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1735.0, + 293.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1405.0, + 1727.0, + 1405.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1756.0, + 1405.0, + 1756.0, + 1405.0, + 1798.0, + 292.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1883.0, + 1403.0, + 1883.0, + 1403.0, + 1914.0, + 295.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1403.0, + 1913.0, + 1403.0, + 1944.0, + 295.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": [ + 292.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2011.0, + 292.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1354.0, + 2001.0, + 1354.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1255.0, + 1403.0, + 1255.0, + 1403.0, + 1290.0, + 295.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1285.0, + 1405.0, + 1285.0, + 1405.0, + 1320.0, + 296.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 1403.0, + 1315.0, + 1403.0, + 1350.0, + 295.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1381.0, + 295.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1407.0, + 1375.0, + 1407.0, + 1411.0, + 293.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1407.0, + 1408.0, + 1407.0, + 1408.0, + 1442.0, + 295.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1502.0, + 295.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 1406.0, + 1497.0, + 1406.0, + 1535.0, + 293.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1561.0, + 1402.0, + 1561.0, + 1402.0, + 1592.0, + 296.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 1403.0, + 1618.0, + 1403.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 815.0, + 1650.0, + 815.0, + 1685.0, + 293.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 934.0, + 1402.0, + 934.0, + 1402.0, + 967.0, + 296.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 963.0, + 1406.0, + 963.0, + 1406.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 996.0, + 1402.0, + 996.0, + 1402.0, + 1028.0, + 296.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1026.0, + 1404.0, + 1026.0, + 1404.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1089.0, + 295.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 1406.0, + 1117.0, + 1406.0, + 1150.0, + 295.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1146.0, + 1405.0, + 1146.0, + 1405.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1179.0, + 1406.0, + 1179.0, + 1406.0, + 1212.0, + 296.0, + 1212.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 588, + 1404, + 588, + 1404, + 1107, + 298, + 1107 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1405, + 1638, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1225, + 1406, + 1225, + 1406, + 1622, + 298, + 1622 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 296, + 1405, + 296, + 1405, + 574, + 298, + 574 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 303, + 1154, + 729, + 1154, + 729, + 1189, + 303, + 1189 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 813, + 76, + 813, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 577, + 226, + 577, + 261, + 300, + 261 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.601 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.422 + }, + { + "category_id": 13, + "poly": [ + 1191, + 923, + 1400, + 923, + 1400, + 957, + 1191, + 957 + ], + "score": 0.94, + "latex": "\\mathcal { D } = \\{ ( s , a , s ^ { \\prime } , r ) \\}" + }, + { + "category_id": 13, + "poly": [ + 903, + 450, + 1009, + 450, + 1009, + 483, + 903, + 483 + ], + "score": 0.93, + "latex": "p ( s ^ { \\prime } | s , a )" + }, + { + "category_id": 13, + "poly": [ + 1040, + 328, + 1148, + 328, + 1148, + 361, + 1040, + 361 + ], + "score": 0.92, + "latex": "p ( s ^ { \\prime } | s , a )" + }, + { + "category_id": 13, + "poly": [ + 661, + 359, + 712, + 359, + 712, + 392, + 661, + 392 + ], + "score": 0.92, + "latex": "r ( s )" + }, + { + "category_id": 13, + "poly": [ + 296, + 328, + 449, + 328, + 449, + 361, + 296, + 361 + ], + "score": 0.91, + "latex": "( S , \\mathcal { A } , p , r , \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 1013, + 361, + 1127, + 361, + 1127, + 392, + 1013, + 392 + ], + "score": 0.91, + "latex": "\\gamma \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 706, + 1821, + 780, + 1821, + 780, + 1849, + 706, + 1849 + ], + "score": 0.9, + "latex": "I \\times B" + }, + { + "category_id": 13, + "poly": [ + 691, + 512, + 741, + 512, + 741, + 543, + 691, + 543 + ], + "score": 0.9, + "latex": "r ( s )" + }, + { + "category_id": 13, + "poly": [ + 563, + 1790, + 638, + 1790, + 638, + 1819, + 563, + 1819 + ], + "score": 0.9, + "latex": "I \\times B" + }, + { + "category_id": 13, + "poly": [ + 723, + 481, + 753, + 481, + 753, + 514, + 723, + 514 + ], + "score": 0.87, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 953, + 422, + 984, + 422, + 984, + 447, + 953, + 447 + ], + "score": 0.86, + "latex": "\\pi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1321, + 298, + 1403, + 298, + 1403, + 328, + 1321, + 328 + ], + "score": 0.84, + "latex": "\\begin{array} { r l } { \\mathcal { M } } & { { } = } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 528, + 1761, + 553, + 1761, + 553, + 1787, + 528, + 1787 + ], + "score": 0.8, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 541, + 330, + 565, + 330, + 565, + 357, + 541, + 357 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 859, + 681, + 884, + 681, + 884, + 707, + 859, + 707 + ], + "score": 0.77, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1791, + 794, + 1791, + 794, + 1818, + 775, + 1818 + ], + "score": 0.73, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 782, + 330, + 808, + 330, + 808, + 357, + 782, + 357 + ], + "score": 0.72, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 372, + 395, + 392, + 395, + 392, + 417, + 372, + 417 + ], + "score": 0.71, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1761, + 1140, + 1761, + 1140, + 1787, + 1122, + 1787 + ], + "score": 0.7, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1730, + 1210, + 1730, + 1210, + 1756, + 1191, + 1756 + ], + "score": 0.65, + "latex": "I" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1150.0, + 736.0, + 1150.0, + 736.0, + 1196.0, + 292.0, + 1196.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": [ + 292.0, + 224.0, + 581.0, + 224.0, + 581.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 584.0, + 1405.0, + 584.0, + 1405.0, + 624.0, + 295.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 617.0, + 1406.0, + 617.0, + 1406.0, + 654.0, + 293.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 646.0, + 1408.0, + 646.0, + 1408.0, + 684.0, + 293.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 858.0, + 676.0, + 858.0, + 715.0, + 293.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 676.0, + 1406.0, + 676.0, + 1406.0, + 715.0, + 885.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 710.0, + 1407.0, + 710.0, + 1407.0, + 744.0, + 294.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1404.0, + 739.0, + 1404.0, + 771.0, + 294.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 805.0, + 293.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 797.0, + 1408.0, + 797.0, + 1408.0, + 838.0, + 291.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 831.0, + 1409.0, + 831.0, + 1409.0, + 866.0, + 294.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 859.0, + 1405.0, + 859.0, + 1405.0, + 899.0, + 293.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 893.0, + 1404.0, + 893.0, + 1404.0, + 925.0, + 296.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 922.0, + 1190.0, + 922.0, + 1190.0, + 958.0, + 293.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 953.0, + 1405.0, + 953.0, + 1405.0, + 989.0, + 296.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1405.0, + 983.0, + 1405.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1014.0, + 1404.0, + 1014.0, + 1404.0, + 1050.0, + 296.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1042.0, + 1405.0, + 1042.0, + 1405.0, + 1081.0, + 293.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1073.0, + 1173.0, + 1073.0, + 1173.0, + 1111.0, + 293.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1634.0, + 1409.0, + 1634.0, + 1409.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1704.0, + 295.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1734.0, + 295.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1729.0, + 1190.0, + 1729.0, + 1190.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1729.0, + 1405.0, + 1729.0, + 1405.0, + 1764.0, + 1211.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1761.0, + 527.0, + 1761.0, + 527.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1761.0, + 1121.0, + 1761.0, + 1121.0, + 1793.0, + 554.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1761.0, + 1406.0, + 1761.0, + 1406.0, + 1793.0, + 1141.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1788.0, + 562.0, + 1788.0, + 562.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1788.0, + 774.0, + 1788.0, + 774.0, + 1826.0, + 639.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1788.0, + 1406.0, + 1788.0, + 1406.0, + 1826.0, + 795.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 705.0, + 1818.0, + 705.0, + 1858.0, + 292.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1818.0, + 1407.0, + 1818.0, + 1407.0, + 1858.0, + 781.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1850.0, + 1406.0, + 1850.0, + 1406.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1408.0, + 1910.0, + 1408.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1978.0, + 293.0, + 1978.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": [ + 296.0, + 2004.0, + 1161.0, + 2004.0, + 1161.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1255.0, + 1406.0, + 1255.0, + 1406.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1282.0, + 1404.0, + 1282.0, + 1404.0, + 1320.0, + 293.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 1406.0, + 1312.0, + 1406.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1343.0, + 1406.0, + 1343.0, + 1406.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1378.0, + 1403.0, + 1378.0, + 1403.0, + 1411.0, + 296.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1407.0, + 1404.0, + 1407.0, + 1404.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1439.0, + 1404.0, + 1439.0, + 1404.0, + 1471.0, + 296.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1407.0, + 1467.0, + 1407.0, + 1502.0, + 295.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1532.0, + 296.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1527.0, + 1406.0, + 1527.0, + 1406.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1557.0, + 1407.0, + 1557.0, + 1407.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 640.0, + 1591.0, + 640.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 296.0, + 1320.0, + 296.0, + 1320.0, + 333.0, + 295.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 323.0, + 295.0, + 323.0, + 295.0, + 365.0, + 291.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 323.0, + 540.0, + 323.0, + 540.0, + 365.0, + 450.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 323.0, + 781.0, + 323.0, + 781.0, + 365.0, + 566.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 323.0, + 1039.0, + 323.0, + 1039.0, + 365.0, + 809.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 323.0, + 1408.0, + 323.0, + 1408.0, + 365.0, + 1149.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 358.0, + 660.0, + 358.0, + 660.0, + 394.0, + 293.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 358.0, + 1012.0, + 358.0, + 1012.0, + 394.0, + 713.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 358.0, + 1406.0, + 358.0, + 1406.0, + 394.0, + 1128.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 386.0, + 371.0, + 386.0, + 371.0, + 427.0, + 293.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 386.0, + 1410.0, + 386.0, + 1410.0, + 427.0, + 393.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 419.0, + 952.0, + 419.0, + 952.0, + 456.0, + 295.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 419.0, + 1407.0, + 419.0, + 1407.0, + 456.0, + 985.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 448.0, + 902.0, + 448.0, + 902.0, + 485.0, + 295.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 448.0, + 1407.0, + 448.0, + 1407.0, + 485.0, + 1010.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 478.0, + 722.0, + 478.0, + 722.0, + 519.0, + 293.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 478.0, + 1408.0, + 478.0, + 1408.0, + 519.0, + 754.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 510.0, + 690.0, + 510.0, + 690.0, + 547.0, + 295.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 510.0, + 1405.0, + 510.0, + 1405.0, + 547.0, + 742.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 541.0, + 1344.0, + 541.0, + 1344.0, + 577.0, + 293.0, + 577.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1462, + 1405, + 1462, + 1405, + 1679, + 297, + 1679 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 566, + 298, + 566 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 931, + 1406, + 931, + 1406, + 1122, + 297, + 1122 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 682, + 1406, + 682, + 1406, + 838, + 298, + 838 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1796, + 1403, + 1796, + 1403, + 1952, + 298, + 1952 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 290, + 1241, + 1404, + 1241, + 1404, + 1310, + 290, + 1310 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 636, + 1694, + 1061, + 1694, + 1061, + 1780, + 636, + 1780 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 576, + 1137, + 1120, + 1137, + 1120, + 1226, + 576, + 1226 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 295, + 1977, + 1405, + 1977, + 1405, + 2035, + 295, + 2035 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 503, + 1330, + 1193, + 1330, + 1193, + 1372, + 503, + 1372 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 298, + 611, + 1013, + 611, + 1013, + 648, + 298, + 648 + ], + "score": 0.912 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1714, + 1400, + 1714, + 1400, + 1744, + 1366, + 1744 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1158, + 1400, + 1158, + 1400, + 1189, + 1366, + 1189 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1336, + 1400, + 1336, + 1400, + 1366, + 1366, + 1366 + ], + "score": 0.873 + }, + { + "category_id": 0, + "poly": [ + 298, + 874, + 941, + 874, + 941, + 908, + 298, + 908 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2111, + 840, + 2111 + ], + "score": 0.797 + }, + { + "category_id": 0, + "poly": [ + 299, + 1405, + 987, + 1405, + 987, + 1438, + 299, + 1438 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 299, + 1405, + 987, + 1405, + 987, + 1438, + 299, + 1438 + ], + "score": 0.145 + }, + { + "category_id": 14, + "poly": [ + 635, + 1693, + 1062, + 1693, + 1062, + 1781, + 635, + 1781 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\beta } \\frac { 1 } { | \\mathscr { D } | } \\sum _ { ( s _ { t } , a _ { t } ) \\in \\mathscr { D } } \\frac { 1 } { 2 } \\left. a _ { t } - \\hat { \\pi } _ { \\beta } \\left( s _ { t } \\right) \\right. _ { 2 } ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 574, + 1137, + 1123, + 1137, + 1123, + 1226, + 574, + 1226 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\phi _ { i } } \\frac { 1 } { | \\mathcal { D } | } \\sum _ { \\left( s _ { t } , a _ { t } , s _ { t + 1 } \\right) \\in \\mathcal { D } } \\frac { 1 } { 2 } \\left. s _ { t + 1 } - \\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right) \\right. _ { 2 } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 1128, + 1055, + 1247, + 1055, + 1247, + 1094, + 1128, + 1094 + ], + "score": 0.93, + "latex": "\\hat { f } _ { \\phi _ { i } } \\left( s _ { t } , a _ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 980, + 965, + 1231, + 965, + 1231, + 1020, + 980, + 1020 + ], + "score": 0.93, + "latex": "\\hat { f } _ { \\phi } = \\left\\{ \\hat { f } _ { \\phi _ { 1 } } , \\dots , \\hat { f } _ { \\phi _ { K } } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 691, + 1016, + 730, + 1016, + 730, + 1057, + 691, + 1057 + ], + "score": 0.92, + "latex": "\\hat { f } _ { \\phi _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 573, + 1274, + 611, + 1274, + 611, + 1312, + 573, + 1312 + ], + "score": 0.91, + "latex": "\\hat { f } _ { \\phi _ { i } }" + }, + { + "category_id": 14, + "poly": [ + 505, + 1327, + 1194, + 1327, + 1194, + 1371, + 505, + 1371 + ], + "score": 0.9, + "latex": "a _ { t } \\sim \\pi _ { \\theta } ( \\cdot | \\hat { s } _ { t } ) , \\quad \\hat { s } _ { t + 1 } = \\hat { f } _ { \\phi _ { i } } ( \\hat { s } _ { t } , a _ { t } ) \\quad \\mathrm { w h e r e } \\quad i \\sim \\{ 1 \\cdot \\cdot \\cdot K \\} ." + }, + { + "category_id": 13, + "poly": [ + 355, + 1095, + 408, + 1095, + 408, + 1123, + 355, + 1123 + ], + "score": 0.89, + "latex": "s _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1618, + 427, + 1618, + 427, + 1650, + 394, + 1650 + ], + "score": 0.89, + "latex": "\\hat { \\pi } _ { \\beta }" + }, + { + "category_id": 13, + "poly": [ + 952, + 1024, + 981, + 1024, + 981, + 1055, + 952, + 1055 + ], + "score": 0.88, + "latex": "\\phi _ { i }" + }, + { + "category_id": 13, + "poly": [ + 481, + 1830, + 514, + 1830, + 514, + 1862, + 481, + 1862 + ], + "score": 0.88, + "latex": "\\hat { \\pi } _ { \\beta }" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1803, + 1169, + 1803, + 1169, + 1828, + 1137, + 1828 + ], + "score": 0.85, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1863, + 1197, + 1863, + 1197, + 1889, + 1165, + 1889 + ], + "score": 0.85, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1590, + 813, + 1590, + 813, + 1617, + 782, + 1617 + ], + "score": 0.84, + "latex": "\\pi _ { b }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1248, + 629, + 1248, + 629, + 1273, + 599, + 1273 + ], + "score": 0.84, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 571, + 1091, + 596, + 1091, + 596, + 1116, + 571, + 1116 + ], + "score": 0.83, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 628, + 1618, + 648, + 1618, + 648, + 1648, + 628, + 1648 + ], + "score": 0.82, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 596, + 975, + 624, + 975, + 624, + 1002, + 596, + 1002 + ], + "score": 0.8, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1557, + 1188, + 1557, + 1188, + 1583, + 1163, + 1583 + ], + "score": 0.78, + "latex": "\\mathcal { D }" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2015.0, + 328.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 772.0, + 2002.0, + 772.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 611.0, + 1015.0, + 611.0, + 1015.0, + 652.0, + 294.0, + 652.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, + 875.0, + 944.0, + 875.0, + 944.0, + 911.0, + 294.0, + 911.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": [ + 295.0, + 1405.0, + 991.0, + 1405.0, + 991.0, + 1441.0, + 295.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1464.0, + 1405.0, + 1464.0, + 1405.0, + 1499.0, + 295.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1530.0, + 294.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1527.0, + 1403.0, + 1527.0, + 1403.0, + 1558.0, + 296.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1556.0, + 1162.0, + 1556.0, + 1162.0, + 1588.0, + 294.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1556.0, + 1407.0, + 1556.0, + 1407.0, + 1588.0, + 1189.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1585.0, + 781.0, + 1585.0, + 781.0, + 1621.0, + 291.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1621.0, + 814.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1618.0, + 393.0, + 1618.0, + 393.0, + 1652.0, + 295.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1618.0, + 627.0, + 1618.0, + 627.0, + 1652.0, + 428.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1618.0, + 1405.0, + 1618.0, + 1405.0, + 1652.0, + 649.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1647.0, + 632.0, + 1647.0, + 632.0, + 1682.0, + 295.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1408.0, + 260.0, + 1408.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 384.0, + 1405.0, + 384.0, + 1405.0, + 415.0, + 296.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1405.0, + 411.0, + 1405.0, + 448.0, + 293.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 440.0, + 1408.0, + 440.0, + 1408.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 1402.0, + 476.0, + 1402.0, + 507.0, + 296.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 1406.0, + 504.0, + 1406.0, + 539.0, + 295.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 534.0, + 907.0, + 534.0, + 907.0, + 568.0, + 295.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 932.0, + 1408.0, + 932.0, + 1408.0, + 968.0, + 295.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 963.0, + 595.0, + 963.0, + 595.0, + 1016.0, + 289.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 963.0, + 979.0, + 963.0, + 979.0, + 1016.0, + 625.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 963.0, + 1407.0, + 963.0, + 1407.0, + 1016.0, + 1232.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1021.0, + 690.0, + 1021.0, + 690.0, + 1058.0, + 296.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1021.0, + 951.0, + 1021.0, + 951.0, + 1058.0, + 731.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1021.0, + 1404.0, + 1021.0, + 1404.0, + 1058.0, + 982.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1054.0, + 1127.0, + 1054.0, + 1127.0, + 1097.0, + 294.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1054.0, + 1404.0, + 1054.0, + 1404.0, + 1097.0, + 1248.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1092.0, + 354.0, + 1092.0, + 354.0, + 1121.0, + 293.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1092.0, + 570.0, + 1092.0, + 570.0, + 1121.0, + 409.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1092.0, + 607.0, + 1092.0, + 607.0, + 1121.0, + 597.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1406.0, + 680.0, + 1406.0, + 720.0, + 293.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 709.0, + 1408.0, + 709.0, + 1408.0, + 751.0, + 293.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 740.0, + 1409.0, + 740.0, + 1409.0, + 781.0, + 293.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 772.0, + 1404.0, + 772.0, + 1404.0, + 812.0, + 292.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 398.0, + 805.0, + 398.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1794.0, + 1136.0, + 1794.0, + 1136.0, + 1834.0, + 293.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1794.0, + 1405.0, + 1794.0, + 1405.0, + 1834.0, + 1170.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1827.0, + 480.0, + 1827.0, + 480.0, + 1862.0, + 294.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1827.0, + 1404.0, + 1827.0, + 1404.0, + 1862.0, + 515.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1859.0, + 1164.0, + 1859.0, + 1164.0, + 1893.0, + 296.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1893.0, + 1198.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1889.0, + 1404.0, + 1889.0, + 1404.0, + 1922.0, + 296.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1919.0, + 1404.0, + 1919.0, + 1404.0, + 1953.0, + 296.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1237.0, + 598.0, + 1237.0, + 598.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1237.0, + 1407.0, + 1237.0, + 1407.0, + 1281.0, + 630.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1274.0, + 572.0, + 1274.0, + 572.0, + 1316.0, + 296.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1274.0, + 1100.0, + 1274.0, + 1100.0, + 1316.0, + 612.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1405.0, + 991.0, + 1405.0, + 991.0, + 1441.0, + 295.0, + 1441.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1415, + 1405, + 1415, + 1405, + 1691, + 297, + 1691 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1787, + 1404, + 1787, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1005, + 1404, + 1005, + 1404, + 1191, + 298, + 1191 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1204, + 1404, + 1204, + 1404, + 1299, + 299, + 1299 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 424, + 761, + 1274, + 761, + 1274, + 910, + 424, + 910 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 927, + 1400, + 927, + 1400, + 992, + 299, + 992 + ], + "score": 0.949 + }, + { + "category_id": 5, + "poly": [ + 300, + 272, + 1402, + 272, + 1402, + 621, + 300, + 621 + ], + "score": 0.943, + "html": "
Input: Empty dataset Dau,D,Initial parameters Φ = {1,·,Φk},β,Number of policy optimization T
Numberof deploymentsI.
1:Randomly initialize the target policy πθ .
2:for deploymenti=1,·.,I do
3:Collect B transitions in the true environment using T and add them to dataset
Dall←DalU{St,at,rt,St+1},D←{st,at,rt,St+1}.
4:Train K dynamics models f using Dau via Equation 1.
5: 6:Train estimated behavior policy πβ using D by behavior cloning via Equation 3.
7:Re-initialize target policy πeo = Normal(β,1). for policy optimization k =1,..·,T do
8:Generate imaginary rollout via Equation 2.
9:Optimize target policy Tβ satisfying Equation 4 with the rollout.
" + }, + { + "category_id": 1, + "poly": [ + 297, + 681, + 1401, + 681, + 1401, + 744, + 297, + 744 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 812, + 75, + 812, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 1345, + 557, + 1345, + 557, + 1380, + 300, + 1380 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 298, + 1730, + 878, + 1730, + 878, + 1763, + 298, + 1763 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 785, + 1400, + 785, + 1400, + 814, + 1366, + 814 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.719 + }, + { + "category_id": 0, + "poly": [ + 299, + 230, + 850, + 230, + 850, + 262, + 299, + 262 + ], + "score": 0.534 + }, + { + "category_id": 6, + "poly": [ + 299, + 230, + 850, + 230, + 850, + 262, + 299, + 262 + ], + "score": 0.304 + }, + { + "category_id": 14, + "poly": [ + 424, + 760, + 1272, + 760, + 1272, + 911, + 424, + 911 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) ] } \\\\ & { \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathbb { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , \\quad \\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 376, + 928, + 498, + 928, + 498, + 961, + 376, + 961 + ], + "score": 0.93, + "latex": "A ^ { \\pi _ { \\theta _ { k } } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 810, + 273, + 1011, + 273, + 1011, + 304, + 810, + 304 + ], + "score": 0.89, + "latex": "\\phi = \\{ \\phi _ { 1 } , \\cdot \\cdot \\cdot , \\phi _ { K } \\}" + }, + { + "category_id": 13, + "poly": [ + 729, + 445, + 778, + 445, + 778, + 472, + 729, + 472 + ], + "score": 0.89, + "latex": "\\mathcal { D } _ { a l l }" + }, + { + "category_id": 13, + "poly": [ + 711, + 412, + 946, + 412, + 946, + 443, + 711, + 443 + ], + "score": 0.89, + "latex": "\\mathcal { D } \\gets \\{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 636, + 441, + 665, + 441, + 665, + 475, + 636, + 475 + ], + "score": 0.88, + "latex": "\\hat { f } _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 628, + 501, + 856, + 501, + 856, + 529, + 628, + 529 + ], + "score": 0.88, + "latex": "\\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 )" + }, + { + "category_id": 13, + "poly": [ + 739, + 934, + 782, + 934, + 782, + 962, + 739, + 962 + ], + "score": 0.88, + "latex": "\\pi _ { \\theta _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 530, + 274, + 578, + 274, + 578, + 301, + 530, + 301 + ], + "score": 0.86, + "latex": "\\mathcal { D } _ { a l l }" + }, + { + "category_id": 13, + "poly": [ + 689, + 475, + 720, + 475, + 720, + 502, + 689, + 502 + ], + "score": 0.85, + "latex": "\\hat { \\pi } _ { \\beta }" + }, + { + "category_id": 13, + "poly": [ + 502, + 358, + 644, + 358, + 644, + 385, + 502, + 385 + ], + "score": 0.84, + "latex": "i = 1 , \\cdots , I \\iota" + }, + { + "category_id": 13, + "poly": [ + 881, + 389, + 910, + 389, + 910, + 411, + 881, + 411 + ], + "score": 0.83, + "latex": "\\pi \\theta" + }, + { + "category_id": 13, + "poly": [ + 625, + 588, + 653, + 588, + 653, + 611, + 625, + 611 + ], + "score": 0.82, + "latex": "\\pi \\theta" + }, + { + "category_id": 13, + "poly": [ + 711, + 335, + 739, + 335, + 739, + 356, + 711, + 356 + ], + "score": 0.81, + "latex": "\\pi \\theta" + }, + { + "category_id": 13, + "poly": [ + 446, + 385, + 469, + 385, + 469, + 409, + 446, + 409 + ], + "score": 0.81, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 784, + 474, + 808, + 474, + 808, + 498, + 784, + 498 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 606, + 530, + 749, + 530, + 749, + 556, + 606, + 556 + ], + "score": 0.8, + "latex": "k = 1 , \\cdots , T" + }, + { + "category_id": 13, + "poly": [ + 534, + 961, + 550, + 961, + 550, + 987, + 534, + 987 + ], + "score": 0.79, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 366, + 411, + 701, + 411, + 701, + 442, + 366, + 442 + ], + "score": 0.75, + "latex": "\\mathcal { D } _ { a l l } \\gets \\mathcal { D } _ { a l l } \\cup \\left\\{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 588, + 303, + 604, + 303, + 604, + 326, + 588, + 326 + ], + "score": 0.75, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 427, + 445, + 454, + 445, + 454, + 470, + 427, + 470 + ], + "score": 0.73, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 588, + 275, + 612, + 275, + 612, + 299, + 588, + 299 + ], + "score": 0.72, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 275, + 1042, + 275, + 1042, + 303, + 1022, + 303 + ], + "score": 0.71, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1376, + 276, + 1397, + 276, + 1397, + 299, + 1376, + 299 + ], + "score": 0.67, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1359, + 1478, + 1403, + 1478, + 1403, + 1507, + 1359, + 1507 + ], + "score": 0.38, + "latex": "\\mathrm { W u }" + }, + { + "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": [ + 292.0, + 1342.0, + 561.0, + 1342.0, + 561.0, + 1386.0, + 292.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 881.0, + 1730.0, + 881.0, + 1766.0, + 295.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 853.0, + 228.0, + 853.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 853.0, + 228.0, + 853.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 1403.0, + 1413.0, + 1403.0, + 1451.0, + 295.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1445.0, + 1405.0, + 1445.0, + 1405.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1358.0, + 1476.0, + 1358.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1506.0, + 1406.0, + 1506.0, + 1406.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1537.0, + 1406.0, + 1537.0, + 1406.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1604.0, + 294.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 1402.0, + 1599.0, + 1402.0, + 1631.0, + 295.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1626.0, + 1406.0, + 1626.0, + 1406.0, + 1665.0, + 294.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1659.0, + 1260.0, + 1659.0, + 1260.0, + 1694.0, + 292.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1788.0, + 1405.0, + 1788.0, + 1405.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1404.0, + 1821.0, + 1404.0, + 1851.0, + 296.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1914.0, + 293.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1974.0, + 294.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2004.0, + 296.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1180.0, + 2002.0, + 1180.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 1406.0, + 1004.0, + 1406.0, + 1041.0, + 293.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1035.0, + 1405.0, + 1035.0, + 1405.0, + 1071.0, + 296.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 1404.0, + 1066.0, + 1404.0, + 1102.0, + 294.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1097.0, + 1403.0, + 1097.0, + 1403.0, + 1131.0, + 295.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1130.0, + 1405.0, + 1130.0, + 1405.0, + 1162.0, + 296.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1158.0, + 1407.0, + 1158.0, + 1407.0, + 1192.0, + 293.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1200.0, + 1405.0, + 1200.0, + 1405.0, + 1245.0, + 292.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1234.0, + 1401.0, + 1234.0, + 1401.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1267.0, + 679.0, + 1267.0, + 679.0, + 1301.0, + 294.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 923.0, + 375.0, + 923.0, + 375.0, + 965.0, + 293.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 923.0, + 738.0, + 923.0, + 738.0, + 965.0, + 499.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 923.0, + 1405.0, + 923.0, + 1405.0, + 965.0, + 783.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 958.0, + 533.0, + 958.0, + 533.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 958.0, + 848.0, + 958.0, + 848.0, + 994.0, + 551.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 679.0, + 1403.0, + 679.0, + 1403.0, + 718.0, + 293.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 713.0, + 702.0, + 713.0, + 702.0, + 748.0, + 295.0, + 748.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1457, + 1405, + 1457, + 1405, + 1642, + 298, + 1642 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1176, + 1404, + 1176, + 1404, + 1361, + 298, + 1361 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1656, + 1404, + 1656, + 1404, + 1842, + 298, + 1842 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 301, + 1856, + 1401, + 1856, + 1401, + 1950, + 301, + 1950 + ], + "score": 0.968 + }, + { + "category_id": 2, + "poly": [ + 321, + 1974, + 1383, + 1974, + 1383, + 2034, + 321, + 2034 + ], + "score": 0.942 + }, + { + "category_id": 5, + "poly": [ + 425, + 228, + 1272, + 228, + 1272, + 993, + 425, + 993 + ], + "score": 0.935, + "html": "
1,000,000(1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset BC1191 1321±141412611281376
4281±12 5783±2721341±161 1130±1271421±147 2153±753
BCQ2021±31 2072±2851422±90
BRAC7192±1152239±1124
BRAC (max Q)2369±2347320±911916±3432409±1210
BREMEN (Ours)3328±2758055±1032058±8522346±230
ME-TRPO (offline)1258±5501804±924518±91211±154
100,000(100K)transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191406611281376
BC1330±814266±211322±1091426±47
BCQ1363±1993915±4111129±2382187±196
BRAC-157±3832505±25011310±702162±1109
BRAC (max Q)-226±3872332±24221422±1012164±1114
BREMEN (Ours)1633±1276095±3702191±4552132±301
ME-TRPO (offline)974±42±434307±17010±61
50,000 (50K) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset1191413811281376
BC1270±654230±491249±611420±194
BCQ1329±951319±6261178±2351841±439
BRAC-878±244-597±731277±102976±1207
BRAC (max Q)-843±279-590±561276±225903±1137
BREMEN(Ours)1347±2835823±1461632±7962280±647
938±32
ME-TRPO (offfline)-73±95152±13176±343
" + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.794 + }, + { + "category_id": 0, + "poly": [ + 299, + 1399, + 1200, + 1399, + 1200, + 1431, + 299, + 1431 + ], + "score": 0.777 + }, + { + "category_id": 7, + "poly": [ + 299, + 1004, + 1404, + 1004, + 1404, + 1117, + 299, + 1117 + ], + "score": 0.457 + }, + { + "category_id": 1, + "poly": [ + 299, + 1399, + 1200, + 1399, + 1200, + 1431, + 299, + 1431 + ], + "score": 0.106 + }, + { + "category_id": 13, + "poly": [ + 702, + 1209, + 799, + 1209, + 799, + 1238, + 702, + 1238 + ], + "score": 0.89, + "latex": "5 \\sim 1 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 656, + 1658, + 717, + 1658, + 717, + 1687, + 656, + 1687 + ], + "score": 0.61, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 419, + 1209, + 465, + 1209, + 465, + 1238, + 419, + 1238 + ], + "score": 0.53, + "latex": "5 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 831, + 1658, + 891, + 1658, + 891, + 1687, + 831, + 1687 + ], + "score": 0.52, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 930, + 1611, + 988, + 1611, + 988, + 1640, + 930, + 1640 + ], + "score": 0.51, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1020, + 1611, + 1080, + 1611, + 1080, + 1640, + 1020, + 1640 + ], + "score": 0.36, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 515, + 1209, + 572, + 1209, + 572, + 1237, + 515, + 1237 + ], + "score": 0.35, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1969.0, + 1387.0, + 1969.0, + 1387.0, + 2008.0, + 330.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1996.0, + 1196.0, + 1996.0, + 1196.0, + 2039.0, + 328.0, + 2039.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": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 1206.0, + 1397.0, + 1206.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1001.0, + 1406.0, + 1001.0, + 1406.0, + 1039.0, + 292.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 1408.0, + 1027.0, + 1408.0, + 1064.0, + 293.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1059.0, + 1405.0, + 1059.0, + 1405.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1087.0, + 1381.0, + 1087.0, + 1381.0, + 1120.0, + 295.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1459.0, + 1407.0, + 1459.0, + 1407.0, + 1491.0, + 296.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1486.0, + 1400.0, + 1486.0, + 1400.0, + 1524.0, + 293.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1519.0, + 1405.0, + 1519.0, + 1405.0, + 1555.0, + 295.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1547.0, + 1406.0, + 1547.0, + 1406.0, + 1584.0, + 293.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1580.0, + 1407.0, + 1580.0, + 1407.0, + 1613.0, + 293.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1608.0, + 929.0, + 1608.0, + 929.0, + 1644.0, + 293.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1608.0, + 1019.0, + 1608.0, + 1019.0, + 1644.0, + 989.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1608.0, + 1276.0, + 1608.0, + 1276.0, + 1644.0, + 1081.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1613.0, + 1280.0, + 1613.0, + 1280.0, + 1623.5, + 1264.0, + 1623.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1210.0, + 296.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 418.0, + 1207.0, + 418.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1207.0, + 514.0, + 1207.0, + 514.0, + 1243.0, + 466.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1207.0, + 701.0, + 1207.0, + 701.0, + 1243.0, + 573.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1207.0, + 1404.0, + 1207.0, + 1404.0, + 1243.0, + 800.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1239.0, + 1401.0, + 1239.0, + 1401.0, + 1271.0, + 296.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1270.0, + 1404.0, + 1270.0, + 1404.0, + 1302.0, + 296.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1333.0, + 293.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1328.0, + 914.0, + 1328.0, + 914.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 655.0, + 1656.0, + 655.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1656.0, + 830.0, + 1656.0, + 830.0, + 1692.0, + 718.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1656.0, + 1408.0, + 1656.0, + 1408.0, + 1692.0, + 892.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1720.0, + 1405.0, + 1720.0, + 1405.0, + 1752.0, + 296.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1749.0, + 1405.0, + 1749.0, + 1405.0, + 1781.0, + 296.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 1406.0, + 1778.0, + 1406.0, + 1813.0, + 293.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 1208.0, + 1809.0, + 1208.0, + 1845.0, + 294.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1893.0, + 295.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1922.0, + 296.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1918.0, + 1405.0, + 1918.0, + 1405.0, + 1950.0, + 295.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 1206.0, + 1397.0, + 1206.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1728, + 1405, + 1728, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1474, + 1403, + 1474, + 1403, + 1628, + 298, + 1628 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 362, + 1069, + 1321, + 1069, + 1321, + 1313, + 362, + 1313 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 336, + 226, + 1370, + 226, + 1370, + 583, + 336, + 583 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 294, + 1325, + 1402, + 1325, + 1402, + 1412, + 294, + 1412 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 297, + 594, + 1406, + 594, + 1406, + 983, + 297, + 983 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2111, + 841, + 2111 + ], + "score": 0.75 + }, + { + "category_id": 0, + "poly": [ + 301, + 1669, + 1184, + 1669, + 1184, + 1701, + 301, + 1701 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 301, + 1669, + 1184, + 1669, + 1184, + 1701, + 301, + 1701 + ], + "score": 0.355 + }, + { + "category_id": 13, + "poly": [ + 874, + 1475, + 921, + 1475, + 921, + 1504, + 874, + 1504 + ], + "score": 0.68, + "latex": "2 5 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1072.0, + 901.0, + 1072.0, + 901.0, + 1090.0, + 839.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1071.0, + 1018.0, + 1071.0, + 1018.0, + 1091.0, + 951.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1072.0, + 1103.0, + 1072.0, + 1103.0, + 1091.0, + 1067.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1072.0, + 1189.0, + 1072.0, + 1189.0, + 1091.0, + 1150.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1068.0, + 1322.0, + 1068.0, + 1322.0, + 1092.0, + 1237.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1092.0, + 1017.0, + 1092.0, + 1017.0, + 1113.0, + 894.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1092.0, + 1253.0, + 1092.0, + 1253.0, + 1113.0, + 1133.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1099.0, + 823.0, + 1099.0, + 823.0, + 1250.0, + 798.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1105.0, + 857.0, + 1105.0, + 857.0, + 1121.0, + 832.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1116.0, + 1089.0, + 1116.0, + 1089.0, + 1124.0, + 1080.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1117.0, + 806.0, + 1117.0, + 806.0, + 1233.0, + 782.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1130.0, + 857.0, + 1130.0, + 857.0, + 1148.0, + 825.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1156.0, + 858.0, + 1156.0, + 858.0, + 1175.0, + 825.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1163.0, + 1090.0, + 1163.0, + 1090.0, + 1172.0, + 1078.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1181.0, + 857.0, + 1181.0, + 857.0, + 1201.0, + 827.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1183.0, + 1091.0, + 1183.0, + 1091.0, + 1195.0, + 1076.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1207.0, + 858.0, + 1207.0, + 858.0, + 1225.0, + 823.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1208.0, + 873.0, + 1208.0, + 873.0, + 1222.0, + 865.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1205.0, + 1093.0, + 1205.0, + 1093.0, + 1221.0, + 1072.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1243.0, + 889.0, + 1243.0, + 889.0, + 1253.0, + 879.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1242.0, + 926.0, + 1242.0, + 926.0, + 1254.0, + 913.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1240.0, + 963.0, + 1240.0, + 963.0, + 1254.0, + 949.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1240.0, + 999.0, + 1240.0, + 999.0, + 1254.0, + 984.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1242.0, + 1037.0, + 1242.0, + 1037.0, + 1254.0, + 1019.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1243.0, + 1126.0, + 1243.0, + 1126.0, + 1253.0, + 1117.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1242.0, + 1163.0, + 1242.0, + 1163.0, + 1254.0, + 1149.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1240.0, + 1200.0, + 1240.0, + 1200.0, + 1254.0, + 1186.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1240.0, + 1236.0, + 1240.0, + 1236.0, + 1254.0, + 1222.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1240.0, + 1276.0, + 1240.0, + 1276.0, + 1255.0, + 1254.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1252.0, + 1004.0, + 1252.0, + 1004.0, + 1274.0, + 909.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1252.0, + 1240.0, + 1252.0, + 1240.0, + 1274.0, + 1145.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1281.0, + 543.0, + 1281.0, + 543.0, + 1314.0, + 380.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1280.0, + 751.0, + 1280.0, + 751.0, + 1315.0, + 589.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1282.0, + 1117.0, + 1282.0, + 1117.0, + 1318.0, + 997.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1146.0, + 715.0, + 1146.0, + 715.0, + 1212.0, + 614.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 236.0, + 424.0, + 236.0, + 424.0, + 251.0, + 364.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 234.0, + 549.0, + 234.0, + 549.0, + 253.0, + 477.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 236.0, + 664.0, + 236.0, + 664.0, + 251.0, + 601.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 233.0, + 751.0, + 233.0, + 751.0, + 253.0, + 715.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 236.0, + 836.0, + 236.0, + 836.0, + 252.0, + 801.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 233.0, + 931.0, + 233.0, + 931.0, + 253.0, + 887.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 234.0, + 1074.0, + 234.0, + 1074.0, + 253.0, + 982.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 236.0, + 1238.0, + 236.0, + 1238.0, + 251.0, + 1127.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 234.0, + 1369.0, + 234.0, + 1369.0, + 253.0, + 1288.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 253.0, + 529.0, + 253.0, + 529.0, + 271.0, + 500.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 253.0, + 790.0, + 253.0, + 790.0, + 272.0, + 705.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 252.0, + 1007.0, + 252.0, + 1007.0, + 275.0, + 955.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 251.0, + 1249.0, + 251.0, + 1249.0, + 274.0, + 1182.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 263.0, + 417.0, + 263.0, + 417.0, + 400.0, + 360.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 280.0, + 884.0, + 280.0, + 884.0, + 293.0, + 858.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 271.0, + 1120.0, + 271.0, + 1120.0, + 288.0, + 1090.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 288.0, + 652.0, + 288.0, + 652.0, + 305.0, + 624.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 295.0, + 418.0, + 295.0, + 418.0, + 312.0, + 391.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 296.0, + 606.0, + 296.0, + 606.0, + 321.0, + 567.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 299.0, + 1120.0, + 299.0, + 1120.0, + 315.0, + 1090.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 315.0, + 418.0, + 315.0, + 418.0, + 337.0, + 389.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 318.0, + 652.0, + 318.0, + 652.0, + 334.0, + 624.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 312.0, + 886.0, + 312.0, + 886.0, + 328.0, + 857.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 326.0, + 1120.0, + 326.0, + 1120.0, + 343.0, + 1090.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 340.0, + 418.0, + 340.0, + 418.0, + 358.0, + 390.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 346.0, + 652.0, + 346.0, + 652.0, + 364.0, + 624.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 356.0, + 1119.0, + 356.0, + 1119.0, + 369.0, + 1092.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 364.0, + 418.0, + 364.0, + 418.0, + 382.0, + 390.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 370.0, + 1056.0, + 370.0, + 1056.0, + 378.0, + 1044.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 376.0, + 436.0, + 376.0, + 436.0, + 384.0, + 424.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 376.0, + 1238.0, + 376.0, + 1238.0, + 384.0, + 1224.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 380.0, + 651.0, + 380.0, + 651.0, + 389.0, + 643.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 384.0, + 887.0, + 384.0, + 887.0, + 393.0, + 877.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 383.0, + 1120.0, + 383.0, + 1120.0, + 395.0, + 1109.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 396.0, + 429.0, + 396.0, + 429.0, + 406.0, + 421.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 401.0, + 555.0, + 401.0, + 555.0, + 420.0, + 474.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 396.0, + 610.0, + 396.0, + 610.0, + 407.0, + 600.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 399.0, + 697.0, + 399.0, + 697.0, + 404.0, + 691.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 401.0, + 788.0, + 401.0, + 788.0, + 420.0, + 708.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 396.0, + 1023.0, + 396.0, + 1023.0, + 421.0, + 941.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 394.0, + 1064.0, + 394.0, + 1064.0, + 407.0, + 1049.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 396.0, + 1257.0, + 396.0, + 1257.0, + 420.0, + 1175.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 394.0, + 1298.0, + 394.0, + 1298.0, + 408.0, + 1282.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 419.0, + 529.0, + 419.0, + 529.0, + 435.0, + 500.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 418.0, + 790.0, + 418.0, + 790.0, + 437.0, + 705.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 416.0, + 1007.0, + 416.0, + 1007.0, + 439.0, + 955.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 418.0, + 1249.0, + 418.0, + 1249.0, + 437.0, + 1183.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 426.0, + 418.0, + 426.0, + 418.0, + 565.0, + 360.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 453.0, + 651.0, + 453.0, + 651.0, + 470.0, + 624.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 435.0, + 1120.0, + 435.0, + 1120.0, + 479.0, + 1090.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 482.0, + 418.0, + 482.0, + 418.0, + 500.0, + 390.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 482.0, + 651.0, + 482.0, + 651.0, + 499.0, + 624.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 476.0, + 886.0, + 476.0, + 886.0, + 493.0, + 857.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 471.0, + 1304.0, + 471.0, + 1304.0, + 487.0, + 1270.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 493.0, + 1119.0, + 493.0, + 1119.0, + 506.0, + 1092.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 506.0, + 418.0, + 506.0, + 418.0, + 524.0, + 390.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 512.0, + 652.0, + 512.0, + 652.0, + 528.0, + 624.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 510.0, + 886.0, + 510.0, + 886.0, + 527.0, + 857.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 520.0, + 1119.0, + 520.0, + 1119.0, + 533.0, + 1092.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 529.0, + 418.0, + 529.0, + 418.0, + 546.0, + 390.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 545.0, + 651.0, + 545.0, + 651.0, + 554.0, + 643.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 549.0, + 884.0, + 549.0, + 884.0, + 559.0, + 875.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 549.0, + 1119.0, + 549.0, + 1119.0, + 559.0, + 1109.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 559.0, + 610.0, + 559.0, + 610.0, + 569.0, + 600.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 562.0, + 841.0, + 562.0, + 841.0, + 568.0, + 835.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 558.0, + 1064.0, + 558.0, + 1064.0, + 571.0, + 1049.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 560.0, + 1256.0, + 560.0, + 1256.0, + 570.0, + 1248.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 558.0, + 1298.0, + 558.0, + 1298.0, + 571.0, + 1282.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 565.0, + 555.0, + 565.0, + 555.0, + 584.0, + 474.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 565.0, + 788.0, + 565.0, + 788.0, + 584.0, + 708.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 565.0, + 1022.0, + 565.0, + 1022.0, + 584.0, + 942.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 565.0, + 1256.0, + 565.0, + 1256.0, + 584.0, + 1175.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 311.0, + 575.0, + 311.0, + 575.0, + 331.0, + 533.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 345.0, + 887.0, + 345.0, + 887.0, + 361.5, + 855.0, + 361.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 440.0, + 885.0, + 440.0, + 885.0, + 458.0, + 857.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 446.5, + 846.0, + 446.5, + 846.0, + 483.5, + 759.0, + 483.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1325.0, + 1405.0, + 1325.0, + 1405.0, + 1358.0, + 296.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1386.0, + 294.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1383.0, + 1165.0, + 1383.0, + 1165.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 594.0, + 1406.0, + 594.0, + 1406.0, + 626.0, + 295.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 620.0, + 1408.0, + 620.0, + 1408.0, + 655.0, + 291.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 650.0, + 1407.0, + 650.0, + 1407.0, + 682.0, + 295.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 1407.0, + 675.0, + 1407.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 706.0, + 1406.0, + 706.0, + 1406.0, + 738.0, + 295.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 731.0, + 1408.0, + 731.0, + 1408.0, + 767.0, + 294.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 760.0, + 1406.0, + 760.0, + 1406.0, + 792.0, + 295.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 1407.0, + 786.0, + 1407.0, + 822.0, + 294.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 814.0, + 1407.0, + 814.0, + 1407.0, + 848.0, + 292.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 841.0, + 1406.0, + 841.0, + 1406.0, + 876.0, + 294.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 1404.0, + 869.0, + 1404.0, + 903.0, + 294.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 898.0, + 1403.0, + 898.0, + 1403.0, + 930.0, + 295.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 926.0, + 1406.0, + 926.0, + 1406.0, + 962.0, + 294.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 953.0, + 756.0, + 953.0, + 756.0, + 986.0, + 295.0, + 986.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, + 1667.0, + 1190.0, + 1667.0, + 1190.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1406.0, + 1727.0, + 1406.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1408.0, + 1759.0, + 1408.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1406.0, + 1787.0, + 1406.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1408.0, + 1818.0, + 1408.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1407.0, + 1909.0, + 1407.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 296.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1408.0, + 2000.0, + 1408.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1473.0, + 873.0, + 1473.0, + 873.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1473.0, + 1404.0, + 1473.0, + 1404.0, + 1510.0, + 922.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1502.0, + 1405.0, + 1502.0, + 1405.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1534.0, + 1405.0, + 1534.0, + 1405.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 1407.0, + 1564.0, + 1407.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 1376.0, + 1596.0, + 1376.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1667.0, + 1190.0, + 1667.0, + 1190.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 982, + 1404, + 982, + 1404, + 1775, + 296, + 1775 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1788, + 1404, + 1788, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 325, + 223, + 1378, + 223, + 1378, + 623, + 325, + 623 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 298, + 634, + 1405, + 634, + 1405, + 746, + 298, + 746 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 805, + 1401, + 805, + 1401, + 867, + 298, + 867 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 300, + 912, + 587, + 912, + 587, + 947, + 300, + 947 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 13, + "poly": [ + 298, + 716, + 474, + 716, + 474, + 748, + 298, + 748 + ], + "score": 0.91, + "latex": "- \\alpha D _ { \\mathrm { K L } } ( { \\bar { \\pi _ { \\theta } } } \\| { \\hat { \\pi } } _ { \\beta } )" + }, + { + "category_id": 13, + "poly": [ + 980, + 722, + 999, + 722, + 999, + 742, + 980, + 742 + ], + "score": 0.61, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 874, + 236, + 908, + 236, + 908, + 253, + 874, + 253 + ], + "score": 0.29, + "latex": "\\scriptstyle { \\alpha = 0 } )" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 237.0, + 461.0, + 237.0, + 461.0, + 252.0, + 398.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 235.0, + 747.0, + 235.0, + 747.0, + 255.0, + 518.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 235.0, + 873.0, + 235.0, + 873.0, + 255.0, + 805.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 235.0, + 913.0, + 235.0, + 913.0, + 255.0, + 909.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 235.0, + 1110.0, + 235.0, + 1110.0, + 255.0, + 970.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 234.0, + 1226.0, + 234.0, + 1226.0, + 253.0, + 1165.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 234.0, + 1343.0, + 234.0, + 1343.0, + 255.0, + 1281.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 250.0, + 399.0, + 250.0, + 399.0, + 434.0, + 312.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 254.0, + 504.0, + 254.0, + 504.0, + 279.0, + 466.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 253.0, + 794.0, + 253.0, + 794.0, + 279.0, + 692.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 253.0, + 1037.0, + 253.0, + 1037.0, + 280.0, + 971.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 255.0, + 1303.0, + 255.0, + 1303.0, + 278.0, + 1223.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 281.0, + 378.0, + 281.0, + 378.0, + 298.0, + 347.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 269.0, + 640.0, + 269.0, + 640.0, + 286.0, + 605.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 275.0, + 898.0, + 275.0, + 898.0, + 296.0, + 865.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 275.0, + 1158.0, + 275.0, + 1158.0, + 296.0, + 1123.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 300.0, + 638.0, + 300.0, + 638.0, + 317.0, + 605.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 294.0, + 898.0, + 294.0, + 898.0, + 316.0, + 864.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 308.0, + 1157.0, + 308.0, + 1157.0, + 324.0, + 1124.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 317.0, + 897.0, + 317.0, + 897.0, + 334.0, + 865.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 333.0, + 377.0, + 333.0, + 377.0, + 350.0, + 347.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 332.0, + 638.0, + 332.0, + 638.0, + 348.0, + 605.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 335.0, + 898.0, + 335.0, + 898.0, + 356.0, + 864.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 336.0, + 1158.0, + 336.0, + 1158.0, + 357.0, + 1123.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 359.0, + 378.0, + 359.0, + 378.0, + 376.0, + 347.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 363.0, + 638.0, + 363.0, + 638.0, + 380.0, + 605.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 365.0, + 688.0, + 365.0, + 688.0, + 382.0, + 655.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 365.0, + 832.0, + 365.0, + 832.0, + 374.0, + 811.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 356.0, + 898.0, + 356.0, + 898.0, + 376.0, + 864.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 358.0, + 1100.0, + 358.0, + 1100.0, + 377.0, + 1047.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 371.0, + 582.0, + 371.0, + 582.0, + 387.0, + 551.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 376.0, + 897.0, + 376.0, + 897.0, + 394.0, + 871.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 369.0, + 1157.0, + 369.0, + 1157.0, + 386.0, + 1124.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 386.0, + 378.0, + 386.0, + 378.0, + 403.0, + 347.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 397.0, + 637.0, + 397.0, + 637.0, + 409.0, + 627.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 400.0, + 896.0, + 400.0, + 896.0, + 411.0, + 885.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 400.0, + 1158.0, + 400.0, + 1158.0, + 415.0, + 1143.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 418.0, + 529.0, + 418.0, + 529.0, + 444.0, + 440.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 416.0, + 549.0, + 416.0, + 549.0, + 425.0, + 540.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 415.0, + 590.0, + 415.0, + 590.0, + 425.0, + 579.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 418.0, + 789.0, + 418.0, + 789.0, + 444.0, + 697.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 415.0, + 849.0, + 415.0, + 849.0, + 425.0, + 839.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 415.0, + 1047.0, + 415.0, + 1047.0, + 441.0, + 960.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 412.0, + 1092.0, + 412.0, + 1092.0, + 427.0, + 1074.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 413.0, + 1307.0, + 413.0, + 1307.0, + 441.0, + 1219.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 412.0, + 1351.0, + 412.0, + 1351.0, + 427.0, + 1333.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 437.0, + 502.0, + 437.0, + 502.0, + 460.0, + 467.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 437.0, + 793.0, + 437.0, + 793.0, + 460.0, + 693.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 436.0, + 1037.0, + 436.0, + 1037.0, + 463.0, + 971.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 437.0, + 1303.0, + 437.0, + 1303.0, + 460.0, + 1223.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 454.0, + 379.0, + 454.0, + 379.0, + 471.0, + 340.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 459.0, + 639.0, + 459.0, + 639.0, + 479.0, + 598.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 471.0, + 897.0, + 471.0, + 897.0, + 488.0, + 859.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 469.0, + 1158.0, + 469.0, + 1158.0, + 489.0, + 1117.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 485.0, + 378.0, + 485.0, + 378.0, + 506.0, + 340.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 498.0, + 413.0, + 498.0, + 413.0, + 507.0, + 402.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 481.0, + 638.0, + 481.0, + 638.0, + 519.0, + 599.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 500.0, + 897.0, + 500.0, + 897.0, + 517.0, + 859.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 500.0, + 1157.0, + 500.0, + 1157.0, + 517.0, + 1118.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 524.0, + 637.0, + 524.0, + 637.0, + 541.0, + 600.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 529.0, + 897.0, + 529.0, + 897.0, + 546.0, + 860.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 529.0, + 1157.0, + 529.0, + 1157.0, + 546.0, + 1119.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 543.0, + 638.0, + 543.0, + 638.0, + 564.0, + 599.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 554.0, + 377.0, + 554.0, + 377.0, + 571.0, + 346.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 558.0, + 897.0, + 558.0, + 897.0, + 574.0, + 865.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 558.0, + 1157.0, + 558.0, + 1157.0, + 574.0, + 1124.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 565.0, + 639.0, + 565.0, + 639.0, + 585.0, + 604.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 585.0, + 582.0, + 585.0, + 582.0, + 591.0, + 576.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 591.0, + 376.0, + 591.0, + 376.0, + 597.0, + 370.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 588.0, + 639.0, + 588.0, + 639.0, + 603.0, + 625.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 590.0, + 897.0, + 590.0, + 897.0, + 600.0, + 886.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 589.0, + 1155.0, + 589.0, + 1155.0, + 601.0, + 1146.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 600.0, + 530.0, + 600.0, + 530.0, + 625.0, + 438.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 600.0, + 550.0, + 600.0, + 550.0, + 606.0, + 544.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 597.0, + 650.0, + 597.0, + 650.0, + 608.0, + 640.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 600.0, + 789.0, + 600.0, + 789.0, + 623.0, + 698.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 597.0, + 811.0, + 597.0, + 811.0, + 608.0, + 801.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 595.0, + 854.0, + 595.0, + 854.0, + 609.0, + 839.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 598.0, + 1049.0, + 598.0, + 1049.0, + 626.0, + 958.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 595.0, + 1092.0, + 595.0, + 1092.0, + 609.0, + 1074.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 598.0, + 1188.0, + 598.0, + 1188.0, + 608.0, + 1179.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 597.0, + 1308.0, + 597.0, + 1308.0, + 625.0, + 1217.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 595.0, + 1351.0, + 595.0, + 1351.0, + 609.0, + 1333.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 319.0, + 595.0, + 319.0, + 595.0, + 355.0, + 467.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.75, + 363.0, + 1025.75, + 363.0, + 1025.75, + 384.0, + 972.75, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 378.5, + 830.0, + 378.5, + 830.0, + 392.0, + 810.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 377.5, + 979.0, + 377.5, + 979.0, + 385.5, + 958.0, + 385.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 632.0, + 1407.0, + 632.0, + 1407.0, + 669.0, + 293.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 661.0, + 1406.0, + 661.0, + 1406.0, + 694.0, + 296.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 686.0, + 1402.0, + 686.0, + 1402.0, + 722.0, + 295.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 716.0, + 979.0, + 716.0, + 979.0, + 750.0, + 475.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 716.0, + 1010.0, + 716.0, + 1010.0, + 750.0, + 1000.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 909.0, + 593.0, + 909.0, + 593.0, + 953.0, + 293.0, + 953.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": [ + 295.0, + 981.0, + 1404.0, + 981.0, + 1404.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1406.0, + 1012.0, + 1406.0, + 1047.0, + 294.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1041.0, + 1407.0, + 1041.0, + 1407.0, + 1077.0, + 293.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1068.0, + 1407.0, + 1068.0, + 1407.0, + 1111.0, + 291.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1405.0, + 1101.0, + 1405.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1406.0, + 1131.0, + 1406.0, + 1168.0, + 293.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1198.0, + 293.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1231.0, + 291.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1261.0, + 294.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1292.0, + 295.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1286.0, + 1405.0, + 1286.0, + 1405.0, + 1321.0, + 294.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1349.0, + 295.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1380.0, + 293.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1406.0, + 1375.0, + 1406.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1472.0, + 293.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 1407.0, + 1466.0, + 1407.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1496.0, + 1406.0, + 1496.0, + 1406.0, + 1533.0, + 293.0, + 1533.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": [ + 296.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1593.0, + 296.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1407.0, + 1589.0, + 1407.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 1404.0, + 1617.0, + 1404.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1406.0, + 1680.0, + 1406.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1710.0, + 1404.0, + 1710.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1744.0, + 552.0, + 1744.0, + 552.0, + 1776.0, + 295.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1785.0, + 1405.0, + 1785.0, + 1405.0, + 1823.0, + 292.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1820.0, + 1404.0, + 1820.0, + 1404.0, + 1850.0, + 296.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1913.0, + 293.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1942.0, + 293.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1973.0, + 296.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2003.0, + 294.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2034.0, + 293.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 835.0, + 976.0, + 835.0, + 976.0, + 870.0, + 296.0, + 870.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 527, + 1405, + 527, + 1405, + 1169, + 297, + 1169 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 414, + 298, + 414 + ], + "score": 0.976 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 301, + 459, + 543, + 459, + 543, + 494, + 301, + 494 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2111, + 840, + 2111 + ], + "score": 0.779 + }, + { + "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, + 453.0, + 549.0, + 453.0, + 549.0, + 504.0, + 291.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 527.0, + 1405.0, + 527.0, + 1405.0, + 563.0, + 294.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 556.0, + 1410.0, + 556.0, + 1410.0, + 598.0, + 291.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 589.0, + 1408.0, + 589.0, + 1408.0, + 623.0, + 292.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 617.0, + 1408.0, + 617.0, + 1408.0, + 655.0, + 292.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 648.0, + 1406.0, + 648.0, + 1406.0, + 686.0, + 292.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 678.0, + 1405.0, + 678.0, + 1405.0, + 715.0, + 292.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 713.0, + 1405.0, + 713.0, + 1405.0, + 745.0, + 295.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 1405.0, + 741.0, + 1405.0, + 777.0, + 295.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 1407.0, + 772.0, + 1407.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 838.0, + 294.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 866.0, + 295.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 928.0, + 296.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 924.0, + 1407.0, + 924.0, + 1407.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 988.0, + 294.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1405.0, + 983.0, + 1405.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1049.0, + 296.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1046.0, + 1406.0, + 1046.0, + 1406.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1076.0, + 1405.0, + 1076.0, + 1405.0, + 1112.0, + 295.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1103.0, + 1405.0, + 1103.0, + 1405.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1134.0, + 1055.0, + 1134.0, + 1055.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1403.0, + 226.0, + 1403.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 290.0, + 1408.0, + 290.0, + 1408.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 320.0, + 1407.0, + 320.0, + 1407.0, + 356.0, + 295.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 388.0, + 295.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 383.0, + 1407.0, + 383.0, + 1407.0, + 414.0, + 296.0, + 414.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 297, + 1111, + 1405, + 1111, + 1405, + 1206, + 297, + 1206 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 299, + 1231, + 1406, + 1231, + 1406, + 1324, + 299, + 1324 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 299, + 1349, + 1405, + 1349, + 1405, + 1443, + 299, + 1443 + ], + "score": 0.849 + }, + { + "category_id": 1, + "poly": [ + 298, + 961, + 1407, + 961, + 1407, + 1087, + 298, + 1087 + ], + "score": 0.848 + }, + { + "category_id": 1, + "poly": [ + 297, + 1467, + 1403, + 1467, + 1403, + 1563, + 297, + 1563 + ], + "score": 0.847 + }, + { + "category_id": 1, + "poly": [ + 299, + 873, + 1400, + 873, + 1400, + 939, + 299, + 939 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 297, + 1586, + 1406, + 1586, + 1406, + 1681, + 297, + 1681 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 296, + 1705, + 1402, + 1705, + 1402, + 1770, + 296, + 1770 + ], + "score": 0.823 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 261, + 300, + 261 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 301, + 754, + 1400, + 754, + 1400, + 850, + 301, + 850 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 296, + 280, + 1400, + 280, + 1400, + 343, + 296, + 343 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 294, + 368, + 1401, + 368, + 1401, + 432, + 294, + 432 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 291, + 666, + 1402, + 666, + 1402, + 732, + 291, + 732 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 290, + 1794, + 1401, + 1794, + 1401, + 1860, + 290, + 1860 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 298, + 457, + 1405, + 457, + 1405, + 642, + 298, + 642 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1401, + 1971, + 1401, + 2034, + 296, + 2034 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 294, + 1883, + 1403, + 1883, + 1403, + 1947, + 294, + 1947 + ], + "score": 0.653 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 490.0, + 229.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1110.0, + 1408.0, + 1110.0, + 1408.0, + 1149.0, + 295.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1141.0, + 1408.0, + 1141.0, + 1408.0, + 1180.0, + 321.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1169.0, + 401.0, + 1169.0, + 401.0, + 1210.0, + 320.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1228.0, + 1406.0, + 1228.0, + 1406.0, + 1268.0, + 296.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1259.0, + 1403.0, + 1259.0, + 1403.0, + 1300.0, + 322.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1293.0, + 494.0, + 1293.0, + 494.0, + 1324.0, + 320.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1380.0, + 1404.0, + 1380.0, + 1404.0, + 1415.0, + 323.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1412.0, + 609.0, + 1412.0, + 609.0, + 1441.0, + 323.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 960.0, + 1407.0, + 960.0, + 1407.0, + 999.0, + 292.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 993.0, + 1408.0, + 993.0, + 1408.0, + 1030.0, + 319.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1058.0, + 321.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1055.0, + 1408.0, + 1055.0, + 1408.0, + 1090.0, + 321.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1407.0, + 1467.0, + 1407.0, + 1505.0, + 295.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1500.0, + 1405.0, + 1500.0, + 1405.0, + 1535.0, + 324.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1530.0, + 763.0, + 1530.0, + 763.0, + 1564.0, + 322.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 911.0, + 294.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 906.0, + 877.0, + 906.0, + 877.0, + 940.0, + 322.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1586.0, + 1408.0, + 1586.0, + 1408.0, + 1624.0, + 295.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1616.0, + 1406.0, + 1616.0, + 1406.0, + 1653.0, + 321.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1648.0, + 509.0, + 1648.0, + 509.0, + 1683.0, + 323.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 1406.0, + 1701.0, + 1406.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1735.0, + 596.0, + 1735.0, + 596.0, + 1771.0, + 321.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 792.0, + 293.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 787.0, + 1404.0, + 787.0, + 1404.0, + 822.0, + 322.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 818.0, + 1239.0, + 818.0, + 1239.0, + 852.0, + 322.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 278.0, + 1404.0, + 278.0, + 1404.0, + 317.0, + 294.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 310.0, + 1178.0, + 310.0, + 1178.0, + 345.0, + 322.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 365.0, + 1403.0, + 365.0, + 1403.0, + 405.0, + 294.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 401.0, + 1044.0, + 401.0, + 1044.0, + 433.0, + 324.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 706.0, + 297.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 698.0, + 1196.0, + 698.0, + 1196.0, + 731.0, + 322.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 1404.0, + 1792.0, + 1404.0, + 1831.0, + 293.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1824.0, + 1128.0, + 1824.0, + 1128.0, + 1863.0, + 321.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 459.0, + 1408.0, + 459.0, + 1408.0, + 491.0, + 297.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 487.0, + 1405.0, + 487.0, + 1405.0, + 523.0, + 322.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 515.0, + 1409.0, + 515.0, + 1409.0, + 557.0, + 321.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 546.0, + 1407.0, + 546.0, + 1407.0, + 586.0, + 321.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 579.0, + 1405.0, + 579.0, + 1405.0, + 614.0, + 322.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 609.0, + 776.0, + 609.0, + 776.0, + 644.0, + 322.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1964.0, + 1408.0, + 1964.0, + 1408.0, + 2013.0, + 291.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2001.0, + 841.0, + 2001.0, + 841.0, + 2036.0, + 320.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1921.0, + 294.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1914.0, + 882.0, + 1914.0, + 882.0, + 1948.0, + 323.0, + 1948.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "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": [ + 300, + 1496, + 1404, + 1496, + 1404, + 1592, + 300, + 1592 + ], + "score": 0.86 + }, + { + "category_id": 1, + "poly": [ + 300, + 1195, + 1403, + 1195, + 1403, + 1289, + 300, + 1289 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 298, + 1386, + 1402, + 1386, + 1402, + 1481, + 298, + 1481 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 293, + 1305, + 1404, + 1305, + 1404, + 1370, + 293, + 1370 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 298, + 1607, + 1402, + 1607, + 1402, + 1703, + 298, + 1703 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 295, + 481, + 1401, + 481, + 1401, + 575, + 295, + 575 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 300, + 369, + 1403, + 369, + 1403, + 464, + 300, + 464 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 293, + 591, + 1403, + 591, + 1403, + 656, + 293, + 656 + ], + "score": 0.754 + }, + { + "category_id": 1, + "poly": [ + 296, + 671, + 1401, + 671, + 1401, + 737, + 296, + 737 + ], + "score": 0.746 + }, + { + "category_id": 1, + "poly": [ + 300, + 1084, + 1403, + 1084, + 1403, + 1179, + 300, + 1179 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 294, + 1718, + 1402, + 1718, + 1402, + 1783, + 294, + 1783 + ], + "score": 0.707 + }, + { + "category_id": 1, + "poly": [ + 297, + 1798, + 1401, + 1798, + 1401, + 1894, + 297, + 1894 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 295, + 751, + 1401, + 751, + 1401, + 817, + 295, + 817 + ], + "score": 0.701 + }, + { + "category_id": 1, + "poly": [ + 294, + 1003, + 1401, + 1003, + 1401, + 1069, + 294, + 1069 + ], + "score": 0.688 + }, + { + "category_id": 1, + "poly": [ + 299, + 1910, + 1404, + 1910, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 353, + 297, + 353 + ], + "score": 0.675 + }, + { + "category_id": 1, + "poly": [ + 297, + 832, + 1404, + 832, + 1404, + 988, + 297, + 988 + ], + "score": 0.661 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1495.0, + 1404.0, + 1495.0, + 1404.0, + 1535.0, + 293.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1565.0, + 320.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1559.0, + 625.0, + 1559.0, + 625.0, + 1593.0, + 321.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1266.0, + 320.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1258.0, + 598.0, + 1258.0, + 598.0, + 1293.0, + 323.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1454.0, + 321.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1449.0, + 647.0, + 1449.0, + 647.0, + 1482.0, + 323.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1303.0, + 1407.0, + 1303.0, + 1407.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1334.0, + 399.0, + 1334.0, + 399.0, + 1372.0, + 320.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1607.0, + 1404.0, + 1607.0, + 1404.0, + 1644.0, + 293.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1639.0, + 1406.0, + 1639.0, + 1406.0, + 1676.0, + 322.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1670.0, + 1240.0, + 1670.0, + 1240.0, + 1708.0, + 323.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 481.0, + 1406.0, + 481.0, + 1406.0, + 518.0, + 295.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 549.0, + 320.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 543.0, + 584.0, + 543.0, + 584.0, + 576.0, + 322.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 370.0, + 1408.0, + 370.0, + 1408.0, + 404.0, + 295.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 401.0, + 1408.0, + 401.0, + 1408.0, + 436.0, + 321.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 426.0, + 398.0, + 426.0, + 398.0, + 467.0, + 320.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 1408.0, + 589.0, + 1408.0, + 631.0, + 293.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 624.0, + 891.0, + 624.0, + 891.0, + 657.0, + 322.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 669.0, + 1406.0, + 669.0, + 1406.0, + 712.0, + 292.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 703.0, + 1175.0, + 703.0, + 1175.0, + 739.0, + 324.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1083.0, + 1404.0, + 1083.0, + 1404.0, + 1124.0, + 294.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1116.0, + 1403.0, + 1116.0, + 1403.0, + 1152.0, + 323.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1147.0, + 701.0, + 1147.0, + 701.0, + 1181.0, + 323.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1720.0, + 1405.0, + 1720.0, + 1405.0, + 1756.0, + 296.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1751.0, + 1251.0, + 1751.0, + 1251.0, + 1784.0, + 321.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1801.0, + 1403.0, + 1801.0, + 1403.0, + 1835.0, + 296.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1830.0, + 1405.0, + 1830.0, + 1405.0, + 1867.0, + 321.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1861.0, + 1201.0, + 1861.0, + 1201.0, + 1899.0, + 324.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 789.0, + 295.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 784.0, + 1107.0, + 784.0, + 1107.0, + 818.0, + 324.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1001.0, + 1404.0, + 1001.0, + 1404.0, + 1043.0, + 293.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1036.0, + 1262.0, + 1036.0, + 1262.0, + 1070.0, + 322.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1978.0, + 324.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2008.0, + 322.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2004.0, + 582.0, + 2004.0, + 582.0, + 2037.0, + 321.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 295.0, + 321.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 293.0, + 1404.0, + 293.0, + 1404.0, + 326.0, + 322.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 322.0, + 509.0, + 322.0, + 509.0, + 356.0, + 321.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 833.0, + 1407.0, + 833.0, + 1407.0, + 869.0, + 296.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 863.0, + 1407.0, + 863.0, + 1407.0, + 901.0, + 321.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 890.0, + 1404.0, + 890.0, + 1404.0, + 934.0, + 320.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 922.0, + 1406.0, + 922.0, + 1406.0, + 962.0, + 321.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 957.0, + 1106.0, + 957.0, + 1106.0, + 990.0, + 324.0, + 990.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.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 298, + 1664, + 1402, + 1664, + 1402, + 1731, + 298, + 1731 + ], + "score": 0.56 + }, + { + "category_id": 1, + "poly": [ + 295, + 778, + 1404, + 778, + 1404, + 845, + 295, + 845 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 296, + 1583, + 1402, + 1583, + 1402, + 1648, + 296, + 1648 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 296, + 1858, + 1399, + 1858, + 1399, + 1923, + 296, + 1923 + ], + "score": 0.524 + }, + { + "category_id": 1, + "poly": [ + 296, + 697, + 1403, + 697, + 1403, + 762, + 296, + 762 + ], + "score": 0.522 + }, + { + "category_id": 1, + "poly": [ + 298, + 1746, + 1403, + 1746, + 1403, + 1842, + 298, + 1842 + ], + "score": 0.522 + }, + { + "category_id": 1, + "poly": [ + 300, + 860, + 1401, + 860, + 1401, + 957, + 300, + 957 + ], + "score": 0.519 + }, + { + "category_id": 1, + "poly": [ + 300, + 585, + 1404, + 585, + 1404, + 680, + 300, + 680 + ], + "score": 0.519 + }, + { + "category_id": 1, + "poly": [ + 292, + 972, + 1403, + 972, + 1403, + 1037, + 292, + 1037 + ], + "score": 0.502 + }, + { + "category_id": 1, + "poly": [ + 296, + 1471, + 1402, + 1471, + 1402, + 1566, + 296, + 1566 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 295, + 1053, + 1402, + 1053, + 1402, + 1120, + 295, + 1120 + ], + "score": 0.489 + }, + { + "category_id": 1, + "poly": [ + 300, + 1135, + 1402, + 1135, + 1402, + 1232, + 300, + 1232 + ], + "score": 0.488 + }, + { + "category_id": 1, + "poly": [ + 299, + 1359, + 1401, + 1359, + 1401, + 1456, + 299, + 1456 + ], + "score": 0.485 + }, + { + "category_id": 1, + "poly": [ + 298, + 1247, + 1402, + 1247, + 1402, + 1343, + 298, + 1343 + ], + "score": 0.474 + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1404, + 229, + 1404, + 295, + 292, + 295 + ], + "score": 0.47 + }, + { + "category_id": 1, + "poly": [ + 293, + 503, + 1403, + 503, + 1403, + 570, + 293, + 570 + ], + "score": 0.442 + }, + { + "category_id": 1, + "poly": [ + 295, + 311, + 1400, + 311, + 1400, + 375, + 295, + 375 + ], + "score": 0.44 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1405, + 1942, + 1405, + 2035, + 300, + 2035 + ], + "score": 0.368 + }, + { + "category_id": 1, + "poly": [ + 300, + 391, + 1399, + 391, + 1399, + 486, + 300, + 486 + ], + "score": 0.314 + }, + { + "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": [ + 294.0, + 1664.0, + 1404.0, + 1664.0, + 1404.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1698.0, + 1270.0, + 1698.0, + 1270.0, + 1731.0, + 322.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 779.0, + 1407.0, + 779.0, + 1407.0, + 815.0, + 297.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 810.0, + 1265.0, + 810.0, + 1265.0, + 845.0, + 321.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1585.0, + 1404.0, + 1585.0, + 1404.0, + 1621.0, + 296.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1616.0, + 1289.0, + 1616.0, + 1289.0, + 1649.0, + 321.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1858.0, + 1403.0, + 1858.0, + 1403.0, + 1894.0, + 297.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1889.0, + 933.0, + 1889.0, + 933.0, + 1924.0, + 322.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 1404.0, + 695.0, + 1404.0, + 736.0, + 295.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 728.0, + 612.0, + 728.0, + 612.0, + 763.0, + 321.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 1404.0, + 1746.0, + 1404.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1777.0, + 1407.0, + 1777.0, + 1407.0, + 1815.0, + 323.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1809.0, + 856.0, + 1809.0, + 856.0, + 1843.0, + 325.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 858.0, + 1407.0, + 858.0, + 1407.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 891.0, + 1405.0, + 891.0, + 1405.0, + 927.0, + 321.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 923.0, + 1013.0, + 923.0, + 1013.0, + 958.0, + 323.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 586.0, + 1404.0, + 586.0, + 1404.0, + 620.0, + 296.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 615.0, + 1408.0, + 615.0, + 1408.0, + 653.0, + 320.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 645.0, + 398.0, + 645.0, + 398.0, + 682.0, + 319.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 968.0, + 1409.0, + 968.0, + 1409.0, + 1014.0, + 293.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1003.0, + 604.0, + 1003.0, + 604.0, + 1039.0, + 320.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1506.0, + 296.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1504.0, + 1406.0, + 1504.0, + 1406.0, + 1538.0, + 323.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1534.0, + 535.0, + 1534.0, + 535.0, + 1566.0, + 320.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1053.0, + 1402.0, + 1053.0, + 1402.0, + 1089.0, + 297.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1085.0, + 1097.0, + 1085.0, + 1097.0, + 1120.0, + 322.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1137.0, + 1406.0, + 1137.0, + 1406.0, + 1171.0, + 296.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1169.0, + 1404.0, + 1169.0, + 1404.0, + 1203.0, + 323.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1198.0, + 934.0, + 1198.0, + 934.0, + 1233.0, + 324.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 1407.0, + 1358.0, + 1407.0, + 1398.0, + 294.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1425.0, + 323.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1422.0, + 905.0, + 1422.0, + 905.0, + 1457.0, + 325.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1247.0, + 1407.0, + 1247.0, + 1407.0, + 1284.0, + 293.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1280.0, + 1404.0, + 1280.0, + 1404.0, + 1315.0, + 323.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1310.0, + 839.0, + 1310.0, + 839.0, + 1344.0, + 325.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 261.0, + 1194.0, + 261.0, + 1194.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 504.0, + 1404.0, + 504.0, + 1404.0, + 540.0, + 296.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 535.0, + 1043.0, + 535.0, + 1043.0, + 570.0, + 321.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 1404.0, + 308.0, + 1404.0, + 348.0, + 294.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 342.0, + 693.0, + 342.0, + 693.0, + 375.0, + 320.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 1409.0, + 1939.0, + 1409.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2008.0, + 324.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2002.0, + 1333.0, + 2002.0, + 1333.0, + 2038.0, + 322.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 390.0, + 1404.0, + 390.0, + 1404.0, + 430.0, + 294.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 421.0, + 1405.0, + 421.0, + 1405.0, + 464.0, + 320.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 453.0, + 496.0, + 453.0, + 496.0, + 487.0, + 320.0, + 487.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.891 + }, + { + "category_id": 1, + "poly": [ + 300, + 1326, + 1401, + 1326, + 1401, + 1421, + 300, + 1421 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 299, + 1187, + 1404, + 1187, + 1404, + 1311, + 299, + 1311 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 298, + 792, + 1401, + 792, + 1401, + 858, + 298, + 858 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1403, + 229, + 1403, + 294, + 295, + 294 + ], + "score": 0.809 + }, + { + "category_id": 1, + "poly": [ + 298, + 1594, + 1402, + 1594, + 1402, + 1658, + 298, + 1658 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 299, + 308, + 1402, + 308, + 1402, + 372, + 299, + 372 + ], + "score": 0.788 + }, + { + "category_id": 1, + "poly": [ + 298, + 714, + 1402, + 714, + 1402, + 779, + 298, + 779 + ], + "score": 0.787 + }, + { + "category_id": 1, + "poly": [ + 294, + 1436, + 1400, + 1436, + 1400, + 1502, + 294, + 1502 + ], + "score": 0.786 + }, + { + "category_id": 1, + "poly": [ + 297, + 387, + 1406, + 387, + 1406, + 510, + 297, + 510 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 298, + 871, + 1405, + 871, + 1405, + 966, + 298, + 966 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 296, + 1673, + 1404, + 1673, + 1404, + 1738, + 296, + 1738 + ], + "score": 0.737 + }, + { + "category_id": 1, + "poly": [ + 292, + 981, + 1377, + 981, + 1377, + 1017, + 292, + 1017 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 298, + 1515, + 1402, + 1515, + 1402, + 1581, + 298, + 1581 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 292, + 1108, + 1401, + 1108, + 1401, + 1174, + 292, + 1174 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 294, + 1029, + 1398, + 1029, + 1398, + 1094, + 294, + 1094 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 299, + 526, + 1402, + 526, + 1402, + 591, + 299, + 591 + ], + "score": 0.661 + }, + { + "category_id": 1, + "poly": [ + 298, + 1861, + 1401, + 1861, + 1401, + 1925, + 298, + 1925 + ], + "score": 0.637 + }, + { + "category_id": 1, + "poly": [ + 298, + 1752, + 1403, + 1752, + 1403, + 1847, + 298, + 1847 + ], + "score": 0.597 + }, + { + "category_id": 1, + "poly": [ + 300, + 1941, + 1405, + 1941, + 1405, + 2033, + 300, + 2033 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 300, + 604, + 1402, + 604, + 1402, + 700, + 300, + 700 + ], + "score": 0.461 + }, + { + "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, + 1325.0, + 1406.0, + 1325.0, + 1406.0, + 1364.0, + 293.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1358.0, + 1407.0, + 1358.0, + 1407.0, + 1397.0, + 320.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1383.0, + 398.0, + 1383.0, + 398.0, + 1424.0, + 319.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1188.0, + 1409.0, + 1188.0, + 1409.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1253.0, + 323.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1289.0, + 319.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1281.0, + 583.0, + 1281.0, + 583.0, + 1313.0, + 320.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 791.0, + 1403.0, + 791.0, + 1403.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 825.0, + 883.0, + 825.0, + 883.0, + 859.0, + 322.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1111.0, + 260.0, + 1111.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 1406.0, + 1590.0, + 1406.0, + 1632.0, + 292.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1625.0, + 496.0, + 1625.0, + 496.0, + 1658.0, + 322.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 1407.0, + 307.0, + 1407.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 339.0, + 1391.0, + 339.0, + 1391.0, + 375.0, + 324.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 714.0, + 1404.0, + 714.0, + 1404.0, + 750.0, + 296.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 745.0, + 1113.0, + 745.0, + 1113.0, + 780.0, + 322.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 1404.0, + 1435.0, + 1404.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1468.0, + 1167.0, + 1468.0, + 1167.0, + 1504.0, + 322.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 386.0, + 1408.0, + 386.0, + 1408.0, + 423.0, + 292.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 417.0, + 1408.0, + 417.0, + 1408.0, + 452.0, + 319.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 450.0, + 1409.0, + 450.0, + 1409.0, + 486.0, + 320.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 479.0, + 397.0, + 479.0, + 397.0, + 511.0, + 321.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 873.0, + 1403.0, + 873.0, + 1403.0, + 908.0, + 296.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 904.0, + 1406.0, + 904.0, + 1406.0, + 940.0, + 321.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 936.0, + 504.0, + 936.0, + 504.0, + 965.0, + 321.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1673.0, + 1407.0, + 1673.0, + 1407.0, + 1709.0, + 296.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1704.0, + 1099.0, + 1704.0, + 1099.0, + 1739.0, + 321.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 981.0, + 1381.0, + 981.0, + 1381.0, + 1020.0, + 295.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1517.0, + 1407.0, + 1517.0, + 1407.0, + 1553.0, + 296.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1547.0, + 1260.0, + 1547.0, + 1260.0, + 1583.0, + 323.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1105.0, + 1404.0, + 1105.0, + 1404.0, + 1149.0, + 292.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1141.0, + 1058.0, + 1141.0, + 1058.0, + 1175.0, + 323.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 1404.0, + 1027.0, + 1404.0, + 1068.0, + 293.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1060.0, + 1197.0, + 1060.0, + 1197.0, + 1096.0, + 320.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 525.0, + 1404.0, + 525.0, + 1404.0, + 565.0, + 294.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 557.0, + 1241.0, + 557.0, + 1241.0, + 592.0, + 323.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1856.0, + 1406.0, + 1856.0, + 1406.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1893.0, + 777.0, + 1893.0, + 777.0, + 1929.0, + 324.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1752.0, + 1404.0, + 1752.0, + 1404.0, + 1790.0, + 296.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1785.0, + 1405.0, + 1785.0, + 1405.0, + 1819.0, + 322.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1814.0, + 883.0, + 1814.0, + 883.0, + 1848.0, + 323.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1406.0, + 1938.0, + 1406.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1969.0, + 1409.0, + 1969.0, + 1409.0, + 2009.0, + 319.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1996.0, + 399.0, + 1996.0, + 399.0, + 2037.0, + 320.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 1406.0, + 604.0, + 1406.0, + 641.0, + 294.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 639.0, + 1404.0, + 639.0, + 1404.0, + 673.0, + 323.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 668.0, + 1105.0, + 668.0, + 1105.0, + 702.0, + 324.0, + 702.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 366, + 1405, + 366, + 1405, + 590, + 297, + 590 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 788, + 1405, + 788, + 1405, + 944, + 297, + 944 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 682, + 1404, + 682, + 1404, + 775, + 298, + 775 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 463, + 1439, + 1235, + 1439, + 1235, + 1652, + 463, + 1652 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 495, + 1027, + 1200, + 1027, + 1200, + 1152, + 495, + 1152 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 561, + 599, + 1134, + 599, + 1134, + 675, + 561, + 675 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 545, + 1710, + 1150, + 1710, + 1150, + 1784, + 545, + 1784 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 291, + 1165, + 1404, + 1165, + 1404, + 1235, + 291, + 1235 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 479, + 1246, + 1221, + 1246, + 1221, + 1323, + 479, + 1323 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 951, + 1400, + 951, + 1400, + 1015, + 294, + 1015 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 454, + 1967, + 1245, + 1967, + 1245, + 2042, + 454, + 2042 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 602, + 1854, + 1095, + 1854, + 1095, + 1910, + 602, + 1910 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 299, + 1809, + 776, + 1809, + 776, + 1843, + 299, + 1843 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 1922, + 764, + 1922, + 764, + 1955, + 298, + 1955 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 1663, + 1180, + 1663, + 1180, + 1697, + 297, + 1697 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 300, + 1395, + 1240, + 1395, + 1240, + 1430, + 300, + 1430 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 298, + 1332, + 1027, + 1332, + 1027, + 1364, + 298, + 1364 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 299, + 297, + 1259, + 297, + 1259, + 337, + 299, + 337 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1365, + 621, + 1400, + 621, + 1400, + 651, + 1365, + 651 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 0, + "poly": [ + 301, + 227, + 449, + 227, + 449, + 262, + 301, + 262 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 301, + 227, + 449, + 227, + 449, + 262, + 301, + 262 + ], + "score": 0.109 + }, + { + "category_id": 14, + "poly": [ + 498, + 1025, + 1200, + 1025, + 1200, + 1158, + 498, + 1158 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\epsilon _ { \\beta } : = \\underset { s } { \\operatorname* { s u p } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } \\\\ & { \\epsilon _ { \\phi } : = \\underset { s , a } { \\operatorname* { s u p } } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 459, + 1438, + 1238, + 1438, + 1238, + 1656, + 459, + 1656 + ], + "score": 0.95, + "latex": "\\begin{array} { r c l } { { \\epsilon _ { \\beta } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } [ \\| a - \\hat { \\pi } _ { \\beta } \\left( s \\right) \\| _ { 2 } ^ { 2 } / 2 ] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } \\mathbb { E } _ { a \\sim \\mathcal { D } ( - | s ) } \\left[ - \\log \\pi _ { \\theta _ { 0 } } ( a | s ) \\right] - \\mathcal { H } ( \\pi _ { b } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s \\in \\mathcal { D } } D _ { K L } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) - \\frac { d _ { a } } { 2 } \\log 2 \\pi . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 733, + 557, + 782, + 557, + 782, + 590, + 733, + 590 + ], + "score": 0.95, + "latex": "\\hat { \\eta } [ \\pi ]" + }, + { + "category_id": 14, + "poly": [ + 479, + 1244, + 1217, + 1244, + 1217, + 1323, + 479, + 1323 + ], + "score": 0.94, + "latex": "\\epsilon _ { \\pi } = \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log 2 \\pi } + T \\sqrt { \\frac { 1 } { 2 } \\delta } ; \\epsilon _ { m } \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ," + }, + { + "category_id": 14, + "poly": [ + 454, + 1964, + 1240, + 1964, + 1240, + 2043, + 454, + 2043 + ], + "score": 0.92, + "latex": "\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { T } } ( - | s ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\beta } + \\frac { d _ { a } } { 4 } \\log { 2 \\pi } } + T \\sqrt { \\frac { 1 } { 2 } \\delta } = \\epsilon _ { \\pi } ," + }, + { + "category_id": 14, + "poly": [ + 562, + 598, + 1136, + 598, + 1136, + 675, + 562, + 675 + ], + "score": 0.92, + "latex": "\\eta [ \\pi ] \\ge \\hat { \\eta } [ \\pi ] - \\left[ \\frac { 2 \\gamma r _ { m a x } ( \\epsilon _ { m } + 2 \\epsilon _ { \\pi } ) } { ( 1 - \\gamma ) ^ { 2 } } + \\frac { 4 r _ { m a x } \\epsilon _ { \\pi } } { ( 1 - \\gamma ) } \\right] ." + }, + { + "category_id": 14, + "poly": [ + 546, + 1705, + 1152, + 1705, + 1152, + 1786, + 546, + 1786 + ], + "score": 0.92, + "latex": "\\operatorname* { s u p } _ { s } D _ { T V } ( \\pi _ { b } ( - | s ) | | \\pi _ { \\theta _ { 0 } } ( - | s ) ) \\leq { \\sqrt { { \\frac { 1 } { 2 } } \\epsilon _ { \\beta } + { \\frac { d _ { a } } { 4 } } \\log 2 \\pi } } ." + }, + { + "category_id": 14, + "poly": [ + 603, + 1852, + 1094, + 1852, + 1094, + 1914, + 603, + 1914 + ], + "score": 0.91, + "latex": "\\operatorname* { s u p } _ { s } D _ { T V } \\big ( \\pi _ { \\theta _ { k } } ( - | s ) | | \\pi _ { \\theta _ { k + 1 } } ( - | s ) \\big ) \\leq \\sqrt { \\delta / 2 } ." + }, + { + "category_id": 13, + "poly": [ + 431, + 556, + 481, + 556, + 481, + 590, + 431, + 590 + ], + "score": 0.91, + "latex": "\\eta [ \\pi ]" + }, + { + "category_id": 13, + "poly": [ + 678, + 459, + 1316, + 459, + 1316, + 499, + 678, + 499 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\epsilon _ { m } = \\operatorname* { m a x } _ { t } \\mathbb { E } _ { s \\sim d _ { t } ^ { \\pi _ { b } } } D _ { T V } ( \\bar { p ( } s _ { t + 1 } | s _ { t } , a _ { t } ) | | p _ { \\phi } ( s _ { t + 1 } | s _ { t } , a _ { t } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1099, + 718, + 1172, + 718, + 1172, + 746, + 1099, + 746 + ], + "score": 0.9, + "latex": "\\epsilon _ { m } , \\epsilon _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 968, + 1197, + 999, + 1197, + 999, + 1236, + 968, + 1236 + ], + "score": 0.9, + "latex": "\\hat { f } _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 298, + 495, + 358, + 495, + 358, + 527, + 298, + 527 + ], + "score": 0.89, + "latex": "D _ { T V }" + }, + { + "category_id": 13, + "poly": [ + 542, + 986, + 608, + 986, + 608, + 1017, + 542, + 1017 + ], + "score": 0.88, + "latex": "\\epsilon _ { \\beta } , \\epsilon _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 455, + 1333, + 482, + 1333, + 482, + 1362, + 455, + 1362 + ], + "score": 0.86, + "latex": "d _ { s }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1334, + 400, + 1334, + 400, + 1362, + 372, + 1362 + ], + "score": 0.86, + "latex": "d _ { a }" + }, + { + "category_id": 13, + "poly": [ + 874, + 526, + 1149, + 526, + 1149, + 559, + 874, + 559 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { s } D _ { T V } ( \\pi _ { b } | | \\pi ) \\le \\epsilon _ { \\pi } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 574, + 1402, + 602, + 1402, + 602, + 1428, + 574, + 1428 + ], + "score": 0.83, + "latex": "\\epsilon _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1266, + 500, + 1298, + 500, + 1298, + 530, + 1266, + 530 + ], + "score": 0.83, + "latex": "p _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 370, + 1168, + 397, + 1168, + 397, + 1194, + 370, + 1194 + ], + "score": 0.78, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 385, + 985, + 408, + 985, + 408, + 1009, + 385, + 1009 + ], + "score": 0.77, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 503, + 1054, + 503, + 1054, + 526, + 1036, + 526 + ], + "score": 0.76, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 299, + 1205, + 313, + 1205, + 313, + 1229, + 299, + 1229 + ], + "score": 0.71, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 940, + 1168, + 964, + 1168, + 964, + 1194, + 940, + 1194 + ], + "score": 0.67, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1204, + 1281, + 1204, + 1281, + 1229, + 1266, + 1229 + ], + "score": 0.52, + "latex": "^ { l }" + }, + { + "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": [ + 292.0, + 296.0, + 1265.0, + 296.0, + 1265.0, + 340.0, + 292.0, + 340.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": [ + 297.0, + 227.0, + 453.0, + 227.0, + 453.0, + 268.0, + 297.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 367.0, + 1403.0, + 367.0, + 1403.0, + 402.0, + 295.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 434.0, + 294.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 430.0, + 1402.0, + 430.0, + 1402.0, + 462.0, + 296.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 456.0, + 677.0, + 456.0, + 677.0, + 500.0, + 294.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 456.0, + 1406.0, + 456.0, + 1406.0, + 500.0, + 1317.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 494.0, + 1035.0, + 494.0, + 1035.0, + 530.0, + 359.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 494.0, + 1265.0, + 494.0, + 1265.0, + 530.0, + 1055.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 494.0, + 1405.0, + 494.0, + 1405.0, + 530.0, + 1299.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 525.0, + 873.0, + 525.0, + 873.0, + 560.0, + 295.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 525.0, + 1405.0, + 525.0, + 1405.0, + 560.0, + 1150.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 555.0, + 430.0, + 555.0, + 430.0, + 592.0, + 294.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 555.0, + 732.0, + 555.0, + 732.0, + 592.0, + 482.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 555.0, + 1388.0, + 555.0, + 1388.0, + 592.0, + 783.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1403.0, + 787.0, + 1403.0, + 825.0, + 295.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 818.0, + 1405.0, + 818.0, + 1405.0, + 859.0, + 292.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 1405.0, + 849.0, + 1405.0, + 886.0, + 295.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 882.0, + 1405.0, + 882.0, + 1405.0, + 918.0, + 292.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 915.0, + 452.0, + 915.0, + 452.0, + 946.0, + 296.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 678.0, + 1408.0, + 678.0, + 1408.0, + 718.0, + 292.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 713.0, + 1098.0, + 713.0, + 1098.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 713.0, + 1406.0, + 713.0, + 1406.0, + 747.0, + 1173.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 739.0, + 525.0, + 739.0, + 525.0, + 777.0, + 292.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1163.0, + 369.0, + 1163.0, + 369.0, + 1200.0, + 295.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1163.0, + 939.0, + 1163.0, + 939.0, + 1200.0, + 398.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1163.0, + 1403.0, + 1163.0, + 1403.0, + 1200.0, + 965.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 298.0, + 1199.0, + 298.0, + 1236.0, + 295.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1199.0, + 967.0, + 1199.0, + 967.0, + 1236.0, + 314.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1199.0, + 1265.0, + 1199.0, + 1265.0, + 1236.0, + 1000.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1199.0, + 1348.0, + 1199.0, + 1348.0, + 1236.0, + 1282.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 951.0, + 1406.0, + 951.0, + 1406.0, + 987.0, + 296.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 384.0, + 980.0, + 384.0, + 1020.0, + 294.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 980.0, + 541.0, + 980.0, + 541.0, + 1020.0, + 409.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 980.0, + 1319.0, + 980.0, + 1319.0, + 1020.0, + 609.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 779.0, + 1804.0, + 779.0, + 1850.0, + 293.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 766.0, + 1918.0, + 766.0, + 1960.0, + 294.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1661.0, + 1182.0, + 1661.0, + 1182.0, + 1701.0, + 295.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1391.0, + 573.0, + 1391.0, + 573.0, + 1437.0, + 292.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1391.0, + 1246.0, + 1391.0, + 1246.0, + 1437.0, + 603.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 371.0, + 1325.0, + 371.0, + 1370.0, + 294.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1325.0, + 454.0, + 1325.0, + 454.0, + 1370.0, + 401.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1325.0, + 1029.0, + 1325.0, + 1029.0, + 1370.0, + 483.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 227.0, + 453.0, + 227.0, + 453.0, + 268.0, + 297.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 849, + 1404, + 849, + 1404, + 973, + 297, + 973 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 989, + 1406, + 989, + 1406, + 1114, + 297, + 1114 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 433, + 322, + 1265, + 322, + 1265, + 545, + 433, + 545 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 295, + 1468, + 1408, + 1468, + 1408, + 1637, + 295, + 1637 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 495, + 612, + 1200, + 612, + 1200, + 688, + 495, + 688 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 561, + 1170, + 561, + 1170, + 596, + 294, + 596 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 299, + 780, + 1254, + 780, + 1254, + 819, + 299, + 819 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 297, + 275, + 942, + 275, + 942, + 310, + 297, + 310 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 297, + 705, + 418, + 705, + 418, + 737, + 297, + 737 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 106, + 299, + 106 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 297, + 230, + 417, + 230, + 417, + 261, + 297, + 261 + ], + "score": 0.913 + }, + { + "category_id": 3, + "poly": [ + 353, + 1145, + 1342, + 1145, + 1342, + 1453, + 353, + 1453 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 14, + "poly": [ + 429, + 322, + 1266, + 322, + 1266, + 550, + 429, + 550 + ], + "score": 0.96, + "latex": "\\begin{array} { r c l } { { \\epsilon _ { \\phi } } } & { { = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ \\| s ^ { \\prime } - \\hat { f } _ { \\phi } ( s , a ) \\| _ { 2 } ^ { 2 } / 2 \\right] - \\mathcal { H } ( p ( - | s , a ) ) } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathcal { D } ( - | s , a ) } \\left[ - \\log p _ { \\phi } ( s ^ { \\prime } | s , a ) \\right] - \\mathcal { H } ( p ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi } } \\\\ { { } } & { { } } & { { } } \\\\ { { \\displaystyle = } } & { { \\displaystyle \\operatorname* { s u p } _ { s , a } D _ { K L } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) - \\frac { d _ { s } } { 2 } \\log 2 \\pi . } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 498, + 608, + 1199, + 608, + 1199, + 691, + 498, + 691 + ], + "score": 0.93, + "latex": "\\epsilon _ { m } \\leq \\operatorname* { s u p } _ { s , a } D _ { T V } ( p ( - | s , a ) | | p _ { \\phi } ( - | s , a ) ) \\leq \\sqrt { \\frac { 1 } { 2 } \\epsilon _ { \\phi } + \\frac { d _ { s } } { 4 } \\log 2 \\pi } ," + }, + { + "category_id": 13, + "poly": [ + 580, + 282, + 614, + 282, + 614, + 308, + 580, + 308 + ], + "score": 0.87, + "latex": "\\epsilon _ { m }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1467.0, + 1406.0, + 1467.0, + 1406.0, + 1501.0, + 294.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1496.0, + 1407.0, + 1496.0, + 1407.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1521.0, + 1406.0, + 1521.0, + 1406.0, + 1555.0, + 294.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1583.0, + 296.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1614.0, + 293.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1605.0, + 894.0, + 1605.0, + 894.0, + 1638.0, + 293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 778.0, + 1259.0, + 778.0, + 1259.0, + 823.0, + 291.0, + 823.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": [ + 562.0, + 1146.0, + 688.0, + 1146.0, + 688.0, + 1173.0, + 562.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1146.0, + 1228.0, + 1146.0, + 1228.0, + 1171.0, + 1027.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1189.0, + 413.0, + 1189.0, + 413.0, + 1393.0, + 356.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1209.0, + 764.0, + 1209.0, + 764.0, + 1217.0, + 754.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1177.0, + 820.0, + 1177.0, + 820.0, + 1226.0, + 777.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1188.0, + 918.0, + 1188.0, + 918.0, + 1328.0, + 870.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1169.0, + 1022.0, + 1169.0, + 1022.0, + 1206.0, + 966.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1185.0, + 1268.0, + 1185.0, + 1268.0, + 1218.0, + 1258.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1177.0, + 1323.0, + 1177.0, + 1323.0, + 1226.0, + 1280.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1221.0, + 415.0, + 1221.0, + 415.0, + 1246.0, + 377.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1227.0, + 764.0, + 1227.0, + 764.0, + 1239.0, + 754.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1218.0, + 830.0, + 1218.0, + 830.0, + 1247.0, + 778.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1229.0, + 917.0, + 1229.0, + 917.0, + 1253.0, + 892.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1227.0, + 1267.0, + 1227.0, + 1267.0, + 1238.0, + 1258.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1218.0, + 1324.0, + 1218.0, + 1324.0, + 1247.0, + 1277.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1247.0, + 767.0, + 1247.0, + 767.0, + 1261.0, + 753.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1239.0, + 829.0, + 1239.0, + 829.0, + 1268.0, + 777.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1248.0, + 1268.0, + 1248.0, + 1268.0, + 1260.0, + 1258.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1240.0, + 1332.0, + 1240.0, + 1332.0, + 1268.0, + 1281.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1256.0, + 414.0, + 1256.0, + 414.0, + 1277.0, + 378.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1267.0, + 918.0, + 1267.0, + 918.0, + 1289.0, + 891.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1270.0, + 1267.0, + 1270.0, + 1267.0, + 1280.0, + 1258.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1261.0, + 1332.0, + 1261.0, + 1332.0, + 1289.0, + 1281.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1287.0, + 415.0, + 1287.0, + 415.0, + 1341.0, + 378.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1289.0, + 546.0, + 1289.0, + 546.0, + 1345.0, + 475.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1302.0, + 821.0, + 1302.0, + 821.0, + 1331.0, + 774.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1305.0, + 916.0, + 1305.0, + 916.0, + 1392.0, + 872.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1338.0, + 695.0, + 1338.0, + 695.0, + 1377.0, + 638.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1341.0, + 917.0, + 1341.0, + 917.0, + 1359.0, + 893.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1335.0, + 1024.0, + 1335.0, + 1024.0, + 1359.0, + 979.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1350.0, + 419.0, + 1350.0, + 419.0, + 1406.0, + 382.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1363.0, + 505.0, + 1363.0, + 505.0, + 1413.0, + 423.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1351.0, + 641.0, + 1351.0, + 641.0, + 1406.0, + 531.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1378.0, + 916.0, + 1378.0, + 916.0, + 1396.0, + 897.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1367.0, + 1086.0, + 1367.0, + 1086.0, + 1417.0, + 924.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1355.0, + 1223.0, + 1355.0, + 1223.0, + 1393.0, + 1166.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1414.0, + 440.0, + 1414.0, + 440.0, + 1432.0, + 427.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1416.0, + 496.0, + 1416.0, + 496.0, + 1432.0, + 481.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1411.0, + 551.0, + 1411.0, + 551.0, + 1433.0, + 534.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1413.0, + 607.0, + 1413.0, + 607.0, + 1433.0, + 589.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1411.0, + 665.0, + 1411.0, + 665.0, + 1433.0, + 639.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1411.0, + 719.0, + 1411.0, + 719.0, + 1433.0, + 692.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1414.0, + 773.0, + 1414.0, + 773.0, + 1432.0, + 749.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1411.0, + 828.0, + 1411.0, + 828.0, + 1435.0, + 802.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1411.0, + 975.0, + 1411.0, + 975.0, + 1435.0, + 946.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1409.0, + 1035.0, + 1409.0, + 1035.0, + 1436.0, + 1002.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1410.0, + 1091.0, + 1410.0, + 1091.0, + 1436.0, + 1060.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1413.0, + 1153.0, + 1413.0, + 1153.0, + 1433.0, + 1116.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1410.0, + 1210.0, + 1410.0, + 1210.0, + 1435.0, + 1172.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1410.0, + 1268.0, + 1410.0, + 1268.0, + 1435.0, + 1230.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1410.0, + 1325.0, + 1410.0, + 1325.0, + 1436.0, + 1287.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1427.0, + 733.0, + 1427.0, + 733.0, + 1452.0, + 515.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1428.0, + 1235.0, + 1428.0, + 1235.0, + 1453.0, + 1018.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1171.0, + 678.0, + 1171.0, + 678.0, + 1204.5, + 628.0, + 1204.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1250.5, + 1181.0, + 1250.5, + 1181.0, + 1286.5, + 1116.0, + 1286.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.75, + 1274.5, + 494.75, + 1274.5, + 494.75, + 1307.0, + 428.75, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1303.5, + 1249.0, + 1303.5, + 1249.0, + 1337.0, + 1184.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1330.0, + 1328.0, + 1330.0, + 1328.0, + 1367.5, + 1279.0, + 1367.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1337.0, + 494.0, + 1337.0, + 494.0, + 1370.0, + 431.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1336.0, + 563.0, + 1336.0, + 563.0, + 1372.5, + 495.0, + 1372.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1347.0, + 991.0, + 1347.0, + 991.0, + 1379.5, + 942.0, + 1379.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 851.0, + 1406.0, + 851.0, + 1406.0, + 888.0, + 294.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 882.0, + 1405.0, + 882.0, + 1405.0, + 918.0, + 294.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 910.0, + 1406.0, + 910.0, + 1406.0, + 950.0, + 292.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 945.0, + 507.0, + 945.0, + 507.0, + 975.0, + 295.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 986.0, + 1408.0, + 986.0, + 1408.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1020.0, + 1409.0, + 1020.0, + 1409.0, + 1056.0, + 294.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1052.0, + 1407.0, + 1052.0, + 1407.0, + 1087.0, + 292.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1082.0, + 1207.0, + 1082.0, + 1207.0, + 1115.0, + 295.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 560.0, + 1168.0, + 560.0, + 1168.0, + 599.0, + 294.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 273.0, + 579.0, + 273.0, + 579.0, + 315.0, + 294.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 273.0, + 942.0, + 273.0, + 942.0, + 315.0, + 615.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 704.0, + 421.0, + 704.0, + 421.0, + 737.0, + 292.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 420.0, + 228.0, + 420.0, + 263.0, + 293.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 968, + 1405, + 968, + 1405, + 1304, + 298, + 1304 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1319, + 1405, + 1319, + 1405, + 1566, + 298, + 1566 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 739, + 1405, + 739, + 1405, + 953, + 298, + 953 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 334, + 1407, + 334, + 1407, + 458, + 299, + 458 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 361, + 484, + 1403, + 484, + 1403, + 714, + 361, + 714 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 297, + 225, + 1216, + 225, + 1216, + 301, + 297, + 301 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 1219.0, + 225.0, + 1219.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 265.0, + 785.0, + 265.0, + 785.0, + 304.0, + 353.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 969.0, + 1405.0, + 969.0, + 1405.0, + 1003.0, + 295.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1000.0, + 1406.0, + 1000.0, + 1406.0, + 1036.0, + 292.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1028.0, + 1407.0, + 1028.0, + 1407.0, + 1065.0, + 292.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1060.0, + 1405.0, + 1060.0, + 1405.0, + 1095.0, + 293.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1089.0, + 1406.0, + 1089.0, + 1406.0, + 1126.0, + 292.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1120.0, + 1406.0, + 1120.0, + 1406.0, + 1156.0, + 292.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1152.0, + 1405.0, + 1152.0, + 1405.0, + 1187.0, + 295.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1182.0, + 1405.0, + 1182.0, + 1405.0, + 1217.0, + 295.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1213.0, + 1403.0, + 1213.0, + 1403.0, + 1247.0, + 295.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1281.0, + 292.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1272.0, + 968.0, + 1272.0, + 968.0, + 1309.0, + 295.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1387.0, + 292.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1405.0, + 1382.0, + 1405.0, + 1416.0, + 295.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1443.0, + 1408.0, + 1443.0, + 1408.0, + 1476.0, + 295.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1506.0, + 295.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1503.0, + 1405.0, + 1503.0, + 1405.0, + 1536.0, + 295.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1534.0, + 767.0, + 1534.0, + 767.0, + 1568.0, + 296.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 776.0, + 291.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 804.0, + 295.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 799.0, + 1403.0, + 799.0, + 1403.0, + 834.0, + 295.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 829.0, + 1407.0, + 829.0, + 1407.0, + 864.0, + 292.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 862.0, + 1406.0, + 862.0, + 1406.0, + 893.0, + 296.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 888.0, + 1406.0, + 888.0, + 1406.0, + 929.0, + 292.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 922.0, + 1182.0, + 922.0, + 1182.0, + 955.0, + 296.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 332.0, + 1405.0, + 332.0, + 1405.0, + 369.0, + 294.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 363.0, + 1410.0, + 363.0, + 1410.0, + 398.0, + 293.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 394.0, + 1405.0, + 394.0, + 1405.0, + 430.0, + 293.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 423.0, + 421.0, + 423.0, + 421.0, + 465.0, + 292.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 484.0, + 930.0, + 484.0, + 930.0, + 519.0, + 361.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 525.0, + 867.0, + 525.0, + 867.0, + 560.0, + 359.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 567.0, + 783.0, + 567.0, + 783.0, + 601.0, + 359.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 607.0, + 1404.0, + 607.0, + 1404.0, + 645.0, + 357.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 641.0, + 1154.0, + 641.0, + 1154.0, + 673.0, + 394.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 676.0, + 1057.0, + 676.0, + 1057.0, + 719.0, + 356.0, + 719.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 661, + 1454, + 661, + 1454, + 1035, + 295, + 1035 + ], + "score": 0.983, + "html": "
Task NameBCBREMENMOPOCQLBEARBRAC-vAWRBCQ
halfcheetah-randomwalker2d-randomhopper-random2.11.69.836.93.712.231.913.013.335.47.025.17.311.431.21.912.22.51.510.22.24.910.6
10.8
halfcheetah-mediumwalker2d-mediumhopper-medium36.16.629.055.059.669.340.214.026.544.479.258.041.759.152.146.381.131.137.417.435.940.753.154.5
halfcheetah-medium-replaywalker2d-medium-replayhopper-medium-replay38.411.311.847.27.624.154.042.792.546.238.619.233.747.70.90.640.315.528.438.2
26.748.615.033.1
halfcheetah-medium-expertwalker2d-medium-experthopper-medium-expert35.86.4111.953.355.264.657.955.051.762.498.7111.053.440.196.341.981.60.852.753.827.164.757.5110.9
" + }, + { + "category_id": 1, + "poly": [ + 297, + 295, + 1405, + 295, + 1405, + 632, + 297, + 632 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1329, + 1405, + 1329, + 1405, + 1667, + 297, + 1667 + ], + "score": 0.982 + }, + { + "category_id": 3, + "poly": [ + 319, + 1702, + 1384, + 1702, + 1384, + 1911, + 319, + 1911 + ], + "score": 0.948 + }, + { + "category_id": 4, + "poly": [ + 294, + 1918, + 1404, + 1918, + 1404, + 2002, + 294, + 2002 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 302, + 1221, + 1369, + 1221, + 1369, + 1295, + 302, + 1295 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 297, + 225, + 1221, + 225, + 1221, + 262, + 297, + 262 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.849 + }, + { + "category_id": 7, + "poly": [ + 297, + 1044, + 1407, + 1044, + 1407, + 1158, + 297, + 1158 + ], + "score": 0.724 + }, + { + "category_id": 6, + "poly": [ + 297, + 1044, + 1407, + 1044, + 1407, + 1158, + 297, + 1158 + ], + "score": 0.131 + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1705.0, + 760.0, + 1705.0, + 760.0, + 1724.0, + 691.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1705.0, + 871.0, + 1705.0, + 871.0, + 1726.0, + 814.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1705.0, + 975.0, + 1705.0, + 975.0, + 1726.0, + 926.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1705.0, + 1094.0, + 1705.0, + 1094.0, + 1724.0, + 1029.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1733.0, + 387.0, + 1733.0, + 387.0, + 1891.0, + 322.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1729.0, + 513.0, + 1729.0, + 513.0, + 1750.0, + 478.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1745.0, + 646.0, + 1745.0, + 646.0, + 1761.0, + 612.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1732.0, + 796.0, + 1732.0, + 796.0, + 1747.0, + 707.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1750.0, + 904.0, + 1750.0, + 904.0, + 1770.0, + 870.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1726.0, + 1039.0, + 1726.0, + 1039.0, + 1754.0, + 979.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1751.0, + 1160.0, + 1751.0, + 1160.0, + 1768.0, + 1128.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1728.0, + 1303.0, + 1728.0, + 1303.0, + 1751.0, + 1229.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1780.0, + 387.0, + 1780.0, + 387.0, + 1797.0, + 356.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1774.0, + 644.0, + 1774.0, + 644.0, + 1791.0, + 614.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1771.0, + 901.0, + 1771.0, + 901.0, + 1788.0, + 871.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1780.0, + 1160.0, + 1780.0, + 1160.0, + 1797.0, + 1128.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1791.0, + 901.0, + 1791.0, + 901.0, + 1809.0, + 871.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1805.0, + 387.0, + 1805.0, + 387.0, + 1823.0, + 358.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1804.0, + 644.0, + 1804.0, + 644.0, + 1821.0, + 614.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1810.0, + 901.0, + 1810.0, + 901.0, + 1828.0, + 871.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1810.0, + 1160.0, + 1810.0, + 1160.0, + 1826.0, + 1128.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1832.0, + 387.0, + 1832.0, + 387.0, + 1849.0, + 358.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1842.0, + 481.0, + 1842.0, + 481.0, + 1858.0, + 449.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1833.0, + 645.0, + 1833.0, + 645.0, + 1850.0, + 614.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1829.0, + 901.0, + 1829.0, + 901.0, + 1848.0, + 871.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1839.0, + 1160.0, + 1839.0, + 1160.0, + 1855.0, + 1128.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1850.0, + 902.0, + 1850.0, + 902.0, + 1867.0, + 876.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1857.0, + 387.0, + 1857.0, + 387.0, + 1874.0, + 356.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1866.0, + 644.0, + 1866.0, + 644.0, + 1877.0, + 632.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1873.0, + 901.0, + 1873.0, + 901.0, + 1884.0, + 889.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1869.0, + 1161.0, + 1869.0, + 1161.0, + 1883.0, + 1145.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1881.0, + 402.0, + 1881.0, + 402.0, + 1893.0, + 393.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1881.0, + 441.0, + 1881.0, + 441.0, + 1893.0, + 432.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1881.0, + 481.0, + 1881.0, + 481.0, + 1892.0, + 470.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1881.0, + 521.0, + 1881.0, + 521.0, + 1892.0, + 509.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1880.0, + 561.0, + 1880.0, + 561.0, + 1895.0, + 547.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1880.0, + 602.0, + 1880.0, + 602.0, + 1895.0, + 586.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1880.0, + 661.0, + 1880.0, + 661.0, + 1895.0, + 646.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1881.0, + 699.0, + 1881.0, + 699.0, + 1893.0, + 689.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1881.0, + 737.0, + 1881.0, + 737.0, + 1892.0, + 728.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1881.0, + 777.0, + 1881.0, + 777.0, + 1892.0, + 767.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1881.0, + 818.0, + 1881.0, + 818.0, + 1892.0, + 805.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1880.0, + 859.0, + 1880.0, + 859.0, + 1895.0, + 843.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1880.0, + 938.0, + 1880.0, + 938.0, + 1895.0, + 923.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1881.0, + 975.0, + 1881.0, + 975.0, + 1892.0, + 966.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1881.0, + 1014.0, + 1881.0, + 1014.0, + 1893.0, + 1004.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1881.0, + 1053.0, + 1881.0, + 1053.0, + 1893.0, + 1043.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1880.0, + 1097.0, + 1880.0, + 1097.0, + 1895.0, + 1078.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1880.0, + 1195.0, + 1880.0, + 1195.0, + 1895.0, + 1180.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1881.0, + 1233.0, + 1881.0, + 1233.0, + 1892.0, + 1223.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1881.0, + 1271.0, + 1881.0, + 1271.0, + 1893.0, + 1260.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1880.0, + 1311.0, + 1880.0, + 1311.0, + 1895.0, + 1297.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1880.0, + 1354.0, + 1880.0, + 1354.0, + 1895.0, + 1334.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1889.0, + 540.0, + 1889.0, + 540.0, + 1912.0, + 447.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1889.0, + 798.0, + 1889.0, + 798.0, + 1912.0, + 706.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1887.0, + 1056.0, + 1887.0, + 1056.0, + 1913.0, + 962.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1889.0, + 1313.0, + 1889.0, + 1313.0, + 1912.0, + 1220.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.75, + 1789.0, + 605.75, + 1789.0, + 605.75, + 1834.0, + 470.75, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1829.0, + 598.0, + 1829.0, + 598.0, + 1865.0, + 471.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1917.0, + 1405.0, + 1917.0, + 1405.0, + 1950.0, + 296.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1944.0, + 1407.0, + 1944.0, + 1407.0, + 1978.0, + 291.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 386.0, + 1970.0, + 386.0, + 2005.0, + 292.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1217.0, + 1374.0, + 1217.0, + 1374.0, + 1263.0, + 291.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1261.0, + 506.0, + 1261.0, + 506.0, + 1296.0, + 350.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 223.0, + 1226.0, + 223.0, + 1226.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 1404.0, + 1042.0, + 1404.0, + 1077.0, + 294.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1072.0, + 1405.0, + 1072.0, + 1405.0, + 1104.0, + 294.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 1407.0, + 1097.0, + 1407.0, + 1134.0, + 294.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1129.0, + 1030.0, + 1129.0, + 1030.0, + 1159.0, + 296.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 1404.0, + 1042.0, + 1404.0, + 1077.0, + 294.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1072.0, + 1405.0, + 1072.0, + 1405.0, + 1104.0, + 294.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 1407.0, + 1097.0, + 1407.0, + 1134.0, + 294.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1129.0, + 1030.0, + 1129.0, + 1030.0, + 1159.0, + 296.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 332.0, + 294.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 326.0, + 1408.0, + 326.0, + 1408.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 353.0, + 1407.0, + 353.0, + 1407.0, + 394.0, + 291.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 385.0, + 1407.0, + 385.0, + 1407.0, + 421.0, + 294.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 415.0, + 1405.0, + 415.0, + 1405.0, + 452.0, + 294.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 481.0, + 295.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 476.0, + 1402.0, + 476.0, + 1402.0, + 512.0, + 295.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 1403.0, + 507.0, + 1403.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 537.0, + 1405.0, + 537.0, + 1405.0, + 573.0, + 294.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 1406.0, + 570.0, + 1406.0, + 605.0, + 294.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 455.0, + 600.0, + 455.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1331.0, + 1407.0, + 1331.0, + 1407.0, + 1362.0, + 296.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1395.0, + 295.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1387.0, + 1406.0, + 1387.0, + 1406.0, + 1428.0, + 291.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 1406.0, + 1420.0, + 1406.0, + 1458.0, + 292.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1482.0, + 1405.0, + 1482.0, + 1405.0, + 1517.0, + 292.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1514.0, + 1403.0, + 1514.0, + 1403.0, + 1545.0, + 296.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 1406.0, + 1544.0, + 1406.0, + 1576.0, + 294.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1571.0, + 1406.0, + 1571.0, + 1406.0, + 1610.0, + 294.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1605.0, + 1406.0, + 1605.0, + 1406.0, + 1640.0, + 295.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1636.0, + 632.0, + 1636.0, + 632.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 353, + 1405, + 353, + 1405, + 688, + 298, + 688 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 704, + 1405, + 704, + 1405, + 858, + 298, + 858 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 356, + 1402, + 1343, + 1402, + 1343, + 1573, + 356, + 1573 + ], + "score": 0.976, + "html": "
EnvironmentRewardfunctionTerminationinrollouts
Antxt -0.1||atl²2-3.0 × (zt -0.57)² +1False
HalfCheetahxt -0.1||atll2False
Hopperxt - 0.001||atl2²+1True
Walker2dxt-0.001||atl2+1True
" + }, + { + "category_id": 1, + "poly": [ + 298, + 872, + 1405, + 872, + 1405, + 996, + 298, + 996 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 390, + 1052, + 1312, + 1052, + 1312, + 1315, + 390, + 1315 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 425, + 1325, + 1269, + 1325, + 1269, + 1355, + 425, + 1355 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 908, + 226, + 908, + 262, + 299, + 262 + ], + "score": 0.908 + }, + { + "category_id": 7, + "poly": [ + 299, + 1581, + 1400, + 1581, + 1400, + 1639, + 299, + 1639 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 295, + 690, + 295, + 690, + 327, + 300, + 327 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 13, + "poly": [ + 563, + 1437, + 1019, + 1437, + 1019, + 1471, + 563, + 1471 + ], + "score": 0.77, + "latex": "\\dot { x } _ { t } - 0 . 1 \\| a _ { t } \\| _ { 2 } ^ { 2 } - 3 . 0 \\times ( z _ { t } - 0 . 5 7 ) ^ { 2 } + 1" + }, + { + "category_id": 13, + "poly": [ + 671, + 1534, + 910, + 1534, + 910, + 1568, + 671, + 1568 + ], + "score": 0.31, + "latex": "\\dot { x } _ { t } - 0 . 0 0 1 \\| a _ { t } \\| _ { 2 } ^ { 2 } + 1" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1278.0, + 549.0, + 1278.0, + 549.0, + 1321.0, + 458.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1281.0, + 822.0, + 1281.0, + 822.0, + 1315.0, + 645.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1276.0, + 1031.0, + 1276.0, + 1031.0, + 1323.0, + 901.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1280.0, + 1271.0, + 1280.0, + 1271.0, + 1315.0, + 1121.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1321.0, + 1273.0, + 1321.0, + 1273.0, + 1360.0, + 425.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 911.0, + 225.0, + 911.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1580.0, + 1404.0, + 1580.0, + 1404.0, + 1611.0, + 295.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1608.0, + 943.0, + 1608.0, + 943.0, + 1638.0, + 297.0, + 1638.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": [ + 295.0, + 297.0, + 694.0, + 297.0, + 694.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 351.0, + 1406.0, + 351.0, + 1406.0, + 390.0, + 293.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 378.0, + 1405.0, + 378.0, + 1405.0, + 423.0, + 292.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 412.0, + 1406.0, + 412.0, + 1406.0, + 451.0, + 292.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 444.0, + 1406.0, + 444.0, + 1406.0, + 478.0, + 295.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 472.0, + 1406.0, + 472.0, + 1406.0, + 512.0, + 292.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 506.0, + 1406.0, + 506.0, + 1406.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 533.0, + 1405.0, + 533.0, + 1405.0, + 571.0, + 293.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 565.0, + 1403.0, + 565.0, + 1403.0, + 601.0, + 292.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 592.0, + 1406.0, + 592.0, + 1406.0, + 634.0, + 292.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 624.0, + 1406.0, + 624.0, + 1406.0, + 665.0, + 292.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 522.0, + 658.0, + 522.0, + 689.0, + 295.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 704.0, + 1403.0, + 704.0, + 1403.0, + 737.0, + 297.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 735.0, + 1406.0, + 735.0, + 1406.0, + 768.0, + 296.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 797.0, + 296.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 794.0, + 1407.0, + 794.0, + 1407.0, + 831.0, + 295.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 825.0, + 1409.0, + 825.0, + 1409.0, + 862.0, + 295.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 1408.0, + 872.0, + 1408.0, + 908.0, + 293.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1406.0, + 905.0, + 1406.0, + 938.0, + 295.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 968.0, + 293.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 964.0, + 1180.0, + 964.0, + 1180.0, + 997.0, + 295.0, + 997.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 472, + 589, + 1225, + 589, + 1225, + 850, + 472, + 850 + ], + "score": 0.982, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Iteration per batch2,0002,0006.0002,000
Deployment551010
Total iteration10.00010.00060.00020.000
Rollouts length2502501,0001,000
Max step size δ0.050.10.050.05
Discount factor y0.990.990.990.99
GAE入0.970.950.950.95
Stationary noise o0.10.10.10.1
" + }, + { + "category_id": 1, + "poly": [ + 295, + 940, + 1407, + 940, + 1407, + 1126, + 295, + 1126 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 286, + 1405, + 286, + 1405, + 381, + 298, + 381 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 466, + 1402, + 466, + 1402, + 560, + 300, + 560 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 322, + 1536, + 1379, + 1536, + 1379, + 1780, + 322, + 1780 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 295, + 1791, + 1407, + 1791, + 1407, + 1849, + 295, + 1849 + ], + "score": 0.934 + }, + { + "category_id": 7, + "poly": [ + 479, + 858, + 1218, + 858, + 1218, + 890, + 479, + 890 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 299, + 413, + 732, + 413, + 732, + 446, + 299, + 446 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.86 + }, + { + "category_id": 3, + "poly": [ + 323, + 1166, + 1381, + 1166, + 1381, + 1409, + 323, + 1409 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 618, + 229, + 618, + 262, + 299, + 262 + ], + "score": 0.851 + }, + { + "category_id": 4, + "poly": [ + 289, + 1420, + 1401, + 1420, + 1401, + 1478, + 289, + 1478 + ], + "score": 0.805 + }, + { + "category_id": 13, + "poly": [ + 1381, + 503, + 1402, + 503, + 1402, + 529, + 1381, + 529 + ], + "score": 0.76, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 574, + 499, + 591, + 499, + 591, + 525, + 574, + 525 + ], + "score": 0.72, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 408, + 530, + 427, + 530, + 427, + 556, + 408, + 556 + ], + "score": 0.69, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 652, + 766, + 671, + 766, + 671, + 789, + 652, + 789 + ], + "score": 0.68, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 296, + 498, + 365, + 498, + 365, + 529, + 296, + 529 + ], + "score": 0.54, + "latex": "1 0 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 659, + 821, + 677, + 821, + 677, + 840, + 659, + 840 + ], + "score": 0.46, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 664, + 1449, + 724, + 1449, + 724, + 1475, + 664, + 1475 + ], + "score": 0.28, + "latex": "2 0 0 \\mathrm { K }" + }, + { + "category_id": 13, + "poly": [ + 635, + 733, + 651, + 733, + 651, + 757, + 635, + 757 + ], + "score": 0.27, + "latex": "\\delta" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1540.0, + 772.0, + 1540.0, + 772.0, + 1562.0, + 742.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1540.0, + 864.0, + 1540.0, + 864.0, + 1562.0, + 834.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1540.0, + 953.0, + 1540.0, + 953.0, + 1562.0, + 925.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1562.0, + 379.0, + 1562.0, + 379.0, + 1775.0, + 348.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1570.0, + 528.0, + 1570.0, + 528.0, + 1595.0, + 489.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1569.0, + 811.0, + 1569.0, + 811.0, + 1596.0, + 708.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1569.0, + 1045.0, + 1569.0, + 1045.0, + 1599.0, + 978.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1571.0, + 1305.0, + 1571.0, + 1305.0, + 1595.0, + 1223.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1582.0, + 359.0, + 1582.0, + 359.0, + 1755.0, + 324.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1589.0, + 655.0, + 1589.0, + 655.0, + 1605.0, + 624.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1601.0, + 402.0, + 1601.0, + 402.0, + 1619.0, + 373.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1605.0, + 654.0, + 1605.0, + 654.0, + 1623.0, + 625.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1597.0, + 906.0, + 1597.0, + 906.0, + 1615.0, + 877.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1597.0, + 1159.0, + 1597.0, + 1159.0, + 1614.0, + 1129.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1632.0, + 403.0, + 1632.0, + 403.0, + 1648.0, + 373.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1622.0, + 656.0, + 1622.0, + 656.0, + 1644.0, + 623.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1621.0, + 906.0, + 1621.0, + 906.0, + 1638.0, + 877.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1614.0, + 1159.0, + 1614.0, + 1159.0, + 1648.0, + 1129.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1640.0, + 655.0, + 1640.0, + 655.0, + 1662.0, + 624.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1645.0, + 906.0, + 1645.0, + 906.0, + 1662.0, + 877.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1648.0, + 1159.0, + 1648.0, + 1159.0, + 1666.0, + 1129.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1663.0, + 403.0, + 1663.0, + 403.0, + 1680.0, + 373.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1659.0, + 655.0, + 1659.0, + 655.0, + 1677.0, + 625.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1669.0, + 907.0, + 1669.0, + 907.0, + 1685.0, + 877.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1665.0, + 1160.0, + 1665.0, + 1160.0, + 1687.0, + 1126.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1693.0, + 402.0, + 1693.0, + 402.0, + 1711.0, + 373.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1677.0, + 656.0, + 1677.0, + 656.0, + 1715.0, + 623.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1693.0, + 906.0, + 1693.0, + 906.0, + 1709.0, + 877.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1682.0, + 1160.0, + 1682.0, + 1160.0, + 1719.0, + 1128.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1725.0, + 403.0, + 1725.0, + 403.0, + 1742.0, + 373.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1712.0, + 656.0, + 1712.0, + 656.0, + 1748.0, + 623.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1715.0, + 907.0, + 1715.0, + 907.0, + 1733.0, + 882.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1719.0, + 1160.0, + 1719.0, + 1160.0, + 1749.0, + 1134.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1751.0, + 556.0, + 1751.0, + 556.0, + 1780.0, + 460.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1751.0, + 571.0, + 1751.0, + 571.0, + 1762.0, + 560.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1751.0, + 609.0, + 1751.0, + 609.0, + 1762.0, + 597.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1751.0, + 670.0, + 1751.0, + 670.0, + 1763.0, + 659.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1751.0, + 707.0, + 1751.0, + 707.0, + 1763.0, + 697.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1751.0, + 807.0, + 1751.0, + 807.0, + 1782.0, + 712.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1751.0, + 822.0, + 1751.0, + 822.0, + 1762.0, + 813.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1750.0, + 864.0, + 1750.0, + 864.0, + 1764.0, + 849.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1751.0, + 940.0, + 1751.0, + 940.0, + 1762.0, + 930.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1751.0, + 1060.0, + 1751.0, + 1060.0, + 1782.0, + 963.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1748.0, + 1099.0, + 1748.0, + 1099.0, + 1766.0, + 1078.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1751.0, + 1193.0, + 1751.0, + 1193.0, + 1762.0, + 1182.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1750.0, + 1313.0, + 1750.0, + 1313.0, + 1785.0, + 1214.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1748.0, + 1351.0, + 1748.0, + 1351.0, + 1766.0, + 1330.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1651.5, + 1333.0, + 1651.5, + 1333.0, + 1675.5, + 1286.0, + 1675.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.75, + 1669.0, + 1304.75, + 1669.0, + 1304.75, + 1690.0, + 1256.75, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.75, + 1688.0, + 1264.75, + 1688.0, + 1264.75, + 1704.5, + 1233.75, + 1704.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1792.0, + 1403.0, + 1792.0, + 1403.0, + 1822.0, + 296.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 842.0, + 1820.0, + 842.0, + 1848.0, + 294.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 854.0, + 1219.0, + 854.0, + 1219.0, + 896.0, + 477.0, + 896.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, + 413.0, + 737.0, + 413.0, + 737.0, + 448.0, + 295.0, + 448.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": [ + 721.0, + 1167.0, + 764.0, + 1167.0, + 764.0, + 1192.0, + 721.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1167.0, + 864.0, + 1167.0, + 864.0, + 1192.0, + 822.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1167.0, + 974.0, + 1167.0, + 974.0, + 1192.0, + 923.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1190.0, + 402.0, + 1190.0, + 402.0, + 1404.0, + 322.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1198.0, + 521.0, + 1198.0, + 521.0, + 1223.0, + 483.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1221.0, + 659.0, + 1221.0, + 659.0, + 1237.0, + 624.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1202.0, + 807.0, + 1202.0, + 807.0, + 1221.0, + 708.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1221.0, + 915.0, + 1221.0, + 915.0, + 1237.0, + 885.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1198.0, + 1048.0, + 1198.0, + 1048.0, + 1227.0, + 981.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1218.0, + 1175.0, + 1218.0, + 1175.0, + 1235.0, + 1141.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1200.0, + 1310.0, + 1200.0, + 1310.0, + 1221.0, + 1228.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1242.0, + 402.0, + 1242.0, + 402.0, + 1280.0, + 374.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1248.0, + 659.0, + 1248.0, + 659.0, + 1266.0, + 629.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1240.0, + 915.0, + 1240.0, + 915.0, + 1276.0, + 885.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1253.0, + 1172.0, + 1253.0, + 1172.0, + 1270.0, + 1141.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1276.0, + 659.0, + 1276.0, + 659.0, + 1293.0, + 629.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1276.0, + 915.0, + 1276.0, + 915.0, + 1295.0, + 889.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1285.0, + 403.0, + 1285.0, + 403.0, + 1302.0, + 378.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1286.0, + 1172.0, + 1286.0, + 1172.0, + 1304.0, + 1141.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1295.0, + 915.0, + 1295.0, + 915.0, + 1313.0, + 891.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1304.0, + 402.0, + 1304.0, + 402.0, + 1323.0, + 378.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1304.0, + 659.0, + 1304.0, + 659.0, + 1321.0, + 629.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1313.0, + 915.0, + 1313.0, + 915.0, + 1330.0, + 891.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1326.0, + 402.0, + 1326.0, + 402.0, + 1343.0, + 379.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1332.0, + 660.0, + 1332.0, + 660.0, + 1348.0, + 629.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1332.0, + 916.0, + 1332.0, + 916.0, + 1349.0, + 891.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1321.0, + 1173.0, + 1321.0, + 1173.0, + 1338.0, + 1146.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1347.0, + 403.0, + 1347.0, + 403.0, + 1364.0, + 379.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1353.0, + 914.0, + 1353.0, + 914.0, + 1365.0, + 903.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1360.0, + 660.0, + 1360.0, + 660.0, + 1374.0, + 646.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1360.0, + 1170.0, + 1360.0, + 1170.0, + 1370.0, + 1161.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1372.0, + 401.0, + 1372.0, + 401.0, + 1382.0, + 391.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1368.0, + 915.0, + 1368.0, + 915.0, + 1385.0, + 886.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1380.0, + 414.0, + 1380.0, + 414.0, + 1390.0, + 406.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1380.0, + 450.0, + 1380.0, + 450.0, + 1390.0, + 442.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1380.0, + 549.0, + 1380.0, + 549.0, + 1410.0, + 453.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1380.0, + 560.0, + 1380.0, + 560.0, + 1390.0, + 550.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1380.0, + 599.0, + 1380.0, + 599.0, + 1392.0, + 588.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1380.0, + 707.0, + 1380.0, + 707.0, + 1390.0, + 698.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1380.0, + 818.0, + 1380.0, + 818.0, + 1410.0, + 709.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1380.0, + 854.0, + 1380.0, + 854.0, + 1391.0, + 842.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1380.0, + 944.0, + 1380.0, + 944.0, + 1391.0, + 932.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1380.0, + 1062.0, + 1380.0, + 1062.0, + 1410.0, + 966.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1378.0, + 1099.0, + 1378.0, + 1099.0, + 1392.0, + 1081.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1380.0, + 1318.0, + 1380.0, + 1318.0, + 1409.0, + 1224.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1378.0, + 1355.0, + 1378.0, + 1355.0, + 1392.0, + 1338.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 620.0, + 230.0, + 620.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1418.0, + 1407.0, + 1418.0, + 1407.0, + 1453.0, + 296.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 663.0, + 1449.0, + 663.0, + 1477.0, + 294.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1449.0, + 731.0, + 1449.0, + 731.0, + 1477.0, + 725.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 976.0, + 294.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 970.0, + 1405.0, + 970.0, + 1405.0, + 1007.0, + 294.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1000.0, + 1409.0, + 1000.0, + 1409.0, + 1037.0, + 292.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1032.0, + 1409.0, + 1032.0, + 1409.0, + 1067.0, + 292.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1062.0, + 1406.0, + 1062.0, + 1406.0, + 1098.0, + 293.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1365.0, + 1090.0, + 1365.0, + 1129.0, + 293.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 285.0, + 1407.0, + 285.0, + 1407.0, + 323.0, + 293.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 316.0, + 1403.0, + 316.0, + 1403.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 528.0, + 348.0, + 528.0, + 383.0, + 295.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 464.0, + 1407.0, + 464.0, + 1407.0, + 502.0, + 293.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 495.0, + 573.0, + 495.0, + 573.0, + 532.0, + 366.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 495.0, + 1380.0, + 495.0, + 1380.0, + 532.0, + 592.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 495.0, + 1406.0, + 495.0, + 1406.0, + 532.0, + 1403.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 528.0, + 407.0, + 528.0, + 407.0, + 562.0, + 295.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 528.0, + 773.0, + 528.0, + 773.0, + 562.0, + 428.0, + 562.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1187, + 1405, + 1187, + 1405, + 1374, + 296, + 1374 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 522, + 1406, + 522, + 1406, + 616, + 298, + 616 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1404, + 228, + 1404, + 351, + 296, + 351 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 461, + 650, + 1234, + 650, + 1234, + 1056, + 461, + 1056 + ], + "score": 0.971 + }, + { + "category_id": 5, + "poly": [ + 470, + 1723, + 1228, + 1723, + 1228, + 1815, + 470, + 1815 + ], + "score": 0.97, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate1e-41e-33e-51e-5
Divergence penalty α0.30.10.30.3
" + }, + { + "category_id": 5, + "poly": [ + 466, + 1540, + 1230, + 1540, + 1230, + 1634, + 466, + 1634 + ], + "score": 0.969, + "html": "
ParameterAntHalfCheetahHopperWalker2d
Policy learning rate3e-053e-043e-063e-05
Perturbation range Φ0.150.50.150.15
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1387, + 1404, + 1387, + 1404, + 1512, + 299, + 1512 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 550, + 470, + 1147, + 470, + 1147, + 510, + 550, + 510 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 293, + 393, + 1401, + 393, + 1401, + 457, + 293, + 457 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 601, + 350, + 1094, + 350, + 1094, + 387, + 601, + 387 + ], + "score": 0.939 + }, + { + "category_id": 4, + "poly": [ + 294, + 1078, + 1401, + 1078, + 1401, + 1137, + 294, + 1137 + ], + "score": 0.932 + }, + { + "category_id": 6, + "poly": [ + 669, + 1643, + 1030, + 1643, + 1030, + 1674, + 669, + 1674 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.909 + }, + { + "category_id": 6, + "poly": [ + 662, + 1825, + 1037, + 1825, + 1037, + 1855, + 662, + 1855 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 13, + "poly": [ + 674, + 521, + 780, + 521, + 780, + 557, + 674, + 557 + ], + "score": 0.93, + "latex": "{ \\mathcal { N } } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 604, + 346, + 1095, + 346, + 1095, + 388, + 604, + 388 + ], + "score": 0.91, + "latex": "a _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) ." + }, + { + "category_id": 14, + "poly": [ + 550, + 469, + 1148, + 469, + 1148, + 509, + 550, + 509 + ], + "score": 0.89, + "latex": "a _ { t } = \\operatorname { t a n h } ( \\mu _ { \\theta } ( s _ { t } ) ) + \\sigma _ { \\theta } ( s _ { t } ) \\odot \\epsilon , \\qquad \\epsilon \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 1263, + 399, + 1293, + 399, + 1293, + 424, + 1263, + 424 + ], + "score": 0.84, + "latex": "\\sigma _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1133, + 399, + 1164, + 399, + 1164, + 425, + 1133, + 425 + ], + "score": 0.84, + "latex": "\\mu _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 919, + 530, + 940, + 530, + 940, + 551, + 919, + 551 + ], + "score": 0.78, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 841, + 1086, + 860, + 1086, + 860, + 1105, + 841, + 1105 + ], + "score": 0.78, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 875, + 1008, + 934, + 1008, + 934, + 1029, + 875, + 1029 + ], + "score": 0.64, + "latex": "\\sigma = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 875, + 1033, + 935, + 1033, + 935, + 1054, + 875, + 1054 + ], + "score": 0.6, + "latex": "\\sigma = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 675, + 1600, + 697, + 1600, + 697, + 1624, + 675, + 1624 + ], + "score": 0.3, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 687, + 1787, + 707, + 1787, + 707, + 1806, + 687, + 1806 + ], + "score": 0.27, + "latex": "\\alpha" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 648.0, + 935.0, + 648.0, + 935.0, + 683.0, + 764.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 681.0, + 598.0, + 681.0, + 598.0, + 940.0, + 560.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 699.0, + 568.0, + 699.0, + 568.0, + 921.0, + 526.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 723.0, + 654.0, + 723.0, + 654.0, + 757.0, + 589.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 781.0, + 652.0, + 781.0, + 652.0, + 815.0, + 590.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 844.0, + 652.0, + 844.0, + 652.0, + 875.0, + 589.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 908.0, + 649.0, + 908.0, + 649.0, + 929.0, + 629.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 942.0, + 825.0, + 942.0, + 825.0, + 968.0, + 802.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 944.0, + 896.0, + 944.0, + 896.0, + 967.0, + 876.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 946.0, + 965.0, + 946.0, + 965.0, + 965.0, + 950.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 950.0, + 1036.0, + 950.0, + 1036.0, + 963.0, + 1024.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 963.0, + 923.0, + 963.0, + 923.0, + 997.0, + 780.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1007.0, + 589.0, + 1007.0, + 589.0, + 1029.0, + 511.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1005.0, + 728.0, + 1005.0, + 728.0, + 1032.0, + 657.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1005.0, + 1015.0, + 1005.0, + 1015.0, + 1034.0, + 935.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1007.0, + 1232.0, + 1007.0, + 1232.0, + 1033.0, + 1085.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1032.0, + 578.0, + 1032.0, + 578.0, + 1053.0, + 512.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1031.0, + 802.0, + 1031.0, + 802.0, + 1057.0, + 659.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1031.0, + 1014.0, + 1031.0, + 1014.0, + 1057.0, + 936.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1074.0, + 840.0, + 1074.0, + 840.0, + 1114.0, + 293.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1074.0, + 1404.0, + 1074.0, + 1404.0, + 1114.0, + 861.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1105.0, + 542.0, + 1105.0, + 542.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1642.0, + 1031.0, + 1642.0, + 1031.0, + 1678.0, + 666.0, + 1678.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": [ + 659.0, + 1824.0, + 1039.0, + 1824.0, + 1039.0, + 1859.0, + 659.0, + 1859.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": [ + 296.0, + 1190.0, + 1403.0, + 1190.0, + 1403.0, + 1222.0, + 296.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 1406.0, + 1220.0, + 1406.0, + 1255.0, + 293.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1251.0, + 1403.0, + 1251.0, + 1403.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1277.0, + 1406.0, + 1277.0, + 1406.0, + 1319.0, + 291.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1309.0, + 1406.0, + 1309.0, + 1406.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1407.0, + 1341.0, + 1407.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 673.0, + 519.0, + 673.0, + 561.0, + 293.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 519.0, + 918.0, + 519.0, + 918.0, + 561.0, + 781.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 519.0, + 1406.0, + 519.0, + 1406.0, + 561.0, + 941.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 554.0, + 1404.0, + 554.0, + 1404.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 586.0, + 1222.0, + 586.0, + 1222.0, + 616.0, + 297.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 259.0, + 1404.0, + 259.0, + 1404.0, + 299.0, + 291.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 326.0, + 337.0, + 326.0, + 337.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1423.0, + 292.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1454.0, + 293.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 559.0, + 1479.0, + 559.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 392.0, + 1132.0, + 392.0, + 1132.0, + 428.0, + 295.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 392.0, + 1262.0, + 392.0, + 1262.0, + 428.0, + 1165.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 392.0, + 1404.0, + 392.0, + 1404.0, + 428.0, + 1294.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 425.0, + 675.0, + 425.0, + 675.0, + 461.0, + 293.0, + 461.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 282, + 1403, + 282, + 1403, + 408, + 298, + 408 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 421, + 1402, + 421, + 1402, + 515, + 299, + 515 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 301, + 584, + 1403, + 584, + 1403, + 821, + 301, + 821 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 299, + 544, + 704, + 544, + 704, + 575, + 299, + 575 + ], + "score": 0.871 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 536, + 229, + 536, + 261, + 298, + 261 + ], + "score": 0.854 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2112, + 834, + 2112 + ], + "score": 0.832 + }, + { + "category_id": 13, + "poly": [ + 535, + 586, + 769, + 586, + 769, + 617, + 535, + 617 + ], + "score": 0.9, + "latex": "\\mathcal { D } = \\{ s _ { t } , a _ { t } , r _ { t } , s _ { t + 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 609, + 641, + 637, + 641, + 637, + 677, + 609, + 677 + ], + "score": 0.89, + "latex": "\\hat { f } _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 969, + 585, + 1174, + 585, + 1174, + 618, + 969, + 618 + ], + "score": 0.89, + "latex": "\\phi = \\{ \\phi _ { 1 } , \\cdot \\cdot \\cdot , \\phi _ { K } \\}" + }, + { + "category_id": 13, + "poly": [ + 566, + 703, + 794, + 703, + 794, + 732, + 566, + 732 + ], + "score": 0.88, + "latex": "\\pi _ { \\theta _ { 0 } } = \\mathrm { N o r m a l } ( \\hat { \\pi } _ { \\beta } , 1 )" + }, + { + "category_id": 13, + "poly": [ + 577, + 732, + 721, + 732, + 721, + 758, + 577, + 758 + ], + "score": 0.87, + "latex": "k = 1 , \\cdots , T" + }, + { + "category_id": 13, + "poly": [ + 662, + 676, + 692, + 676, + 692, + 704, + 662, + 704 + ], + "score": 0.85, + "latex": "\\hat { \\pi } _ { \\beta }" + }, + { + "category_id": 13, + "poly": [ + 597, + 790, + 626, + 790, + 626, + 812, + 597, + 812 + ], + "score": 0.83, + "latex": "\\pi \\theta" + }, + { + "category_id": 13, + "poly": [ + 396, + 377, + 420, + 377, + 420, + 403, + 396, + 403 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 756, + 676, + 780, + 676, + 780, + 700, + 756, + 700 + ], + "score": 0.79, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 399, + 647, + 426, + 647, + 426, + 672, + 399, + 672 + ], + "score": 0.77, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 701, + 647, + 726, + 647, + 726, + 672, + 701, + 672 + ], + "score": 0.77, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 472, + 616, + 493, + 616, + 493, + 640, + 472, + 640 + ], + "score": 0.7, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1185, + 587, + 1205, + 587, + 1205, + 617, + 1185, + 617 + ], + "score": 0.61, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 561, + 423, + 620, + 423, + 620, + 452, + 561, + 452 + ], + "score": 0.55, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 453, + 1227, + 453, + 1227, + 482, + 1167, + 482 + ], + "score": 0.26, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 481, + 423, + 528, + 423, + 528, + 451, + 481, + 451 + ], + "score": 0.26, + "latex": "5 0 \\mathrm { k }" + }, + { + "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, + 541.0, + 709.0, + 541.0, + 709.0, + 578.0, + 294.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 542.0, + 225.0, + 542.0, + 268.0, + 292.0, + 268.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": [ + 292.0, + 281.0, + 1405.0, + 281.0, + 1405.0, + 320.0, + 292.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 313.0, + 1407.0, + 313.0, + 1407.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 345.0, + 1407.0, + 345.0, + 1407.0, + 378.0, + 293.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 373.0, + 395.0, + 373.0, + 395.0, + 411.0, + 293.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 373.0, + 1169.0, + 373.0, + 1169.0, + 411.0, + 421.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 422.0, + 480.0, + 422.0, + 480.0, + 456.0, + 295.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 422.0, + 560.0, + 422.0, + 560.0, + 456.0, + 529.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 422.0, + 1404.0, + 422.0, + 1404.0, + 456.0, + 621.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 452.0, + 1166.0, + 452.0, + 1166.0, + 483.0, + 297.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 452.0, + 1402.0, + 452.0, + 1402.0, + 483.0, + 1228.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 483.0, + 412.0, + 483.0, + 412.0, + 514.0, + 294.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 534.0, + 581.0, + 534.0, + 621.0, + 295.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 581.0, + 968.0, + 581.0, + 968.0, + 621.0, + 770.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 581.0, + 1184.0, + 581.0, + 1184.0, + 621.0, + 1175.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 581.0, + 1404.0, + 581.0, + 1404.0, + 621.0, + 1206.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 616.0, + 471.0, + 616.0, + 471.0, + 643.0, + 338.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 616.0, + 501.0, + 616.0, + 501.0, + 643.0, + 494.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 645.0, + 398.0, + 645.0, + 398.0, + 677.0, + 306.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 645.0, + 608.0, + 645.0, + 608.0, + 677.0, + 427.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 645.0, + 700.0, + 645.0, + 700.0, + 677.0, + 638.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 645.0, + 885.0, + 645.0, + 885.0, + 677.0, + 727.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 670.0, + 661.0, + 670.0, + 661.0, + 708.0, + 304.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 670.0, + 755.0, + 670.0, + 755.0, + 708.0, + 693.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 670.0, + 1146.0, + 670.0, + 1146.0, + 708.0, + 781.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 699.0, + 565.0, + 699.0, + 565.0, + 735.0, + 304.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 699.0, + 807.0, + 699.0, + 807.0, + 735.0, + 795.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 726.0, + 576.0, + 726.0, + 576.0, + 763.0, + 302.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 726.0, + 761.0, + 726.0, + 761.0, + 763.0, + 722.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 755.0, + 336.0, + 755.0, + 336.0, + 789.0, + 305.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 755.0, + 650.0, + 755.0, + 650.0, + 789.0, + 364.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 783.0, + 336.0, + 783.0, + 336.0, + 814.0, + 305.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 782.0, + 596.0, + 782.0, + 596.0, + 817.0, + 361.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 782.0, + 1015.0, + 782.0, + 1015.0, + 817.0, + 627.0, + 817.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1095, + 1406, + 1095, + 1406, + 1279, + 297, + 1279 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 368, + 471, + 1405, + 471, + 1405, + 885, + 368, + 885 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 326, + 1657, + 1375, + 1657, + 1375, + 1901, + 326, + 1901 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 325, + 1316, + 1376, + 1316, + 1376, + 1559, + 325, + 1559 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 300, + 352, + 1407, + 352, + 1407, + 446, + 300, + 446 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 299, + 909, + 1406, + 909, + 1406, + 1002, + 299, + 1002 + ], + "score": 0.955 + }, + { + "category_id": 4, + "poly": [ + 459, + 1914, + 1236, + 1914, + 1236, + 1943, + 459, + 1943 + ], + "score": 0.928 + }, + { + "category_id": 4, + "poly": [ + 383, + 1571, + 1307, + 1571, + 1307, + 1601, + 383, + 1601 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 298, + 226, + 917, + 226, + 917, + 263, + 298, + 263 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 300, + 1038, + 1076, + 1038, + 1076, + 1071, + 300, + 1071 + ], + "score": 0.843 + }, + { + "category_id": 1, + "poly": [ + 300, + 295, + 1061, + 295, + 1061, + 328, + 300, + 328 + ], + "score": 0.624 + }, + { + "category_id": 0, + "poly": [ + 300, + 295, + 1061, + 295, + 1061, + 328, + 300, + 328 + ], + "score": 0.372 + }, + { + "category_id": 13, + "poly": [ + 1005, + 676, + 1130, + 676, + 1130, + 711, + 1005, + 711 + ], + "score": 0.93, + "latex": "\\mathcal { N } ( 0 , 0 . \\bar { 1 } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 854, + 778, + 978, + 778, + 978, + 813, + 854, + 813 + ], + "score": 0.93, + "latex": "\\bar { \\mathcal { N } ( 0 , 0 . 3 ^ { 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 504, + 1209, + 504, + 1209, + 531, + 1122, + 531 + ], + "score": 0.91, + "latex": "\\epsilon = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1219, + 1397, + 1219, + 1397, + 1247, + 1304, + 1247 + ], + "score": 0.9, + "latex": "K = 1 0" + }, + { + "category_id": 13, + "poly": [ + 522, + 1250, + 601, + 1250, + 601, + 1277, + 522, + 1277 + ], + "score": 0.9, + "latex": "K = 5" + }, + { + "category_id": 13, + "poly": [ + 611, + 607, + 698, + 607, + 698, + 635, + 611, + 635 + ], + "score": 0.9, + "latex": "\\epsilon = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 527, + 750, + 587, + 750, + 587, + 778, + 527, + 778 + ], + "score": 0.87, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 1034, + 780, + 1094, + 780, + 1094, + 808, + 1034, + 808 + ], + "score": 0.87, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 525, + 534, + 586, + 534, + 586, + 563, + 525, + 563 + ], + "score": 0.87, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 465, + 473, + 524, + 473, + 524, + 501, + 465, + 501 + ], + "score": 0.87, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 755, + 605, + 816, + 605, + 816, + 635, + 755, + 635 + ], + "score": 0.86, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 528, + 646, + 591, + 646, + 591, + 676, + 528, + 676 + ], + "score": 0.86, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 437, + 504, + 498, + 504, + 498, + 532, + 437, + 532 + ], + "score": 0.86, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 545, + 708, + 606, + 708, + 606, + 736, + 545, + 736 + ], + "score": 0.86, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1206, + 646, + 1268, + 646, + 1268, + 676, + 1206, + 676 + ], + "score": 0.85, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 635, + 574, + 699, + 574, + 699, + 603, + 635, + 603 + ], + "score": 0.85, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 1181, + 750, + 1240, + 750, + 1240, + 778, + 1181, + 778 + ], + "score": 0.84, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 457, + 713, + 487, + 713, + 487, + 738, + 457, + 738 + ], + "score": 0.84, + "latex": "\\pi _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 574, + 1140, + 574, + 1140, + 604, + 1076, + 604 + ], + "score": 0.84, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 1165, + 650, + 1195, + 650, + 1195, + 677, + 1165, + 677 + ], + "score": 0.82, + "latex": "\\pi _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1034, + 578, + 1064, + 578, + 1064, + 605, + 1034, + 605 + ], + "score": 0.82, + "latex": "\\pi _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1141, + 753, + 1171, + 753, + 1171, + 780, + 1141, + 780 + ], + "score": 0.82, + "latex": "\\pi _ { b }" + }, + { + "category_id": 13, + "poly": [ + 396, + 507, + 427, + 507, + 427, + 533, + 396, + 533 + ], + "score": 0.8, + "latex": "\\pi _ { b }" + }, + { + "category_id": 13, + "poly": [ + 495, + 1158, + 524, + 1158, + 524, + 1185, + 495, + 1185 + ], + "score": 0.73, + "latex": "K" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1663.0, + 706.0, + 1663.0, + 706.0, + 1683.0, + 666.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1662.0, + 811.0, + 1662.0, + 811.0, + 1683.0, + 769.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1663.0, + 913.0, + 1663.0, + 913.0, + 1682.0, + 873.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1663.0, + 1028.0, + 1663.0, + 1028.0, + 1683.0, + 979.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1685.0, + 376.0, + 1685.0, + 376.0, + 1780.0, + 349.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1694.0, + 526.0, + 1694.0, + 526.0, + 1715.0, + 490.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1694.0, + 809.0, + 1694.0, + 809.0, + 1713.0, + 710.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1691.0, + 1044.0, + 1691.0, + 1044.0, + 1718.0, + 979.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1693.0, + 1304.0, + 1693.0, + 1304.0, + 1716.0, + 1223.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1719.0, + 357.0, + 1719.0, + 357.0, + 1821.0, + 326.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1722.0, + 403.0, + 1722.0, + 403.0, + 1738.0, + 373.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1719.0, + 1159.0, + 1719.0, + 1159.0, + 1736.0, + 1128.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1732.0, + 655.0, + 1732.0, + 655.0, + 1748.0, + 624.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1730.0, + 907.0, + 1730.0, + 907.0, + 1747.0, + 877.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1748.0, + 402.0, + 1748.0, + 402.0, + 1765.0, + 373.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1744.0, + 1159.0, + 1744.0, + 1159.0, + 1761.0, + 1128.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1769.0, + 403.0, + 1769.0, + 403.0, + 1896.0, + 348.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1765.0, + 655.0, + 1765.0, + 655.0, + 1781.0, + 625.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1760.0, + 906.0, + 1760.0, + 906.0, + 1773.0, + 878.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1769.0, + 1159.0, + 1769.0, + 1159.0, + 1786.0, + 1128.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1799.0, + 403.0, + 1799.0, + 403.0, + 1816.0, + 373.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1798.0, + 655.0, + 1798.0, + 655.0, + 1815.0, + 624.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1789.0, + 906.0, + 1789.0, + 906.0, + 1802.0, + 878.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1793.0, + 1159.0, + 1793.0, + 1159.0, + 1811.0, + 1129.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1812.0, + 350.0, + 1812.0, + 350.0, + 1847.0, + 331.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1827.0, + 402.0, + 1827.0, + 402.0, + 1840.0, + 374.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1832.0, + 655.0, + 1832.0, + 655.0, + 1848.0, + 624.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1815.0, + 907.0, + 1815.0, + 907.0, + 1832.0, + 877.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1820.0, + 1159.0, + 1820.0, + 1159.0, + 1836.0, + 1129.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1845.0, + 349.0, + 1845.0, + 349.0, + 1860.0, + 335.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1845.0, + 906.0, + 1845.0, + 906.0, + 1858.0, + 878.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1843.0, + 1159.0, + 1843.0, + 1159.0, + 1860.0, + 1133.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1851.0, + 404.0, + 1851.0, + 404.0, + 1867.0, + 373.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1871.0, + 420.0, + 1871.0, + 420.0, + 1884.0, + 404.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1871.0, + 611.0, + 1871.0, + 611.0, + 1885.0, + 426.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1871.0, + 671.0, + 1871.0, + 671.0, + 1884.0, + 655.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1871.0, + 864.0, + 1871.0, + 864.0, + 1885.0, + 678.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1871.0, + 925.0, + 1871.0, + 925.0, + 1885.0, + 908.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1871.0, + 1115.0, + 1871.0, + 1115.0, + 1885.0, + 929.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1872.0, + 1174.0, + 1872.0, + 1174.0, + 1883.0, + 1162.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1870.0, + 1368.0, + 1870.0, + 1368.0, + 1885.0, + 1182.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1882.0, + 541.0, + 1882.0, + 541.0, + 1901.0, + 473.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1882.0, + 793.0, + 1882.0, + 793.0, + 1901.0, + 726.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1882.0, + 1046.0, + 1882.0, + 1046.0, + 1901.0, + 979.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1882.0, + 1297.0, + 1882.0, + 1297.0, + 1901.0, + 1230.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1762.5, + 624.0, + 1762.5, + 624.0, + 1839.0, + 388.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1317.0, + 708.0, + 1317.0, + 708.0, + 1342.0, + 665.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1317.0, + 812.0, + 1317.0, + 812.0, + 1342.0, + 768.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1318.0, + 915.0, + 1318.0, + 915.0, + 1340.0, + 873.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1317.0, + 1029.0, + 1317.0, + 1029.0, + 1341.0, + 976.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1341.0, + 378.0, + 1341.0, + 378.0, + 1554.0, + 347.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1348.0, + 527.0, + 1348.0, + 527.0, + 1373.0, + 488.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1349.0, + 810.0, + 1349.0, + 810.0, + 1372.0, + 708.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1348.0, + 1045.0, + 1348.0, + 1045.0, + 1375.0, + 978.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1350.0, + 1303.0, + 1350.0, + 1303.0, + 1371.0, + 1221.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1361.0, + 358.0, + 1361.0, + 358.0, + 1535.0, + 323.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1367.0, + 654.0, + 1367.0, + 654.0, + 1384.0, + 625.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1380.0, + 402.0, + 1380.0, + 402.0, + 1397.0, + 372.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1384.0, + 656.0, + 1384.0, + 656.0, + 1421.0, + 623.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1376.0, + 907.0, + 1376.0, + 907.0, + 1416.0, + 877.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1376.0, + 1161.0, + 1376.0, + 1161.0, + 1427.0, + 1127.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1420.0, + 654.0, + 1420.0, + 654.0, + 1438.0, + 624.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1423.0, + 907.0, + 1423.0, + 907.0, + 1440.0, + 877.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1426.0, + 1161.0, + 1426.0, + 1161.0, + 1446.0, + 1127.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1443.0, + 402.0, + 1443.0, + 402.0, + 1489.0, + 372.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1438.0, + 657.0, + 1438.0, + 657.0, + 1492.0, + 623.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1447.0, + 907.0, + 1447.0, + 907.0, + 1488.0, + 877.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1443.0, + 1161.0, + 1443.0, + 1161.0, + 1498.0, + 1127.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1504.0, + 401.0, + 1504.0, + 401.0, + 1517.0, + 373.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1491.0, + 655.0, + 1491.0, + 655.0, + 1509.0, + 625.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1495.0, + 907.0, + 1495.0, + 907.0, + 1511.0, + 882.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1497.0, + 1160.0, + 1497.0, + 1160.0, + 1515.0, + 1133.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1513.0, + 654.0, + 1513.0, + 654.0, + 1524.0, + 643.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1521.0, + 906.0, + 1521.0, + 906.0, + 1530.0, + 895.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1518.0, + 1157.0, + 1518.0, + 1157.0, + 1527.0, + 1148.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1530.0, + 556.0, + 1530.0, + 556.0, + 1559.0, + 460.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1530.0, + 570.0, + 1530.0, + 570.0, + 1539.0, + 560.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1529.0, + 611.0, + 1529.0, + 611.0, + 1540.0, + 599.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1530.0, + 668.0, + 1530.0, + 668.0, + 1540.0, + 660.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1530.0, + 707.0, + 1530.0, + 707.0, + 1540.0, + 698.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1530.0, + 808.0, + 1530.0, + 808.0, + 1560.0, + 711.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1530.0, + 823.0, + 1530.0, + 823.0, + 1540.0, + 813.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1528.0, + 864.0, + 1528.0, + 864.0, + 1542.0, + 849.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1530.0, + 1059.0, + 1530.0, + 1059.0, + 1560.0, + 964.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1528.0, + 1097.0, + 1528.0, + 1097.0, + 1541.0, + 1081.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1529.0, + 1311.0, + 1529.0, + 1311.0, + 1560.0, + 1215.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1528.0, + 1349.0, + 1528.0, + 1349.0, + 1541.0, + 1331.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.75, + 1410.0, + 400.75, + 1410.0, + 400.75, + 1427.0, + 373.75, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.25, + 1531.0, + 940.25, + 1531.0, + 940.25, + 1538.0, + 928.25, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1910.0, + 1239.0, + 1910.0, + 1239.0, + 1949.0, + 460.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1567.0, + 1311.0, + 1567.0, + 1311.0, + 1606.0, + 387.0, + 1606.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, + 225.0, + 919.0, + 225.0, + 919.0, + 266.0, + 296.0, + 266.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, + 1037.0, + 1079.0, + 1037.0, + 1079.0, + 1074.0, + 295.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 295.0, + 1064.0, + 295.0, + 1064.0, + 330.0, + 296.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1093.0, + 1406.0, + 1093.0, + 1406.0, + 1130.0, + 292.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1129.0, + 1404.0, + 1129.0, + 1404.0, + 1160.0, + 296.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1158.0, + 494.0, + 1158.0, + 494.0, + 1190.0, + 296.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1158.0, + 1404.0, + 1158.0, + 1404.0, + 1190.0, + 525.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1190.0, + 1403.0, + 1190.0, + 1403.0, + 1221.0, + 296.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1217.0, + 1303.0, + 1217.0, + 1303.0, + 1253.0, + 295.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1217.0, + 1408.0, + 1217.0, + 1408.0, + 1253.0, + 1398.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1249.0, + 521.0, + 1249.0, + 521.0, + 1281.0, + 296.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1249.0, + 612.0, + 1249.0, + 612.0, + 1281.0, + 602.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 473.0, + 464.0, + 473.0, + 464.0, + 508.0, + 368.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 473.0, + 1406.0, + 473.0, + 1406.0, + 508.0, + 525.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 502.0, + 436.0, + 502.0, + 436.0, + 538.0, + 428.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 502.0, + 1121.0, + 502.0, + 1121.0, + 538.0, + 499.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 502.0, + 1405.0, + 502.0, + 1405.0, + 538.0, + 1210.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 531.0, + 524.0, + 531.0, + 524.0, + 570.0, + 393.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 531.0, + 1193.0, + 531.0, + 1193.0, + 570.0, + 587.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 576.0, + 634.0, + 576.0, + 634.0, + 608.0, + 371.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 576.0, + 1033.0, + 576.0, + 1033.0, + 608.0, + 700.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 576.0, + 1075.0, + 576.0, + 1075.0, + 608.0, + 1065.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 576.0, + 1403.0, + 576.0, + 1403.0, + 608.0, + 1141.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 606.0, + 610.0, + 606.0, + 610.0, + 641.0, + 393.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 606.0, + 754.0, + 606.0, + 754.0, + 641.0, + 699.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 606.0, + 1309.0, + 606.0, + 1309.0, + 641.0, + 817.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 647.0, + 527.0, + 647.0, + 527.0, + 679.0, + 393.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 647.0, + 1164.0, + 647.0, + 1164.0, + 679.0, + 592.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 647.0, + 1205.0, + 647.0, + 1205.0, + 679.0, + 1196.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 647.0, + 1405.0, + 647.0, + 1405.0, + 679.0, + 1269.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 677.0, + 1004.0, + 677.0, + 1004.0, + 712.0, + 393.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 677.0, + 1405.0, + 677.0, + 1405.0, + 712.0, + 1131.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 705.0, + 456.0, + 705.0, + 456.0, + 745.0, + 393.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 705.0, + 544.0, + 705.0, + 544.0, + 745.0, + 488.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 705.0, + 1099.0, + 705.0, + 1099.0, + 745.0, + 607.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 749.0, + 526.0, + 749.0, + 526.0, + 784.0, + 368.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 749.0, + 1140.0, + 749.0, + 1140.0, + 784.0, + 588.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 749.0, + 1180.0, + 749.0, + 1180.0, + 784.0, + 1172.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 749.0, + 1404.0, + 749.0, + 1404.0, + 784.0, + 1241.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 779.0, + 853.0, + 779.0, + 853.0, + 815.0, + 394.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 779.0, + 1033.0, + 779.0, + 1033.0, + 815.0, + 979.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 779.0, + 1404.0, + 779.0, + 1404.0, + 815.0, + 1095.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 810.0, + 568.0, + 810.0, + 568.0, + 846.0, + 394.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 847.0, + 1193.0, + 847.0, + 1193.0, + 890.0, + 365.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1404.0, + 350.0, + 1404.0, + 387.0, + 293.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 1411.0, + 380.0, + 1411.0, + 420.0, + 294.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 802.0, + 414.0, + 802.0, + 446.0, + 295.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 908.0, + 1408.0, + 908.0, + 1408.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 936.0, + 1406.0, + 936.0, + 1406.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 970.0, + 497.0, + 970.0, + 497.0, + 1005.0, + 296.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 295.0, + 1064.0, + 295.0, + 1064.0, + 330.0, + 296.0, + 330.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.855 + }, + { + "category_id": 6, + "poly": [ + 637, + 657, + 1061, + 657, + 1061, + 681, + 637, + 681 + ], + "score": 0.426 + }, + { + "category_id": 6, + "poly": [ + 609, + 911, + 1089, + 911, + 1089, + 935, + 609, + 935 + ], + "score": 0.414 + }, + { + "category_id": 7, + "poly": [ + 296, + 1685, + 1406, + 1685, + 1406, + 1854, + 296, + 1854 + ], + "score": 0.35 + }, + { + "category_id": 5, + "poly": [ + 427, + 1442, + 1271, + 1442, + 1271, + 1675, + 427, + 1675 + ], + "score": 0.344, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset470-285342
BC989±10-2±1106±62108±110
BCQ1222±1142887±242206±7228±12
BRAC1057±923449±259227±3029±54
BRAC (max Q)683±573418±171224±3726±50
BREMEN (Ours)905±113627±193270±68254±6
ME-TRPO (offline)2221±6652701±120321±29262±13
" + }, + { + "category_id": 6, + "poly": [ + 615, + 1420, + 1076, + 1420, + 1076, + 1444, + 615, + 1444 + ], + "score": 0.311 + }, + { + "category_id": 5, + "poly": [ + 428, + 399, + 1271, + 399, + 1271, + 654, + 428, + 654 + ], + "score": 0.291, + "html": "
Noise: eps1,1,000,000 (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10772936791815
BC1381±713788±740266±4861185±155
BCQ1937±1166046±276800±659479±537
BRAC2693±1557003±1181243±1623204±103
BRAC (max Q)2907±987070±811488±3863330±147
BREMEN (Ours)3519±1297585±4252818±761710±429
ME-TRPO (offline)1514±5031009±7311301±654128±153
" + }, + { + "category_id": 5, + "poly": [ + 430, + 680, + 1268, + 680, + 1268, + 908, + 430, + 908 + ], + "score": 0.244, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset BC BCQ BRAC936 1364±121 1938±21 2718±90 2913±872408 2877±797 5739±188 6434±147662 519±532 1170±446 1224±71648 1066±176 1018±1231 2921±101
" + }, + { + "category_id": 5, + "poly": [ + 430, + 935, + 1270, + 935, + 1270, + 1160, + 430, + 1160 + ], + "score": 0.226, + "html": "
MethodAntHalfCheetahHopperWalker2d
Dataset107231508821070
BC1279±804142±18931±161137±477
BCQ1958±765854±498475±416608±416
BRAC2905±817026±1681456±1613030±103
BRAC (max Q)2910±1577026±1681575±893242±97
BREMEN (Ours)2912±1657928±3131999±6171402±290
ME-TRPO (offline)1275±6561275±656909±631171±119
" + }, + { + "category_id": 6, + "poly": [ + 642, + 401, + 1054, + 401, + 1054, + 427, + 642, + 427 + ], + "score": 0.204 + }, + { + "category_id": 5, + "poly": [ + 429, + 1167, + 1270, + 1167, + 1270, + 1418, + 429, + 1418 + ], + "score": 0.201, + "html": "
Noise:gaussian3,1,0oo,0oo (1M) transitions
MethodAntHalfCheetahHopperWalker2d
Dataset10582872781981
BC1300±344190±69611±4671217±361
BCQ1982±975781±5431137±582258±286
BRAC3084±1803933±27401432±4993253±118
BRAC (max Q)2916±993997±27611417±2673372±153
BREMEN (Ours)3432±1858124±1451867±3542299±474
ME-TRPO (offline)1237±3102141±872973±243219±145
" + }, + { + "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": [ + 830.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 651.0, + 1061.0, + 651.0, + 1061.0, + 690.0, + 636.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 908.0, + 1087.0, + 908.0, + 1087.0, + 942.0, + 610.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1685.0, + 1404.0, + 1685.0, + 1404.0, + 1715.0, + 295.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1711.0, + 1406.0, + 1711.0, + 1406.0, + 1745.0, + 291.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1404.0, + 1739.0, + 1404.0, + 1772.0, + 294.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1766.0, + 1406.0, + 1766.0, + 1406.0, + 1801.0, + 293.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1797.0, + 1404.0, + 1797.0, + 1404.0, + 1827.0, + 296.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1825.0, + 662.0, + 1825.0, + 662.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1416.0, + 1077.0, + 1416.0, + 1077.0, + 1452.0, + 619.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 398.0, + 1059.0, + 398.0, + 1059.0, + 435.0, + 638.0, + 435.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 658, + 1405, + 658, + 1405, + 966, + 297, + 966 + ], + "score": 0.983 + }, + { + "category_id": 3, + "poly": [ + 322, + 997, + 1378, + 997, + 1378, + 1612, + 322, + 1612 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 305, + 551, + 1397, + 551, + 1397, + 645, + 305, + 645 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 396, + 393, + 1299, + 393, + 1299, + 535, + 396, + 535 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 297, + 1622, + 1406, + 1622, + 1406, + 1736, + 297, + 1736 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 298, + 285, + 1404, + 285, + 1404, + 381, + 298, + 381 + ], + "score": 0.934 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 814, + 74, + 814, + 105, + 299, + 105 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2112, + 834, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 9, + "poly": [ + 1366, + 418, + 1401, + 418, + 1401, + 448, + 1366, + 448 + ], + "score": 0.844 + }, + { + "category_id": 0, + "poly": [ + 297, + 227, + 922, + 227, + 922, + 263, + 297, + 263 + ], + "score": 0.659 + }, + { + "category_id": 1, + "poly": [ + 297, + 227, + 922, + 227, + 922, + 263, + 297, + 263 + ], + "score": 0.269 + }, + { + "category_id": 14, + "poly": [ + 397, + 393, + 1300, + 393, + 1300, + 538, + 397, + 538 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\theta _ { k + 1 } = \\underset { \\theta } { \\arg \\operatorname* { m a x } } \\ \\underset { s , a \\sim \\pi _ { \\theta _ { k } } , \\hat { f } _ { \\phi _ { i } } } { \\mathrm { E } } [ \\frac { \\pi _ { \\theta } ( a | s ) } { \\pi _ { \\theta _ { k } } ( a | s ) } ( A ^ { \\pi _ { \\theta _ { k } } } ( s , a ) - \\alpha D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | ) \\hat { \\pi } _ { \\beta } ( \\cdot | s ) ) ) ] } \\\\ & { \\quad \\mathrm { s . t . } \\quad \\underset { s \\sim \\pi _ { \\theta _ { k } } } { \\mathrm { E } } [ D _ { \\mathrm { K L } } ( \\pi _ { \\theta } ( \\cdot | s ) | | \\pi _ { \\theta _ { k } } ( \\cdot | s ) ) ] \\leq \\delta , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 376, + 552, + 498, + 552, + 498, + 585, + 376, + 585 + ], + "score": 0.93, + "latex": "A ^ { \\pi _ { \\theta _ { k } } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 890, + 660, + 1180, + 660, + 1180, + 695, + 890, + 695 + ], + "score": 0.92, + "latex": "- \\alpha D _ { \\mathrm { K L } } \\big ( \\pi _ { \\boldsymbol { \\theta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big | \\big | \\hat { \\pi } _ { \\boldsymbol { \\beta } } \\big ( \\cdot | \\boldsymbol { s } \\big ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 740, + 558, + 782, + 558, + 782, + 586, + 740, + 586 + ], + "score": 0.88, + "latex": "\\pi _ { \\theta _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 531, + 585, + 548, + 585, + 548, + 611, + 531, + 611 + ], + "score": 0.8, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 848, + 1001, + 880, + 1001, + 880, + 1018, + 848, + 1018 + ], + "score": 0.36, + "latex": "\\alpha { = } 0 \\mathrm { : }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 1001, + 1070, + 1001, + 1070, + 1018, + 1022, + 1018 + ], + "score": 0.3, + "latex": "\\alpha { = } 1 e ^ { - 5 }" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1000.0, + 721.0, + 1000.0, + 721.0, + 1020.0, + 655.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 997.0, + 847.0, + 997.0, + 847.0, + 1020.0, + 777.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 997.0, + 886.0, + 997.0, + 886.0, + 1020.0, + 881.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 999.0, + 1021.0, + 999.0, + 1021.0, + 1021.0, + 942.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 999.0, + 1082.0, + 999.0, + 1082.0, + 1021.0, + 1071.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1052.0, + 501.0, + 1052.0, + 501.0, + 1074.0, + 466.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1053.0, + 791.0, + 1053.0, + 791.0, + 1072.0, + 695.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1050.0, + 1036.0, + 1050.0, + 1036.0, + 1077.0, + 971.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1052.0, + 1302.0, + 1052.0, + 1302.0, + 1074.0, + 1224.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1066.0, + 355.0, + 1066.0, + 355.0, + 1215.0, + 329.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1076.0, + 637.0, + 1076.0, + 637.0, + 1093.0, + 604.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1073.0, + 1157.0, + 1073.0, + 1157.0, + 1089.0, + 1125.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1083.0, + 897.0, + 1083.0, + 897.0, + 1100.0, + 864.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1098.0, + 377.0, + 1098.0, + 377.0, + 1114.0, + 347.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1105.0, + 637.0, + 1105.0, + 637.0, + 1121.0, + 606.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1112.0, + 1158.0, + 1112.0, + 1158.0, + 1132.0, + 1123.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1120.0, + 898.0, + 1120.0, + 898.0, + 1140.0, + 863.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1138.0, + 377.0, + 1138.0, + 377.0, + 1154.0, + 344.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1134.0, + 637.0, + 1134.0, + 637.0, + 1150.0, + 604.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1159.0, + 584.0, + 1159.0, + 584.0, + 1186.0, + 442.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1163.0, + 637.0, + 1163.0, + 637.0, + 1180.0, + 604.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1159.0, + 898.0, + 1159.0, + 898.0, + 1179.0, + 863.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1153.0, + 1157.0, + 1153.0, + 1157.0, + 1169.0, + 1126.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1176.0, + 376.0, + 1176.0, + 376.0, + 1192.0, + 344.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1174.0, + 698.0, + 1174.0, + 698.0, + 1186.0, + 678.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1195.0, + 636.0, + 1195.0, + 636.0, + 1206.0, + 626.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1196.0, + 1156.0, + 1196.0, + 1156.0, + 1207.0, + 1146.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1202.0, + 896.0, + 1202.0, + 896.0, + 1213.0, + 886.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1213.0, + 390.0, + 1213.0, + 390.0, + 1223.0, + 378.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1210.0, + 590.0, + 1210.0, + 590.0, + 1226.0, + 400.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1213.0, + 649.0, + 1213.0, + 649.0, + 1223.0, + 639.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1210.0, + 850.0, + 1210.0, + 850.0, + 1226.0, + 659.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1213.0, + 910.0, + 1213.0, + 910.0, + 1223.0, + 899.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1210.0, + 1110.0, + 1210.0, + 1110.0, + 1226.0, + 919.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1213.0, + 1169.0, + 1213.0, + 1169.0, + 1223.0, + 1159.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1210.0, + 1370.0, + 1210.0, + 1370.0, + 1226.0, + 1179.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1218.0, + 514.0, + 1218.0, + 514.0, + 1241.0, + 451.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1218.0, + 774.0, + 1218.0, + 774.0, + 1241.0, + 711.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1218.0, + 1035.0, + 1218.0, + 1035.0, + 1241.0, + 971.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1221.0, + 1296.0, + 1221.0, + 1296.0, + 1240.0, + 1232.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1239.0, + 501.0, + 1239.0, + 501.0, + 1261.0, + 466.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1239.0, + 791.0, + 1239.0, + 791.0, + 1261.0, + 695.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1237.0, + 1035.0, + 1237.0, + 1035.0, + 1264.0, + 971.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1239.0, + 1302.0, + 1239.0, + 1302.0, + 1261.0, + 1224.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1252.0, + 378.0, + 1252.0, + 378.0, + 1268.0, + 339.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1265.0, + 638.0, + 1265.0, + 638.0, + 1281.0, + 598.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1276.0, + 898.0, + 1276.0, + 898.0, + 1296.0, + 863.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1270.0, + 1156.0, + 1270.0, + 1156.0, + 1287.0, + 1120.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1288.0, + 637.0, + 1288.0, + 637.0, + 1305.0, + 598.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1293.0, + 1156.0, + 1293.0, + 1156.0, + 1309.0, + 1125.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1310.0, + 638.0, + 1310.0, + 638.0, + 1330.0, + 597.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1314.0, + 897.0, + 1314.0, + 897.0, + 1330.0, + 864.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1316.0, + 1156.0, + 1316.0, + 1156.0, + 1333.0, + 1125.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1336.0, + 637.0, + 1336.0, + 637.0, + 1353.0, + 598.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1337.0, + 1158.0, + 1337.0, + 1158.0, + 1357.0, + 1123.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1353.0, + 377.0, + 1353.0, + 377.0, + 1369.0, + 339.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1349.0, + 897.0, + 1349.0, + 897.0, + 1366.0, + 864.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1361.0, + 638.0, + 1361.0, + 638.0, + 1377.0, + 598.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1362.0, + 1157.0, + 1362.0, + 1157.0, + 1379.0, + 1125.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1388.0, + 376.0, + 1388.0, + 376.0, + 1400.0, + 366.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1387.0, + 639.0, + 1387.0, + 639.0, + 1401.0, + 625.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1388.0, + 896.0, + 1388.0, + 896.0, + 1400.0, + 886.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1388.0, + 1156.0, + 1388.0, + 1156.0, + 1400.0, + 1146.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1401.0, + 390.0, + 1401.0, + 390.0, + 1410.0, + 379.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1397.0, + 590.0, + 1397.0, + 590.0, + 1413.0, + 400.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1401.0, + 650.0, + 1401.0, + 650.0, + 1410.0, + 639.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1397.0, + 850.0, + 1397.0, + 850.0, + 1413.0, + 660.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1401.0, + 910.0, + 1401.0, + 910.0, + 1410.0, + 899.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1397.0, + 1110.0, + 1397.0, + 1110.0, + 1413.0, + 920.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1401.0, + 1169.0, + 1401.0, + 1169.0, + 1410.0, + 1159.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1397.0, + 1370.0, + 1397.0, + 1370.0, + 1413.0, + 1180.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1408.0, + 515.0, + 1408.0, + 515.0, + 1427.0, + 451.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1409.0, + 774.0, + 1409.0, + 774.0, + 1424.0, + 713.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1405.0, + 1036.0, + 1405.0, + 1036.0, + 1427.0, + 971.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1409.0, + 1294.0, + 1409.0, + 1294.0, + 1424.0, + 1233.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1427.0, + 501.0, + 1427.0, + 501.0, + 1447.0, + 467.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1435.0, + 638.0, + 1435.0, + 638.0, + 1451.0, + 614.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1426.0, + 791.0, + 1426.0, + 791.0, + 1448.0, + 695.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1424.0, + 1036.0, + 1424.0, + 1036.0, + 1451.0, + 971.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1426.0, + 1302.0, + 1426.0, + 1302.0, + 1448.0, + 1226.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1459.0, + 638.0, + 1459.0, + 638.0, + 1476.0, + 614.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1450.0, + 897.0, + 1450.0, + 897.0, + 1467.0, + 862.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1447.0, + 1156.0, + 1447.0, + 1156.0, + 1457.0, + 1146.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1454.0, + 1372.0, + 1454.0, + 1372.0, + 1526.0, + 1161.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1483.0, + 586.0, + 1483.0, + 586.0, + 1529.0, + 390.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1483.0, + 638.0, + 1483.0, + 638.0, + 1500.0, + 613.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1482.0, + 897.0, + 1482.0, + 897.0, + 1499.0, + 861.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1479.0, + 1156.0, + 1479.0, + 1156.0, + 1489.0, + 1146.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1507.0, + 638.0, + 1507.0, + 638.0, + 1523.0, + 613.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1514.0, + 896.0, + 1514.0, + 896.0, + 1530.0, + 861.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1529.0, + 377.0, + 1529.0, + 377.0, + 1580.0, + 329.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1530.0, + 637.0, + 1530.0, + 637.0, + 1548.0, + 614.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1546.0, + 897.0, + 1546.0, + 897.0, + 1562.0, + 861.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1556.0, + 636.0, + 1556.0, + 636.0, + 1570.0, + 615.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1566.0, + 376.0, + 1566.0, + 376.0, + 1581.0, + 339.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1587.0, + 390.0, + 1587.0, + 390.0, + 1597.0, + 378.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1584.0, + 590.0, + 1584.0, + 590.0, + 1600.0, + 400.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1584.0, + 850.0, + 1584.0, + 850.0, + 1600.0, + 659.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1577.0, + 911.0, + 1577.0, + 911.0, + 1600.0, + 861.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1584.0, + 1110.0, + 1584.0, + 1110.0, + 1600.0, + 919.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1575.0, + 1156.0, + 1575.0, + 1156.0, + 1584.0, + 1146.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1587.0, + 1170.0, + 1587.0, + 1170.0, + 1597.0, + 1158.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1584.0, + 1370.0, + 1584.0, + 1370.0, + 1600.0, + 1179.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1596.0, + 514.0, + 1596.0, + 514.0, + 1611.0, + 453.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1596.0, + 774.0, + 1596.0, + 774.0, + 1611.0, + 713.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1596.0, + 1033.0, + 1596.0, + 1033.0, + 1611.0, + 973.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1596.0, + 1294.0, + 1596.0, + 1294.0, + 1611.0, + 1233.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1099.0, + 1108.0, + 1099.0, + 1108.0, + 1153.0, + 934.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1123.5, + 952.0, + 1123.5, + 952.0, + 1136.0, + 940.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1100.5, + 1379.0, + 1100.5, + 1379.0, + 1158.5, + 1143.0, + 1158.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1110.5, + 587.0, + 1110.5, + 587.0, + 1160.0, + 389.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1170.5, + 817.0, + 1170.5, + 817.0, + 1181.5, + 788.0, + 1181.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1579.0, + 650.0, + 1579.0, + 650.0, + 1598.0, + 614.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1619.0, + 1406.0, + 1619.0, + 1406.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1652.0, + 1407.0, + 1652.0, + 1407.0, + 1682.0, + 296.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1706.0, + 914.0, + 1706.0, + 914.0, + 1739.0, + 295.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 872.0, + 2084.0, + 872.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 922.0, + 228.0, + 922.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 656.0, + 889.0, + 656.0, + 889.0, + 699.0, + 292.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 656.0, + 1406.0, + 656.0, + 1406.0, + 699.0, + 1181.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 725.0, + 292.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 720.0, + 1405.0, + 720.0, + 1405.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 752.0, + 1405.0, + 752.0, + 1405.0, + 788.0, + 294.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 780.0, + 1405.0, + 780.0, + 1405.0, + 817.0, + 294.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 812.0, + 1403.0, + 812.0, + 1403.0, + 848.0, + 296.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 874.0, + 1403.0, + 874.0, + 1403.0, + 906.0, + 297.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1405.0, + 902.0, + 1405.0, + 941.0, + 294.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 934.0, + 565.0, + 934.0, + 565.0, + 966.0, + 296.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 548.0, + 375.0, + 548.0, + 375.0, + 588.0, + 297.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 548.0, + 739.0, + 548.0, + 739.0, + 588.0, + 499.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 588.0, + 783.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 583.0, + 530.0, + 583.0, + 530.0, + 617.0, + 301.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 583.0, + 1402.0, + 583.0, + 1402.0, + 617.0, + 549.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 614.0, + 762.0, + 614.0, + 762.0, + 648.0, + 300.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 286.0, + 1405.0, + 286.0, + 1405.0, + 321.0, + 296.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 350.0, + 297.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 346.0, + 867.0, + 346.0, + 867.0, + 383.0, + 295.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 922.0, + 228.0, + 922.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 323, + 382, + 1380, + 382, + 1380, + 1033, + 323, + 1033 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 326, + 1183, + 1377, + 1183, + 1377, + 1431, + 326, + 1431 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 325, + 1528, + 1376, + 1528, + 1376, + 1775, + 325, + 1775 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 298, + 1043, + 1406, + 1043, + 1406, + 1129, + 298, + 1129 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 295, + 286, + 1403, + 286, + 1403, + 351, + 295, + 351 + ], + "score": 0.947 + }, + { + "category_id": 4, + "poly": [ + 300, + 1443, + 1385, + 1443, + 1385, + 1475, + 300, + 1475 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.905 + }, + { + "category_id": 4, + "poly": [ + 307, + 1786, + 1382, + 1786, + 1382, + 1817, + 307, + 1817 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 1117, + 229, + 1117, + 262, + 298, + 262 + ], + "score": 0.745 + }, + { + "category_id": 13, + "poly": [ + 1101, + 1788, + 1182, + 1788, + 1182, + 1813, + 1101, + 1813 + ], + "score": 0.87, + "latex": "\\epsilon = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1445, + 1181, + 1445, + 1181, + 1470, + 1101, + 1470 + ], + "score": 0.85, + "latex": "\\epsilon = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 875, + 1449, + 888, + 1449, + 888, + 1469, + 875, + 1469 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 875, + 1792, + 888, + 1792, + 888, + 1812, + 875, + 1812 + ], + "score": 0.56, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 768, + 1076, + 784, + 1076, + 784, + 1097, + 768, + 1097 + ], + "score": 0.42, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 390.0, + 580.0, + 390.0, + 580.0, + 410.0, + 510.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 390.0, + 767.0, + 390.0, + 767.0, + 410.0, + 641.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 389.0, + 858.0, + 389.0, + 858.0, + 411.0, + 827.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 390.0, + 956.0, + 390.0, + 956.0, + 411.0, + 915.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 388.0, + 1065.0, + 388.0, + 1065.0, + 412.0, + 1014.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 389.0, + 1230.0, + 389.0, + 1230.0, + 412.0, + 1123.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 444.0, + 514.0, + 444.0, + 514.0, + 468.0, + 480.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 444.0, + 801.0, + 444.0, + 801.0, + 468.0, + 704.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 457.0, + 906.0, + 457.0, + 906.0, + 474.0, + 873.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 443.0, + 1040.0, + 443.0, + 1040.0, + 472.0, + 978.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 444.0, + 1302.0, + 444.0, + 1302.0, + 468.0, + 1226.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 465.0, + 391.0, + 465.0, + 391.0, + 612.0, + 331.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 469.0, + 649.0, + 469.0, + 649.0, + 517.0, + 616.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 477.0, + 903.0, + 477.0, + 903.0, + 514.0, + 873.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 483.0, + 1162.0, + 483.0, + 1162.0, + 504.0, + 1127.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 511.0, + 391.0, + 511.0, + 391.0, + 530.0, + 361.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 516.0, + 903.0, + 516.0, + 903.0, + 533.0, + 873.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 517.0, + 1160.0, + 517.0, + 1160.0, + 535.0, + 1130.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 532.0, + 391.0, + 532.0, + 391.0, + 551.0, + 362.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 531.0, + 648.0, + 531.0, + 648.0, + 548.0, + 618.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 536.0, + 903.0, + 536.0, + 903.0, + 554.0, + 873.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 530.0, + 985.0, + 530.0, + 985.0, + 543.0, + 968.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 549.0, + 393.0, + 549.0, + 393.0, + 575.0, + 360.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 562.0, + 649.0, + 562.0, + 649.0, + 579.0, + 616.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 556.0, + 902.0, + 556.0, + 902.0, + 573.0, + 873.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 549.0, + 1160.0, + 549.0, + 1160.0, + 567.0, + 1130.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 577.0, + 390.0, + 577.0, + 390.0, + 590.0, + 363.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 575.0, + 903.0, + 575.0, + 903.0, + 593.0, + 878.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 586.0, + 1159.0, + 586.0, + 1159.0, + 596.0, + 1148.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 595.0, + 392.0, + 595.0, + 392.0, + 612.0, + 367.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 596.0, + 647.0, + 596.0, + 647.0, + 606.0, + 637.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 600.0, + 902.0, + 600.0, + 902.0, + 610.0, + 892.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 612.0, + 433.0, + 612.0, + 433.0, + 627.0, + 413.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 611.0, + 530.0, + 611.0, + 530.0, + 641.0, + 460.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 611.0, + 578.0, + 611.0, + 578.0, + 626.0, + 557.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 612.0, + 689.0, + 612.0, + 689.0, + 627.0, + 668.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 612.0, + 785.0, + 612.0, + 785.0, + 641.0, + 718.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 610.0, + 835.0, + 610.0, + 835.0, + 628.0, + 812.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 612.0, + 946.0, + 612.0, + 946.0, + 627.0, + 925.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 612.0, + 1042.0, + 612.0, + 1042.0, + 641.0, + 973.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 611.0, + 1091.0, + 611.0, + 1091.0, + 628.0, + 1067.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 612.0, + 1201.0, + 612.0, + 1201.0, + 627.0, + 1181.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 611.0, + 1297.0, + 611.0, + 1297.0, + 641.0, + 1228.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 612.0, + 1346.0, + 612.0, + 1346.0, + 627.0, + 1325.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 654.0, + 392.0, + 654.0, + 392.0, + 809.0, + 343.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 642.0, + 514.0, + 642.0, + 514.0, + 666.0, + 480.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 678.0, + 650.0, + 678.0, + 650.0, + 699.0, + 615.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 642.0, + 801.0, + 642.0, + 801.0, + 693.0, + 704.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 661.0, + 905.0, + 661.0, + 905.0, + 701.0, + 871.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 640.0, + 1040.0, + 640.0, + 1040.0, + 668.0, + 978.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 673.0, + 1161.0, + 673.0, + 1161.0, + 690.0, + 1129.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 639.0, + 1303.0, + 639.0, + 1303.0, + 667.0, + 1226.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 690.0, + 353.0, + 690.0, + 353.0, + 779.0, + 330.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 705.0, + 391.0, + 705.0, + 391.0, + 722.0, + 361.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 715.0, + 648.0, + 715.0, + 648.0, + 732.0, + 618.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 701.0, + 905.0, + 701.0, + 905.0, + 722.0, + 871.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 709.0, + 1160.0, + 709.0, + 1160.0, + 726.0, + 1129.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 733.0, + 390.0, + 733.0, + 390.0, + 747.0, + 368.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 736.0, + 598.0, + 736.0, + 598.0, + 751.0, + 584.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 725.0, + 903.0, + 725.0, + 903.0, + 742.0, + 873.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 762.0, + 390.0, + 762.0, + 390.0, + 772.0, + 381.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 748.0, + 649.0, + 748.0, + 649.0, + 769.0, + 615.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 747.0, + 903.0, + 747.0, + 903.0, + 764.0, + 873.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 742.0, + 1161.0, + 742.0, + 1161.0, + 763.0, + 1127.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 767.0, + 903.0, + 767.0, + 903.0, + 785.0, + 878.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 784.0, + 391.0, + 784.0, + 391.0, + 801.0, + 365.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 784.0, + 1159.0, + 784.0, + 1159.0, + 794.0, + 1149.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 794.0, + 902.0, + 794.0, + 902.0, + 803.0, + 892.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 808.0, + 434.0, + 808.0, + 434.0, + 825.0, + 410.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 808.0, + 484.0, + 808.0, + 484.0, + 825.0, + 460.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 809.0, + 530.0, + 809.0, + 530.0, + 824.0, + 509.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 808.0, + 579.0, + 808.0, + 579.0, + 825.0, + 555.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 809.0, + 689.0, + 809.0, + 689.0, + 824.0, + 668.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 809.0, + 738.0, + 809.0, + 738.0, + 824.0, + 718.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 809.0, + 785.0, + 809.0, + 785.0, + 824.0, + 766.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 809.0, + 833.0, + 809.0, + 833.0, + 824.0, + 813.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 809.0, + 946.0, + 809.0, + 946.0, + 824.0, + 925.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 809.0, + 994.0, + 809.0, + 994.0, + 824.0, + 973.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 809.0, + 1041.0, + 809.0, + 1041.0, + 824.0, + 1021.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 809.0, + 1090.0, + 809.0, + 1090.0, + 824.0, + 1070.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 809.0, + 1201.0, + 809.0, + 1201.0, + 824.0, + 1181.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 809.0, + 1249.0, + 809.0, + 1249.0, + 824.0, + 1229.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 809.0, + 1297.0, + 809.0, + 1297.0, + 824.0, + 1277.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 809.0, + 1346.0, + 809.0, + 1346.0, + 824.0, + 1325.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 817.0, + 529.0, + 817.0, + 529.0, + 837.0, + 466.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 817.0, + 784.0, + 817.0, + 784.0, + 837.0, + 721.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 817.0, + 1041.0, + 817.0, + 1041.0, + 837.0, + 978.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 817.0, + 1296.0, + 817.0, + 1296.0, + 837.0, + 1234.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 840.0, + 514.0, + 840.0, + 514.0, + 862.0, + 480.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 841.0, + 798.0, + 841.0, + 798.0, + 861.0, + 704.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 837.0, + 1040.0, + 837.0, + 1040.0, + 867.0, + 978.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 838.0, + 1302.0, + 838.0, + 1302.0, + 862.0, + 1225.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 854.0, + 391.0, + 854.0, + 391.0, + 1005.0, + 338.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 863.0, + 649.0, + 863.0, + 649.0, + 880.0, + 618.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 857.0, + 903.0, + 857.0, + 903.0, + 874.0, + 873.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 853.0, + 1161.0, + 853.0, + 1161.0, + 871.0, + 1130.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 891.0, + 344.0, + 891.0, + 344.0, + 971.0, + 320.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 889.0, + 391.0, + 889.0, + 391.0, + 906.0, + 362.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 888.0, + 504.0, + 888.0, + 504.0, + 896.0, + 479.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 900.0, + 649.0, + 900.0, + 649.0, + 917.0, + 618.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 875.0, + 905.0, + 875.0, + 905.0, + 917.0, + 871.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 873.0, + 1160.0, + 873.0, + 1160.0, + 910.0, + 1129.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 894.0, + 1350.0, + 894.0, + 1350.0, + 904.0, + 1340.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 917.0, + 903.0, + 917.0, + 903.0, + 935.0, + 870.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 913.0, + 1159.0, + 913.0, + 1159.0, + 930.0, + 1130.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 938.0, + 594.0, + 938.0, + 594.0, + 968.0, + 573.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 938.0, + 648.0, + 938.0, + 648.0, + 956.0, + 616.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 938.0, + 903.0, + 938.0, + 903.0, + 956.0, + 873.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 932.0, + 1159.0, + 932.0, + 1159.0, + 950.0, + 1130.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 958.0, + 391.0, + 958.0, + 391.0, + 976.0, + 361.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 958.0, + 903.0, + 958.0, + 903.0, + 977.0, + 878.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 952.0, + 1160.0, + 952.0, + 1160.0, + 969.0, + 1135.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 977.0, + 1159.0, + 977.0, + 1159.0, + 987.0, + 1148.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 982.0, + 592.0, + 982.0, + 592.0, + 992.0, + 584.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 982.0, + 645.0, + 982.0, + 645.0, + 988.0, + 639.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 993.0, + 392.0, + 993.0, + 392.0, + 1010.0, + 360.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1005.0, + 434.0, + 1005.0, + 434.0, + 1022.0, + 410.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1006.0, + 482.0, + 1006.0, + 482.0, + 1021.0, + 461.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1006.0, + 530.0, + 1006.0, + 530.0, + 1021.0, + 509.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1005.0, + 579.0, + 1005.0, + 579.0, + 1022.0, + 555.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1006.0, + 689.0, + 1006.0, + 689.0, + 1021.0, + 668.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1006.0, + 737.0, + 1006.0, + 737.0, + 1021.0, + 718.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1006.0, + 785.0, + 1006.0, + 785.0, + 1020.0, + 766.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1006.0, + 833.0, + 1006.0, + 833.0, + 1021.0, + 813.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 999.0, + 905.0, + 999.0, + 905.0, + 1016.0, + 876.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1005.0, + 947.0, + 1005.0, + 947.0, + 1022.0, + 923.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1006.0, + 993.0, + 1006.0, + 993.0, + 1021.0, + 973.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1006.0, + 1042.0, + 1006.0, + 1042.0, + 1021.0, + 1021.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1006.0, + 1090.0, + 1006.0, + 1090.0, + 1021.0, + 1070.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 992.0, + 1161.0, + 992.0, + 1161.0, + 1009.0, + 1129.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1006.0, + 1201.0, + 1006.0, + 1201.0, + 1021.0, + 1181.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1006.0, + 1249.0, + 1006.0, + 1249.0, + 1021.0, + 1230.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1004.0, + 1299.0, + 1004.0, + 1299.0, + 1022.0, + 1276.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1004.0, + 1347.0, + 1004.0, + 1347.0, + 1022.0, + 1324.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1015.0, + 527.0, + 1015.0, + 527.0, + 1035.0, + 466.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1015.0, + 784.0, + 1015.0, + 784.0, + 1035.0, + 721.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1015.0, + 1041.0, + 1015.0, + 1041.0, + 1035.0, + 978.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1015.0, + 1296.0, + 1015.0, + 1296.0, + 1035.0, + 1234.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 610.0, + 1300.0, + 610.0, + 1300.0, + 627.5, + 1272.0, + 627.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1192.0, + 541.0, + 1192.0, + 541.0, + 1212.0, + 469.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1192.0, + 739.0, + 1192.0, + 739.0, + 1212.0, + 605.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1191.0, + 835.0, + 1191.0, + 835.0, + 1213.0, + 804.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1192.0, + 937.0, + 1192.0, + 937.0, + 1213.0, + 896.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1192.0, + 1052.0, + 1192.0, + 1052.0, + 1213.0, + 1001.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1191.0, + 1224.0, + 1191.0, + 1224.0, + 1214.0, + 1114.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1215.0, + 375.0, + 1215.0, + 375.0, + 1313.0, + 348.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1222.0, + 527.0, + 1222.0, + 527.0, + 1244.0, + 491.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1219.0, + 811.0, + 1219.0, + 811.0, + 1246.0, + 707.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1221.0, + 1045.0, + 1221.0, + 1045.0, + 1248.0, + 978.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1223.0, + 1304.0, + 1223.0, + 1304.0, + 1244.0, + 1222.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1236.0, + 908.0, + 1236.0, + 908.0, + 1253.0, + 877.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1247.0, + 656.0, + 1247.0, + 656.0, + 1263.0, + 624.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1254.0, + 402.0, + 1254.0, + 402.0, + 1271.0, + 372.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1257.0, + 905.0, + 1257.0, + 905.0, + 1271.0, + 878.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1265.0, + 1161.0, + 1265.0, + 1161.0, + 1282.0, + 1128.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1276.0, + 402.0, + 1276.0, + 402.0, + 1293.0, + 373.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1279.0, + 655.0, + 1279.0, + 655.0, + 1296.0, + 624.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1276.0, + 908.0, + 1276.0, + 908.0, + 1293.0, + 877.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1291.0, + 403.0, + 1291.0, + 403.0, + 1424.0, + 327.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1312.0, + 656.0, + 1312.0, + 656.0, + 1329.0, + 625.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1295.0, + 907.0, + 1295.0, + 907.0, + 1349.0, + 877.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1297.0, + 1162.0, + 1297.0, + 1162.0, + 1351.0, + 1127.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1344.0, + 402.0, + 1344.0, + 402.0, + 1361.0, + 373.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1344.0, + 655.0, + 1344.0, + 655.0, + 1361.0, + 625.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1357.0, + 905.0, + 1357.0, + 905.0, + 1370.0, + 883.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1367.0, + 402.0, + 1367.0, + 402.0, + 1384.0, + 373.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1372.0, + 1157.0, + 1372.0, + 1157.0, + 1382.0, + 1146.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1381.0, + 654.0, + 1381.0, + 654.0, + 1392.0, + 643.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1392.0, + 401.0, + 1392.0, + 401.0, + 1405.0, + 379.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1399.0, + 447.0, + 1399.0, + 447.0, + 1416.0, + 422.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1400.0, + 493.0, + 1400.0, + 493.0, + 1415.0, + 473.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1400.0, + 540.0, + 1400.0, + 540.0, + 1415.0, + 519.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1399.0, + 589.0, + 1399.0, + 589.0, + 1416.0, + 565.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1400.0, + 697.0, + 1400.0, + 697.0, + 1415.0, + 676.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1399.0, + 747.0, + 1399.0, + 747.0, + 1416.0, + 723.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1399.0, + 794.0, + 1399.0, + 794.0, + 1416.0, + 770.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1398.0, + 841.0, + 1398.0, + 841.0, + 1416.0, + 817.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1399.0, + 951.0, + 1399.0, + 951.0, + 1416.0, + 927.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1399.0, + 999.0, + 1399.0, + 999.0, + 1416.0, + 975.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1400.0, + 1043.0, + 1400.0, + 1043.0, + 1415.0, + 1023.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1398.0, + 1092.0, + 1398.0, + 1092.0, + 1416.0, + 1070.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1399.0, + 1203.0, + 1399.0, + 1203.0, + 1416.0, + 1179.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1399.0, + 1251.0, + 1399.0, + 1251.0, + 1416.0, + 1227.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1399.0, + 1298.0, + 1399.0, + 1298.0, + 1416.0, + 1274.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1400.0, + 1343.0, + 1400.0, + 1343.0, + 1415.0, + 1323.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1411.0, + 541.0, + 1411.0, + 541.0, + 1430.0, + 474.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1411.0, + 793.0, + 1411.0, + 793.0, + 1430.0, + 726.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1411.0, + 1046.0, + 1411.0, + 1046.0, + 1430.0, + 977.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1410.0, + 1296.0, + 1410.0, + 1296.0, + 1430.0, + 1229.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1535.0, + 542.0, + 1535.0, + 542.0, + 1558.0, + 469.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1535.0, + 739.0, + 1535.0, + 739.0, + 1558.0, + 604.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1535.0, + 834.0, + 1535.0, + 834.0, + 1558.0, + 803.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1536.0, + 937.0, + 1536.0, + 937.0, + 1556.0, + 895.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1535.0, + 1052.0, + 1535.0, + 1052.0, + 1559.0, + 1000.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1535.0, + 1225.0, + 1535.0, + 1225.0, + 1558.0, + 1114.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1556.0, + 378.0, + 1556.0, + 378.0, + 1654.0, + 347.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1566.0, + 526.0, + 1566.0, + 526.0, + 1588.0, + 490.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1563.0, + 810.0, + 1563.0, + 810.0, + 1589.0, + 707.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1564.0, + 1045.0, + 1564.0, + 1045.0, + 1592.0, + 978.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1566.0, + 1304.0, + 1566.0, + 1304.0, + 1589.0, + 1222.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1579.0, + 403.0, + 1579.0, + 403.0, + 1596.0, + 373.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1584.0, + 656.0, + 1584.0, + 656.0, + 1601.0, + 624.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1580.0, + 908.0, + 1580.0, + 908.0, + 1597.0, + 877.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1596.0, + 404.0, + 1596.0, + 404.0, + 1617.0, + 371.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1601.0, + 907.0, + 1601.0, + 907.0, + 1618.0, + 876.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1596.0, + 1160.0, + 1596.0, + 1160.0, + 1613.0, + 1129.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1617.0, + 403.0, + 1617.0, + 403.0, + 1633.0, + 372.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1615.0, + 656.0, + 1615.0, + 656.0, + 1636.0, + 623.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1620.0, + 907.0, + 1620.0, + 907.0, + 1637.0, + 876.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1613.0, + 1161.0, + 1613.0, + 1161.0, + 1633.0, + 1126.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1634.0, + 403.0, + 1634.0, + 403.0, + 1681.0, + 322.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1652.0, + 655.0, + 1652.0, + 655.0, + 1668.0, + 625.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1641.0, + 907.0, + 1641.0, + 907.0, + 1659.0, + 877.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1633.0, + 1161.0, + 1633.0, + 1161.0, + 1671.0, + 1126.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1661.0, + 907.0, + 1661.0, + 907.0, + 1678.0, + 877.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1674.0, + 351.0, + 1674.0, + 351.0, + 1690.0, + 334.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1673.0, + 402.0, + 1673.0, + 402.0, + 1709.0, + 353.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1685.0, + 655.0, + 1685.0, + 655.0, + 1702.0, + 625.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1682.0, + 907.0, + 1682.0, + 907.0, + 1698.0, + 877.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1668.0, + 1161.0, + 1668.0, + 1161.0, + 1707.0, + 1126.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1703.0, + 402.0, + 1703.0, + 402.0, + 1767.0, + 354.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1701.0, + 907.0, + 1701.0, + 907.0, + 1719.0, + 880.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1712.0, + 1157.0, + 1712.0, + 1157.0, + 1721.0, + 1145.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1730.0, + 404.0, + 1730.0, + 404.0, + 1747.0, + 378.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1723.0, + 653.0, + 1723.0, + 653.0, + 1731.0, + 643.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1724.0, + 906.0, + 1724.0, + 906.0, + 1736.0, + 895.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1726.0, + 1161.0, + 1726.0, + 1161.0, + 1743.0, + 1129.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1742.0, + 446.0, + 1742.0, + 446.0, + 1760.0, + 424.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1742.0, + 493.0, + 1742.0, + 493.0, + 1760.0, + 472.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1742.0, + 541.0, + 1742.0, + 541.0, + 1760.0, + 518.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1742.0, + 589.0, + 1742.0, + 589.0, + 1760.0, + 565.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1742.0, + 698.0, + 1742.0, + 698.0, + 1760.0, + 675.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1742.0, + 746.0, + 1742.0, + 746.0, + 1760.0, + 723.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1742.0, + 793.0, + 1742.0, + 793.0, + 1760.0, + 769.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1742.0, + 841.0, + 1742.0, + 841.0, + 1760.0, + 817.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1742.0, + 951.0, + 1742.0, + 951.0, + 1760.0, + 927.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1742.0, + 998.0, + 1742.0, + 998.0, + 1760.0, + 975.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1742.0, + 1045.0, + 1742.0, + 1045.0, + 1760.0, + 1022.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1742.0, + 1093.0, + 1742.0, + 1093.0, + 1759.0, + 1069.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1742.0, + 1203.0, + 1742.0, + 1203.0, + 1760.0, + 1179.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1742.0, + 1250.0, + 1742.0, + 1250.0, + 1760.0, + 1227.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1742.0, + 1297.0, + 1742.0, + 1297.0, + 1760.0, + 1274.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1752.0, + 541.0, + 1752.0, + 541.0, + 1776.0, + 473.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1752.0, + 793.0, + 1752.0, + 793.0, + 1776.0, + 725.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1752.0, + 1045.0, + 1752.0, + 1045.0, + 1776.0, + 977.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1754.0, + 1298.0, + 1754.0, + 1298.0, + 1774.0, + 1229.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.25, + 1742.0, + 1345.25, + 1742.0, + 1345.25, + 1759.0, + 1318.25, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1041.0, + 1406.0, + 1041.0, + 1406.0, + 1077.0, + 293.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 767.0, + 1071.0, + 767.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1071.0, + 1407.0, + 1071.0, + 1407.0, + 1103.0, + 785.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1096.0, + 404.0, + 1096.0, + 404.0, + 1135.0, + 291.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1440.0, + 874.0, + 1440.0, + 874.0, + 1475.0, + 309.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1440.0, + 1100.0, + 1440.0, + 1100.0, + 1475.0, + 889.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1440.0, + 1389.0, + 1440.0, + 1389.0, + 1475.0, + 1182.0, + 1475.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": [ + 310.0, + 1782.0, + 874.0, + 1782.0, + 874.0, + 1821.0, + 310.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1782.0, + 1100.0, + 1782.0, + 1100.0, + 1821.0, + 889.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1782.0, + 1388.0, + 1782.0, + 1388.0, + 1821.0, + 1183.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 1117.0, + 228.0, + 1117.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 285.0, + 1405.0, + 285.0, + 1405.0, + 321.0, + 294.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 315.0, + 1322.0, + 315.0, + 1322.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 324, + 379, + 1377, + 379, + 1377, + 624, + 324, + 624 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 327, + 1594, + 1377, + 1594, + 1377, + 1839, + 327, + 1839 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 325, + 987, + 1377, + 987, + 1377, + 1232, + 325, + 1232 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 313, + 1851, + 1381, + 1851, + 1381, + 1882, + 313, + 1882 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 4, + "poly": [ + 295, + 637, + 1399, + 637, + 1399, + 669, + 295, + 669 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 4, + "poly": [ + 297, + 1245, + 1399, + 1245, + 1399, + 1277, + 297, + 1277 + ], + "score": 0.817 + }, + { + "category_id": 13, + "poly": [ + 1082, + 1243, + 1196, + 1243, + 1196, + 1276, + 1082, + 1276 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( 0 , 0 . 3 ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1082, + 635, + 1196, + 635, + 1196, + 668, + 1082, + 668 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( 0 , 0 . 1 ^ { 2 } )" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 385.0, + 541.0, + 385.0, + 541.0, + 404.0, + 469.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 385.0, + 738.0, + 385.0, + 738.0, + 404.0, + 604.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 384.0, + 834.0, + 384.0, + 834.0, + 406.0, + 802.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 384.0, + 937.0, + 384.0, + 937.0, + 406.0, + 895.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 383.0, + 1052.0, + 383.0, + 1052.0, + 407.0, + 1001.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 384.0, + 1225.0, + 384.0, + 1225.0, + 407.0, + 1115.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 406.0, + 376.0, + 406.0, + 376.0, + 500.0, + 347.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 415.0, + 526.0, + 415.0, + 526.0, + 437.0, + 489.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 414.0, + 810.0, + 414.0, + 810.0, + 437.0, + 708.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 414.0, + 1045.0, + 414.0, + 1045.0, + 441.0, + 979.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 414.0, + 1304.0, + 414.0, + 1304.0, + 437.0, + 1223.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 436.0, + 656.0, + 436.0, + 656.0, + 452.0, + 625.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 434.0, + 909.0, + 434.0, + 909.0, + 455.0, + 876.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 439.0, + 1159.0, + 439.0, + 1159.0, + 457.0, + 1129.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 450.0, + 403.0, + 450.0, + 403.0, + 467.0, + 374.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 456.0, + 908.0, + 456.0, + 908.0, + 476.0, + 875.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 454.0, + 1161.0, + 454.0, + 1161.0, + 478.0, + 1127.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 466.0, + 353.0, + 466.0, + 353.0, + 558.0, + 325.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 475.0, + 403.0, + 475.0, + 403.0, + 492.0, + 372.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 469.0, + 654.0, + 469.0, + 654.0, + 486.0, + 625.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 479.0, + 907.0, + 479.0, + 907.0, + 496.0, + 877.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 478.0, + 1159.0, + 478.0, + 1159.0, + 494.0, + 1128.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 498.0, + 403.0, + 498.0, + 403.0, + 517.0, + 354.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 504.0, + 654.0, + 504.0, + 654.0, + 517.0, + 626.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 497.0, + 908.0, + 497.0, + 908.0, + 517.0, + 875.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 497.0, + 1160.0, + 497.0, + 1160.0, + 513.0, + 1128.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 513.0, + 370.0, + 513.0, + 370.0, + 530.0, + 357.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 527.0, + 400.0, + 527.0, + 400.0, + 540.0, + 374.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 518.0, + 908.0, + 518.0, + 908.0, + 539.0, + 875.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 513.0, + 1160.0, + 513.0, + 1160.0, + 534.0, + 1127.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 536.0, + 372.0, + 536.0, + 372.0, + 557.0, + 353.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 537.0, + 654.0, + 537.0, + 654.0, + 551.0, + 626.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 540.0, + 908.0, + 540.0, + 908.0, + 557.0, + 881.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 533.0, + 1160.0, + 533.0, + 1160.0, + 553.0, + 1127.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 549.0, + 372.0, + 549.0, + 372.0, + 615.0, + 334.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 549.0, + 403.0, + 549.0, + 403.0, + 566.0, + 374.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 553.0, + 1159.0, + 553.0, + 1159.0, + 571.0, + 1133.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 563.0, + 907.0, + 563.0, + 907.0, + 577.0, + 893.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 575.0, + 404.0, + 575.0, + 404.0, + 591.0, + 378.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 576.0, + 1158.0, + 576.0, + 1158.0, + 587.0, + 1146.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 583.0, + 907.0, + 583.0, + 907.0, + 596.0, + 879.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 590.0, + 447.0, + 590.0, + 447.0, + 608.0, + 423.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 590.0, + 542.0, + 590.0, + 542.0, + 608.0, + 518.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 590.0, + 589.0, + 590.0, + 589.0, + 608.0, + 566.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 591.0, + 699.0, + 591.0, + 699.0, + 608.0, + 675.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 590.0, + 746.0, + 590.0, + 746.0, + 608.0, + 724.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 590.0, + 794.0, + 590.0, + 794.0, + 608.0, + 769.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 590.0, + 841.0, + 590.0, + 841.0, + 608.0, + 817.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 590.0, + 951.0, + 590.0, + 951.0, + 608.0, + 927.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 590.0, + 998.0, + 590.0, + 998.0, + 608.0, + 975.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 590.0, + 1045.0, + 590.0, + 1045.0, + 608.0, + 1022.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 590.0, + 1093.0, + 590.0, + 1093.0, + 608.0, + 1070.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 593.0, + 1201.0, + 593.0, + 1201.0, + 607.0, + 1181.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 590.0, + 1250.0, + 590.0, + 1250.0, + 608.0, + 1228.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 590.0, + 1297.0, + 590.0, + 1297.0, + 608.0, + 1273.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 590.0, + 1345.0, + 590.0, + 1345.0, + 608.0, + 1321.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 602.0, + 542.0, + 602.0, + 542.0, + 622.0, + 473.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 602.0, + 794.0, + 602.0, + 794.0, + 622.0, + 726.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 599.0, + 1045.0, + 599.0, + 1045.0, + 625.0, + 977.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 602.0, + 1297.0, + 602.0, + 1297.0, + 622.0, + 1229.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 590.0, + 496.0, + 590.0, + 496.0, + 607.0, + 469.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1602.0, + 542.0, + 1602.0, + 542.0, + 1621.0, + 470.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1602.0, + 738.0, + 1602.0, + 738.0, + 1621.0, + 605.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1599.0, + 834.0, + 1599.0, + 834.0, + 1622.0, + 804.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1600.0, + 937.0, + 1600.0, + 937.0, + 1622.0, + 896.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1599.0, + 1052.0, + 1599.0, + 1052.0, + 1623.0, + 1001.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1600.0, + 1225.0, + 1600.0, + 1225.0, + 1623.0, + 1114.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1621.0, + 380.0, + 1621.0, + 380.0, + 1835.0, + 345.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1631.0, + 526.0, + 1631.0, + 526.0, + 1652.0, + 490.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1629.0, + 810.0, + 1629.0, + 810.0, + 1654.0, + 707.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1633.0, + 1044.0, + 1633.0, + 1044.0, + 1653.0, + 980.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1630.0, + 1305.0, + 1630.0, + 1305.0, + 1653.0, + 1223.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1655.0, + 403.0, + 1655.0, + 403.0, + 1672.0, + 373.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1654.0, + 657.0, + 1654.0, + 657.0, + 1675.0, + 623.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1651.0, + 907.0, + 1651.0, + 907.0, + 1667.0, + 876.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1652.0, + 1161.0, + 1652.0, + 1161.0, + 1670.0, + 1134.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1675.0, + 907.0, + 1675.0, + 907.0, + 1691.0, + 876.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1670.0, + 1160.0, + 1670.0, + 1160.0, + 1688.0, + 1132.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1684.0, + 355.0, + 1684.0, + 355.0, + 1774.0, + 327.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1682.0, + 403.0, + 1682.0, + 403.0, + 1699.0, + 373.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1685.0, + 658.0, + 1685.0, + 658.0, + 1706.0, + 623.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1689.0, + 1160.0, + 1689.0, + 1160.0, + 1706.0, + 1134.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1699.0, + 907.0, + 1699.0, + 907.0, + 1715.0, + 881.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1709.0, + 403.0, + 1709.0, + 403.0, + 1726.0, + 373.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1707.0, + 1160.0, + 1707.0, + 1160.0, + 1724.0, + 1134.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1718.0, + 658.0, + 1718.0, + 658.0, + 1738.0, + 623.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1722.0, + 907.0, + 1722.0, + 907.0, + 1740.0, + 881.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1725.0, + 1160.0, + 1725.0, + 1160.0, + 1743.0, + 1134.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1736.0, + 403.0, + 1736.0, + 403.0, + 1752.0, + 373.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1750.0, + 658.0, + 1750.0, + 658.0, + 1770.0, + 623.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1746.0, + 907.0, + 1746.0, + 907.0, + 1764.0, + 881.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1743.0, + 1160.0, + 1743.0, + 1160.0, + 1761.0, + 1134.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1762.0, + 403.0, + 1762.0, + 403.0, + 1779.0, + 373.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1768.0, + 562.0, + 1768.0, + 562.0, + 1776.0, + 551.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1770.0, + 908.0, + 1770.0, + 908.0, + 1788.0, + 881.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1764.0, + 1157.0, + 1764.0, + 1157.0, + 1776.0, + 1147.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1790.0, + 402.0, + 1790.0, + 402.0, + 1806.0, + 378.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1786.0, + 653.0, + 1786.0, + 653.0, + 1797.0, + 642.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1779.0, + 1117.0, + 1779.0, + 1117.0, + 1798.0, + 1057.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1778.0, + 1161.0, + 1778.0, + 1161.0, + 1798.0, + 1126.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1799.0, + 907.0, + 1799.0, + 907.0, + 1810.0, + 895.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1797.0, + 1161.0, + 1797.0, + 1161.0, + 1814.0, + 1129.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1806.0, + 447.0, + 1806.0, + 447.0, + 1824.0, + 423.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1806.0, + 494.0, + 1806.0, + 494.0, + 1824.0, + 471.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1806.0, + 542.0, + 1806.0, + 542.0, + 1824.0, + 518.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1806.0, + 590.0, + 1806.0, + 590.0, + 1824.0, + 565.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1806.0, + 699.0, + 1806.0, + 699.0, + 1824.0, + 675.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1806.0, + 747.0, + 1806.0, + 747.0, + 1824.0, + 723.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1806.0, + 793.0, + 1806.0, + 793.0, + 1824.0, + 769.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1806.0, + 841.0, + 1806.0, + 841.0, + 1824.0, + 817.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1806.0, + 951.0, + 1806.0, + 951.0, + 1824.0, + 926.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1806.0, + 999.0, + 1806.0, + 999.0, + 1824.0, + 975.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1806.0, + 1045.0, + 1806.0, + 1045.0, + 1824.0, + 1022.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1806.0, + 1093.0, + 1806.0, + 1093.0, + 1824.0, + 1069.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1806.0, + 1203.0, + 1806.0, + 1203.0, + 1824.0, + 1179.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1806.0, + 1251.0, + 1806.0, + 1251.0, + 1824.0, + 1227.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1808.0, + 1298.0, + 1808.0, + 1298.0, + 1824.0, + 1274.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1806.0, + 1346.0, + 1806.0, + 1346.0, + 1824.0, + 1320.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1820.0, + 542.0, + 1820.0, + 542.0, + 1839.0, + 473.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1820.0, + 793.0, + 1820.0, + 793.0, + 1839.0, + 726.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1820.0, + 1046.0, + 1820.0, + 1046.0, + 1839.0, + 978.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1818.0, + 1296.0, + 1818.0, + 1296.0, + 1839.0, + 1229.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 993.0, + 539.0, + 993.0, + 539.0, + 1012.0, + 468.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 993.0, + 738.0, + 993.0, + 738.0, + 1012.0, + 605.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 992.0, + 833.0, + 992.0, + 833.0, + 1014.0, + 803.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 992.0, + 937.0, + 992.0, + 937.0, + 1014.0, + 895.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 991.0, + 1053.0, + 991.0, + 1053.0, + 1015.0, + 1000.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 992.0, + 1224.0, + 992.0, + 1224.0, + 1015.0, + 1115.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1015.0, + 377.0, + 1015.0, + 377.0, + 1109.0, + 349.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1023.0, + 526.0, + 1023.0, + 526.0, + 1045.0, + 489.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1022.0, + 810.0, + 1022.0, + 810.0, + 1045.0, + 708.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1022.0, + 1046.0, + 1022.0, + 1046.0, + 1049.0, + 978.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1022.0, + 1305.0, + 1022.0, + 1305.0, + 1046.0, + 1223.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1045.0, + 405.0, + 1045.0, + 405.0, + 1062.0, + 372.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1042.0, + 910.0, + 1042.0, + 910.0, + 1063.0, + 875.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1044.0, + 1162.0, + 1044.0, + 1162.0, + 1064.0, + 1127.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1057.0, + 655.0, + 1057.0, + 655.0, + 1074.0, + 624.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1068.0, + 352.0, + 1068.0, + 352.0, + 1087.0, + 329.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1065.0, + 403.0, + 1065.0, + 403.0, + 1082.0, + 372.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1066.0, + 909.0, + 1066.0, + 909.0, + 1083.0, + 876.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1065.0, + 1161.0, + 1065.0, + 1161.0, + 1082.0, + 1128.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1080.0, + 352.0, + 1080.0, + 352.0, + 1113.0, + 333.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1084.0, + 403.0, + 1084.0, + 403.0, + 1101.0, + 372.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1088.0, + 657.0, + 1088.0, + 657.0, + 1104.0, + 624.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1088.0, + 907.0, + 1088.0, + 907.0, + 1105.0, + 876.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1083.0, + 1162.0, + 1083.0, + 1162.0, + 1104.0, + 1127.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1105.0, + 403.0, + 1105.0, + 403.0, + 1154.0, + 330.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1111.0, + 907.0, + 1111.0, + 907.0, + 1127.0, + 876.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1105.0, + 1161.0, + 1105.0, + 1161.0, + 1121.0, + 1127.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1120.0, + 371.0, + 1120.0, + 371.0, + 1138.0, + 357.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1125.0, + 403.0, + 1125.0, + 403.0, + 1142.0, + 372.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1118.0, + 655.0, + 1118.0, + 655.0, + 1136.0, + 625.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1124.0, + 1159.0, + 1124.0, + 1159.0, + 1141.0, + 1128.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1136.0, + 371.0, + 1136.0, + 371.0, + 1150.0, + 354.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1132.0, + 907.0, + 1132.0, + 907.0, + 1149.0, + 876.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1144.0, + 403.0, + 1144.0, + 403.0, + 1214.0, + 333.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1143.0, + 461.0, + 1143.0, + 461.0, + 1157.0, + 442.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1149.0, + 655.0, + 1149.0, + 655.0, + 1166.0, + 625.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1154.0, + 907.0, + 1154.0, + 907.0, + 1171.0, + 881.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1144.0, + 1161.0, + 1144.0, + 1161.0, + 1181.0, + 1128.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1179.0, + 906.0, + 1179.0, + 906.0, + 1189.0, + 894.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1184.0, + 405.0, + 1184.0, + 405.0, + 1201.0, + 378.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1183.0, + 654.0, + 1183.0, + 654.0, + 1193.0, + 642.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1184.0, + 1161.0, + 1184.0, + 1161.0, + 1199.0, + 1145.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1201.0, + 445.0, + 1201.0, + 445.0, + 1215.0, + 425.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1201.0, + 492.0, + 1201.0, + 492.0, + 1215.0, + 473.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1201.0, + 540.0, + 1201.0, + 540.0, + 1215.0, + 520.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1199.0, + 588.0, + 1199.0, + 588.0, + 1214.0, + 565.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1201.0, + 697.0, + 1201.0, + 697.0, + 1215.0, + 677.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1199.0, + 793.0, + 1199.0, + 793.0, + 1216.0, + 769.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1198.0, + 841.0, + 1198.0, + 841.0, + 1216.0, + 817.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1201.0, + 949.0, + 1201.0, + 949.0, + 1215.0, + 929.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1199.0, + 1045.0, + 1199.0, + 1045.0, + 1216.0, + 1021.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1199.0, + 1093.0, + 1199.0, + 1093.0, + 1216.0, + 1069.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1201.0, + 1201.0, + 1201.0, + 1201.0, + 1215.0, + 1181.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1198.0, + 1251.0, + 1198.0, + 1251.0, + 1216.0, + 1228.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1198.0, + 1297.0, + 1198.0, + 1297.0, + 1216.0, + 1273.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1199.0, + 1345.0, + 1199.0, + 1345.0, + 1216.0, + 1321.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1208.0, + 372.0, + 1208.0, + 372.0, + 1222.0, + 357.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1211.0, + 541.0, + 1211.0, + 541.0, + 1230.0, + 474.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1211.0, + 793.0, + 1211.0, + 793.0, + 1230.0, + 726.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1210.0, + 1045.0, + 1210.0, + 1045.0, + 1230.0, + 978.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1210.0, + 1297.0, + 1210.0, + 1297.0, + 1230.0, + 1229.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1198.0, + 748.0, + 1198.0, + 748.0, + 1215.0, + 722.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1198.0, + 1000.0, + 1198.0, + 1000.0, + 1215.0, + 974.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1847.0, + 1385.0, + 1847.0, + 1385.0, + 1886.0, + 314.0, + 1886.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, + 632.0, + 1081.0, + 632.0, + 1081.0, + 671.0, + 294.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 632.0, + 1403.0, + 632.0, + 1403.0, + 671.0, + 1197.0, + 671.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": [ + 295.0, + 1240.0, + 1081.0, + 1240.0, + 1081.0, + 1279.0, + 295.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1240.0, + 1403.0, + 1240.0, + 1403.0, + 1279.0, + 1197.0, + 1279.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 489, + 1405, + 489, + 1405, + 584, + 298, + 584 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 286, + 1407, + 286, + 1407, + 380, + 297, + 380 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 333, + 627, + 1378, + 627, + 1378, + 1042, + 333, + 1042 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 679, + 398, + 1018, + 398, + 1018, + 475, + 679, + 475 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 814, + 74, + 814, + 106, + 299, + 106 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 300, + 1979, + 1367, + 1979, + 1367, + 2034, + 300, + 2034 + ], + "score": 0.912 + }, + { + "category_id": 4, + "poly": [ + 295, + 1056, + 1402, + 1056, + 1402, + 1089, + 295, + 1089 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 864, + 2088, + 864, + 2112, + 834, + 2112 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 291, + 228, + 1342, + 228, + 1342, + 263, + 291, + 263 + ], + "score": 0.843 + }, + { + "category_id": 14, + "poly": [ + 678, + 397, + 1019, + 397, + 1019, + 475, + 678, + 475 + ], + "score": 0.94, + "latex": "r _ { t } = \\left\\{ \\begin{array} { l l } { 0 . 1 \\dot { x } _ { t } } & { ( 0 \\leq \\dot { x } _ { t } \\leq 1 0 ) } \\\\ { 1 } & { ( \\dot { x } _ { t } > 1 0 ) , } \\end{array} \\right." + }, + { + "category_id": 15, + "poly": [ + 423.0, + 634.0, + 519.0, + 634.0, + 519.0, + 662.0, + 423.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 634.0, + 730.0, + 634.0, + 730.0, + 662.0, + 629.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 633.0, + 876.0, + 633.0, + 876.0, + 664.0, + 820.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 634.0, + 1124.0, + 634.0, + 1124.0, + 662.0, + 976.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 634.0, + 1378.0, + 634.0, + 1378.0, + 662.0, + 1249.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 662.0, + 539.0, + 662.0, + 539.0, + 695.0, + 421.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 664.0, + 680.0, + 664.0, + 680.0, + 695.0, + 627.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 662.0, + 889.0, + 662.0, + 889.0, + 692.0, + 821.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 661.0, + 1160.0, + 661.0, + 1160.0, + 696.0, + 975.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 711.0, + 1235.0, + 711.0, + 1235.0, + 739.0, + 1100.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 712.0, + 716.0, + 712.0, + 716.0, + 739.0, + 581.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 721.0, + 405.0, + 721.0, + 405.0, + 1008.0, + 370.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 721.0, + 925.0, + 721.0, + 925.0, + 1007.0, + 890.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 750.0, + 374.0, + 750.0, + 374.0, + 983.0, + 335.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 750.0, + 448.0, + 750.0, + 448.0, + 775.0, + 402.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 752.0, + 965.0, + 752.0, + 965.0, + 773.0, + 921.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 753.0, + 891.0, + 753.0, + 891.0, + 981.0, + 857.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 796.0, + 964.0, + 796.0, + 964.0, + 820.0, + 929.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 797.0, + 446.0, + 797.0, + 446.0, + 820.0, + 412.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 843.0, + 448.0, + 843.0, + 448.0, + 865.0, + 412.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 843.0, + 965.0, + 843.0, + 965.0, + 865.0, + 929.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 889.0, + 448.0, + 889.0, + 448.0, + 911.0, + 411.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 853.0, + 834.0, + 853.0, + 834.0, + 913.0, + 524.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 889.0, + 965.0, + 889.0, + 965.0, + 911.0, + 929.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 935.0, + 448.0, + 935.0, + 448.0, + 957.0, + 412.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 901.0, + 832.0, + 901.0, + 832.0, + 968.0, + 483.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 936.0, + 965.0, + 936.0, + 965.0, + 957.0, + 929.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 986.0, + 443.0, + 986.0, + 443.0, + 998.0, + 433.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 984.0, + 964.0, + 984.0, + 964.0, + 999.0, + 950.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 999.0, + 547.0, + 999.0, + 547.0, + 1014.0, + 532.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 994.0, + 622.0, + 994.0, + 622.0, + 1016.0, + 604.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 998.0, + 692.0, + 998.0, + 692.0, + 1014.0, + 678.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 999.0, + 764.0, + 999.0, + 764.0, + 1015.0, + 751.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 999.0, + 836.0, + 999.0, + 836.0, + 1015.0, + 823.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1002.0, + 990.0, + 1002.0, + 990.0, + 1012.0, + 982.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 999.0, + 1064.0, + 999.0, + 1064.0, + 1015.0, + 1050.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 998.0, + 1211.0, + 998.0, + 1211.0, + 1015.0, + 1195.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1000.0, + 1280.0, + 1000.0, + 1280.0, + 1013.0, + 1271.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 999.0, + 1355.0, + 999.0, + 1355.0, + 1015.0, + 1341.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1010.0, + 724.0, + 1010.0, + 724.0, + 1046.0, + 575.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1012.0, + 1241.0, + 1012.0, + 1241.0, + 1044.0, + 1094.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.75, + 845.5, + 1338.75, + 845.5, + 1338.75, + 896.5, + 1057.75, + 896.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.75, + 903.5, + 1347.75, + 903.5, + 1347.75, + 939.5, + 1164.75, + 939.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 994.5, + 1142.0, + 994.5, + 1142.0, + 1016.0, + 1119.0, + 1016.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": [ + 328.0, + 1971.0, + 1364.0, + 1971.0, + 1364.0, + 2010.0, + 328.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1999.0, + 455.0, + 1999.0, + 455.0, + 2040.0, + 296.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 1404.0, + 1053.0, + 1404.0, + 1092.0, + 295.0, + 1092.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, + 230.0, + 1340.0, + 230.0, + 1340.0, + 262.0, + 296.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 485.0, + 1405.0, + 485.0, + 1405.0, + 528.0, + 292.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 521.0, + 1405.0, + 521.0, + 1405.0, + 555.0, + 295.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 551.0, + 1217.0, + 551.0, + 1217.0, + 584.0, + 296.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 286.0, + 1408.0, + 286.0, + 1408.0, + 321.0, + 294.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 317.0, + 1405.0, + 317.0, + 1405.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 1311.0, + 348.0, + 1311.0, + 382.0, + 295.0, + 382.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/ByC7ww9le/ByC7ww9le.md b/parse/train/ByC7ww9le/ByC7ww9le.md new file mode 100644 index 0000000000000000000000000000000000000000..591bfe4ea5616298bee8fcde3d2f647e56da0ca0 --- /dev/null +++ b/parse/train/ByC7ww9le/ByC7ww9le.md @@ -0,0 +1,342 @@ +# GAUSSIAN ATTENTION MODEL AND ITS APPLICATION TO KNOWLEDGE BASE EMBEDDING AND QUESTION ANSWERING + +Liwen Zhang Department of Computer Science University of Chicago Chicago, IL 60637, USA liwenz@cs.uchicago.edu + +John Winn & Ryota Tomioka Microsoft Research Cambridge Cambridge, CB1 2FB, UK {jwinn, ryoto}@microsoft.com + +# ABSTRACT + +We propose the Gaussian attention model for content-based neural memory access. With the proposed attention model, a neural network has the additional degree of freedom to control the focus of its attention from a laser sharp attention to a broad attention. It is applicable whenever we can assume that the distance in the latent space reflects some notion of semantics. We use the proposed attention model as a scoring function for the embedding of a knowledge base into a continuous vector space and then train a model that performs question answering about the entities in the knowledge base. The proposed attention model can handle both the propagation of uncertainty when following a series of relations and also the conjunction of conditions in a natural way. On a dataset of soccer players who participated in the FIFA World Cup 2014, we demonstrate that our model can handle both path queries and conjunctive queries well. + +# 1 INTRODUCTION + +There is a growing interest in incorporating external memory into neural networks. For example, memory networks (Weston et al., 2014; Sukhbaatar et al., 2015) are equipped with static memory slots that are content or location addressable. Neural Turing machines (Graves et al., 2014) implement memory slots that can be read and written as in Turing machines (Turing, 1938) but through differentiable attention mechanism. + +Each memory slot in these models stores a vector corresponding to a continuous representation of the memory content. In order to recall a piece of information stored in memory, attention is typically employed. Attention mechanism introduced by Bahdanau et al. (2014) uses a network that outputs a discrete probability mass over memory items. A memory read can be implemented as a weighted sum of the memory vectors in which the weights are given by the attention network. Reading out a single item can be realized as a special case in which the output of the attention network is peaked at the desired item. The attention network may depend on the current context as well as the memory item itself. The attention model is called location-based and content-based, if it depends on the location in the memory and the stored memory vector, respectively. + +Knowledge bases, such as WordNet and Freebase, can also be stored in memory either through an explicit knowledge base embedding (Bordes et al., 2011; Nickel et al., 2011; Socher et al., 2013) or through a feedforward network (Bordes et al., 2015). + +When we embed entities from a knowledge base in a continuous vector space, if the capacity of the embedding model is appropriately controlled, we expect semantically similar entities to be close to each other, which will allow the model to generalize to unseen facts. However the notion of proximity may strongly depend on the type of a relation. For example, Benjamin Franklin was an engineer but also a politician. We would need different metrics to capture his proximity to other engineers and politicians of his time. + +![](images/cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg) +Figure 1: Comparison of the conventional content-based attention model using inner product and the proposed Gaussian attention model with the same mean but two different covariances. + +In this paper, we propose a new attention model for content-based addressing. Our model scores each item ${ \pmb { v } } _ { \mathrm { i t e m } }$ in the memory by the (logarithm of) multivariate Gaussian likelihood as follows: + +$$ +\begin{array} { r l } & { \mathrm { s c o r e } ( \pmb { v } _ { \mathrm { i t e m } } ) = \log \phi ( \pmb { v } _ { \mathrm { i t e m } } | \pmb { \mu } _ { \mathrm { c o n t e x t } } , \pmb { \Sigma } _ { \mathrm { c o n t e x t } } ) } \\ & { \qquad = - \frac { 1 } { 2 } ( \pmb { v } _ { \mathrm { i t e m } } - \pmb { \mu } _ { \mathrm { c o n t e x t } } ) \pmb { \Sigma } _ { \mathrm { c o n t e x t } } ^ { - 1 } ( \pmb { v } _ { \mathrm { i t e m } } - \pmb { \mu } _ { \mathrm { c o n t e x t } } ) + \mathrm { c o n s t . } } \end{array} +$$ + +where context denotes all the variables that the attention depends on. For example, “American engineers in the $1 8 \mathrm { t h }$ century” or “American politicians in the 18th century” would be two contexts that include Benjamin Franklin but the two attentions would have very different shapes. + +Compared to the (normalized) inner product used in previous work (Sukhbaatar et al., 2015; Graves et al., 2014) for content-based addressing, the Gaussian model has the additional control of the spread of the attention over items in the memory. As we show in Figure 1, we can view the conventional inner-product-based attention and the proposed Gaussian attention as addressing by an affine energy function and a quadratic energy function, respectively. By making the addressing mechanism more complex, we may represent many entities in a relatively low dimensional embedding space. Since knowledge bases are typically extremely sparse, it is more likely that we can afford to have a more complex attention model than a large embedding dimension. + +We apply the proposed Gaussian attention model to question answering based on knowledge bases. At the high-level, the goal of the task is to learn the mapping from a question about objects in the knowledge base in natural language to a probability distribution over the entities. We use the scoring function (1) for both embedding the entities as vectors, and extracting the conditions mentioned in the question and taking a conjunction of them to score each candidate answer to the question. + +The ability to compactly represent a set of objects makes the Gaussian attention model well suited for representing the uncertainty in a multiple-answer question (e.g., “who are the children of Abraham Lincoln?”). Moreover, traversal over the knowledge graph (see Guu et al., 2015) can be naturally handled by a series of Gaussian convolutions, which generalizes the addition of vectors. In fact, we model each relation as a Gaussian with mean and variance parameters. Thus a traversal on a relation corresponds to a translation in the mean and addition of the variances. + +The proposed question answering model is able to handle not only the case where the answer to a question is associated with an atomic fact, which is called simple Q&A (Bordes et al., 2015), but also questions that require composition of relations (path queries in Guu et al. (2015)) and conjunction of queries. An example flow of how our model deals with a question “Who plays forward for Borussia Dortmund?” is shown in Figure 2 in Section 3. + +This paper is structured as follows. In Section 2, we describe how the Gaussian scoring function (1) can be used to embed the entities in a knowledge base into a continuous vector space. We call our model TransGaussian because of its similarity to the TransE model proposed by Bordes et al. (2013). Then in Section 3, we describe our question answering model. In Section 4, we carry out experiments on WorldCup2014 dataset we collected. The dataset is relatively small but it allows us to evaluate not only simple questions but also path queries and conjunction of queries. The proposed TransGaussian embedding with the question answering model achieves significantly higher accuracy than the vanilla TransE embedding or TransE trained with compositional relations Guu et al. (2015) combined with the same question answering model. + +# 2 KNOWLEDGE BASE EMBEDDING + +In this section, we describe the proposed TransGaussian model based on the Gaussian attention model (1). While it is possible to train a network that computes the embedding in a single pass (Bordes et al., 2015) or over multiple passes (Li et al., 2015), it is more efficient to offload the embedding as a separate step for question answering based on a large static knowledge base. + +# 2.1 THE TRANSGAUSSIAN MODEL + +Let $\mathcal { E }$ be the set of entities and $\mathcal { R }$ be the set of relations. A knowledge base is a collection of triplets $( s , r , o )$ , where we call $\textit { s } \in \textit { \varepsilon }$ , $r \in \mathcal { R }$ , and $\textit { o } \in \textit { \mathcal { E } }$ , the subject, the relation, and the object of the triplet, respectively. Each triplet encodes a fact. For example, (Albert Einstein, has profession, theoretical physicist). All the triplets given in a knowledge base are assumed to be true. However generally speaking a triplet may be true or false. Thus knowledge base embedding aims at training a model that predict if a triplet is true or not given some parameterization of the entities and relations (Bordes et al., 2011; 2013; Nickel et al., 2011; Socher et al., 2013; Wang et al., 2014). + +paper, we associate awith two parameters, $\pmb { v } _ { s } \in \mathbb { R } ^ { d }$ with each entity ositive definite s $s \in { \mathcal { E } }$ , and we atric matrix h relation. $r \in \mathcal { R }$ $\pmb { \delta } _ { r } \in \mathbb { R } ^ { d }$ $\pmb { \Sigma } _ { r } \in \mathbb { R } _ { + + } ^ { d \times d }$ + +Given subject $s$ and relation $r$ , we can compute the score of an object $o$ to be in triplet $( s , r , o )$ using the Gaussian attention model as (1) with + +$$ +\begin{array} { r } { \mathrm { s c o r e } ( s , r , o ) = \log \phi ( \pmb { v } _ { o } | \pmb { \mu } _ { \mathrm { c o n t e x t } } , \pmb { \Sigma } _ { \mathrm { c o n t e x t } } ) , } \end{array} +$$ + +where $\pmb { \mu } _ { \mathrm { c o n t e x t } } = \pmb { v } _ { s } + \pmb { \delta } _ { r }$ , $\pmb { \Sigma } _ { \mathrm { c o n t e x t } } = \pmb { \Sigma } _ { r }$ . Note that if $\Sigma _ { r }$ is fixed to the identity matrix, we are modeling the relation of subject ${ \pmb v } _ { s }$ and object ${ \pmb v } _ { o }$ as a translation $\delta _ { r }$ , which is equivalent to the TransE model (Bordes et al., 2013). We allow the covariance $\Sigma _ { r }$ to depend on the relation to handle one-to-many relations (e.g., profession has person relation) and capture the shape of the distribution of the set of objects that can be in the triplet. We call our model TransGaussian because of its similarity to TransE (Bordes et al., 2013). + +Parameterization For computational efficiency, we will restrict the covariance matrix $\Sigma _ { r }$ to be diagonal in this paper. Furthermore, in order to ensure that $\Sigma _ { r }$ is strictly positive definite, we employ the exponential linear unit (ELU, Clevert et al., 2015) and parameterize $\Sigma _ { r }$ as follows: + +$$ +\Sigma _ { r } = \mathrm { d i a g } \left( \begin{array} { c } { { \mathrm { E L U } ( m _ { r , 1 } ) + 1 + \epsilon } } \\ { { } } \\ { { \cdot _ { \cdot _ { \cdot _ { \cdot _ { \cdot _ { \cdot _ { \cdot _ { \cdot _ { \cdot } \cdot _ { \cdot _ { \cdot _ { \cdot } \cdot _ { \cdot _ { \cdot } \cdot _ { \cdot _ { \cdot } \cdot _ { \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot _ { \cdot } \cdot } } } } } } } } } } } } } } } \end{array} \right) +$$ + +where $m _ { r , j } ~ ( j = 1 , \ldots , d )$ are the unconstrained parameters that are optimized during training and $\epsilon$ is a small positive value that ensure the positivity of the variance during numerical computation. The ELU is defined as + +$$ +{ \mathrm { E L U } } ( x ) = { \left\{ \begin{array} { l l } { x , } & { x \geq 0 , } \\ { \exp { ( x ) } - 1 , } & { x < 0 . } \end{array} \right. } +$$ + +Ranking loss Suppose we have a set of triplets $\mathcal { T } = \{ ( s _ { i } , r _ { i } , o _ { i } ) \} _ { i = 1 } ^ { N }$ from the knowledge base. +Let $\mathcal { N } ( s , r )$ be the set of incorrect objects to be in the triplet $( s , r , \cdot )$ . + +Our objective function uses the ranking loss to measure the margin between the scores of true answers and those of false answers and it can be written as follows: + +$$ +\begin{array} { r } { \displaystyle \underset { \{ \delta _ { r } , M _ { r } , : r \in \bar { \mathcal { R } } \} } { \operatorname* { m i n } } \frac { 1 } { N } \sum _ { ( s , r , o ) \in \mathcal { T } } \mathbb { E } _ { t ^ { \prime } \sim \mathcal { N } ( s , r ) } \left[ [ \mu - \mathrm { s c o r e } ( s , r , o ) + \mathrm { s c o r e } ( s , r , t ^ { \prime } ) ] _ { + } \right] } \\ { + \lambda \left( \displaystyle \sum _ { e \in \mathcal { E } } \| v _ { e } \| _ { 2 } ^ { 2 } + \displaystyle \sum _ { r \in \bar { \mathcal { R } } } \big ( \| \delta _ { r } \| _ { 2 } ^ { 2 } + \| M _ { r } \| _ { F } ^ { 2 } \big ) \right) , } \end{array} +$$ + +where, $N = | \mathcal { T } |$ , $\mu$ is the margin parameter and $M _ { r }$ denotes the diagonal matrix with $m _ { r , j } , j =$ $1 , \ldots , d$ on the diagonal; the function $[ \cdot ] _ { + }$ is defined as $[ x ] _ { + } = \operatorname* { m a x } ( 0 , x )$ . Here, we treat an inverse relation as a separate relation and denote by $\bar { \mathcal { R } } = \mathcal { R } \cup \mathcal { R } ^ { - 1 }$ the set of all the relations including both relations in $\mathcal { R }$ and their inverse relations; a relation $\tilde { r }$ is the inverse relation of $r$ if $( s , \tilde { r } , o )$ implies $( o , r , s )$ and vice versa. Moreover, $\mathbb { E } _ { t ^ { \prime } \sim \mathcal { N } ( s , r ) }$ denotes the expectation with respect to the uniform distribution over the set of incorrect objects, which we approximate with 10 random samples in the experiments. Finally, the last terms are $\ell _ { 2 }$ regularization terms for the embedding parameters. + +# 2.2 COMPOSITIONAL RELATIONS + +Guu et al. (2015) has recently shown that training TransE with compositional relations can make it competitive to more complex models, although TransE is much simpler compared to for example, neural tensor networks (NTN, Socher et al. (2013)) and TransH Wang et al. (2014). Here, a compositional relation is a relation that is composed as a series of relations in $\mathcal { R }$ , for example, grand father of can be composed as first applying the parent of relation and then the father of relation, which can be seen as a traversal over a path on the knowledge graph. + +TransGaussian model can naturally handle and propagate the uncertainty over such a chain of relations by convolving the Gaussian distributions along the path. That is, the score of an entity $o$ to be in the $\tau$ -step relation $r _ { 1 } / r _ { 2 } / \cdots / r _ { \tau }$ with subject $s$ , which we denote by the triplet $( \dot { s , } r _ { 1 } / r _ { 2 } / \cdot \cdot \cdot / r _ { \tau } , o )$ , is given as + +$$ +\begin{array} { r } { \mathrm { s c o r e } ( s , r _ { 1 } / r _ { 2 } / \cdot \cdot \cdot / r _ { \tau } , o ) = \log \phi ( \pmb { v } _ { o } | \pmb { \mu } _ { \mathrm { c o n t e x t } } , \pmb { \Sigma } _ { \mathrm { c o n t e x t } } ) , } \end{array} +$$ + +with $\begin{array} { r } { \pmb { \mu } _ { \mathrm { c o n t e x t } } = \pmb { v } _ { s } + \sum _ { t = 1 } ^ { \tau } \delta _ { r _ { t } } } \end{array}$ , $\begin{array} { r } { \sum _ { \mathrm { c o n t e x t } } = \sum _ { t = 1 } ^ { \tau } \sum _ { r _ { t } } } \end{array}$ , where the covariance associated with each relation is parameterized in the same way as in the previous subsection. + +Training with compositional relations Let P = nsi, ri1 /ri2 / · · · /rili , oioN i=1 be a set of randomly sampled paths from the knowledge graph. Here relation $r _ { i _ { k } }$ in a path can be a relation in $\mathcal { R }$ or an inverse relation in $\mathcal { R } ^ { - 1 }$ . With the scoring function (4), the generalized training objective for compositional relations can be written identically to (3) except for replacing $\tau$ with $\mathcal { T } \cup \mathcal { P }$ and replacing $N$ with $N ^ { \prime } = | \mathcal { T } \cup \mathcal { P } |$ . + +# 3 QUESTION ANSWERING + +Given a set of question-answer pairs, in which the question is phrased in natural language and the answer is an entity in the knowledge base, our goal is to train a model that learns the mapping from the question to the correct entity. Our question answering model consists of three steps, entity recognition, relation composition, and conjunction. We first identify a list of entities mentioned in the question (which is assumed to be provided by an oracle in this paper). If the question is “Who plays Forward for Borussia Dortmund?” then the list would be [Forward, Borussia Dortmund]. The next step is to predict the path of relations on the knowledgegraph starting from each entity in the list extracted in the first step. In the above example, this will be (smooth versions of) /Forward/position played by/ and /Borussia Dortmund/has player/ predicted as series of Gaussian convolutions. In general, we can have multiple relations appearing in each path. Finally, we take a product of all the Gaussian attentions and renormalize it, which is equivalent to Bayes’ rule with independent observations (paths) and a noninformative prior. + +# 3.1 ENTITY RECOGNITION + +We assume that there is an oracle that provides a list containing all the entities mentioned in the question, because (1) a domain specific entity recognizer can be developed efficiently (Williams et al., 2015) and (2) generally entity recognition is a challenging task and it is beyond the scope of this paper to show whether there is any benefit in training our question answering model jointly with a entity recognizer. We assume that the number of extracted entities can be different for each question. + +# 3.2 RELATION COMPOSITION + +We train a long short-term memory (LSTM, Hochreiter & Schmidhuber, 1997) network that emits an output $\boldsymbol { h } _ { t }$ for each token in the input sequence. Then we compute the attention over the hidden + +![](images/c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg) +Figure 2: The input to the system is a question in natural language. Two entities Forward and Borussia Dortmund are identified in the question and associated with point mass distributions centered at the corresponding entity vectors. An LSTM encodes the input into a sequence of output vectors of the same length. Then we take average of the output vectors weighted by attention $\mathit { p } _ { t , e }$ for each recognized entity $e$ to predict the weight $\alpha _ { r , e }$ for relation $r$ associated with entity $e$ . We form a Gaussian attention over the entities for each entity $e$ by convolving the corresponding point mass with the (pre-trained) Gaussian embeddings of the relations weighted by $\alpha _ { r , e }$ according to Eq. (6). The final prediction is produced by taking the product and normalizing the Gaussian attentions. + +states for each recognized entity $e$ as + +$$ +p _ { t , e } = \mathrm { s o f t m a x } \left( f ( v _ { e } , h _ { t } ) \right) \quad ( t = 1 , . . . , T ) , +$$ + +where ${ \pmb v } _ { e }$ is the vector associated with the entity $e$ . We use a two-layer perceptron for $f$ in our experiments, which can be written as follows: + +$$ +f ( \pmb { v } _ { e } , \pmb { h } _ { t } ) = \pmb { u } _ { f } ^ { \top } \mathrm { R e L U } \left( \pmb { W } _ { f , v } \pmb { v } _ { e } + \pmb { W } _ { f , h } \pmb { h } _ { t } + \pmb { b } _ { 1 } \right) + b _ { 2 } , +$$ + +where $\mathbf { \widetilde { \Gamma } } _ { f , v } \in \mathbb { R } ^ { L \times d } , W _ { f , h } \in \mathbb { R } ^ { L \times H } , b _ { 1 } \in \mathbb { R } ^ { L } , { \mathbf { u } } _ { f } \in \mathbb { R } ^ { L } , b _ { 2 } \in \mathbb { R } \mathrm { a r e } \mathrm { p a r }$ ameters. Here ${ \mathrm { R e L U } } ( x ) =$ $\operatorname* { m a x } ( 0 , x )$ is the rectified linear unit. Finally, softmax denotes softmax over the $T$ tokens. + +Next, we use the weights $\mathit { p } _ { t , e }$ to compute the weighted sum over the hidden states $\boldsymbol { h } _ { t }$ as + +$$ +o _ { e } = \sum _ { t = 1 } ^ { T } p _ { t , e } h _ { t } . +$$ + +Then we compute the weights $\alpha _ { r , e }$ over all the relations as $\alpha _ { r , e } = \mathrm { R e L U } \left( \pmb { w } _ { r } ^ { \top } \pmb { o } _ { e } \right) \quad \left( \forall r \in \mathcal { R } \cup \right.$ $\mathcal { R } ^ { - 1 }$ ). Here the rectified linear unit is used to ensure the positivity of the weights. Note however that the weights should not be normalized, because we may want to use the same relation more than once in the same path. Making the weights positive also has the effect of making the attention sparse and interpretable because there is no cancellation. + +For each extracted entity $e$ , we view the extracted entity and the answer of the question to be the subject and the object in some triplet $( e , p , o )$ , respectively, where the path $p$ is inferred from the question as the weights $\alpha _ { r , e }$ as we described above. Accordingly, the score for each candidate answer $o$ can be expressed using (1) as: + +$$ +\mathrm { s c o r e } _ { e } ( \pmb { v } _ { o } ) = \log \phi ( \pmb { v } _ { o } | \pmb { \mu } _ { e , \alpha , \mathrm { K B } } , \pmb { \Sigma } _ { e , \alpha , \mathrm { K B } } ) +$$ + +with $\begin{array} { r } { \pmb { \mu } _ { e , \alpha , \mathrm { K B } } = \pmb { v } _ { e } + \sum _ { r \in \bar { \mathcal { R } } } \alpha _ { r , e } \delta _ { r } , \sum _ { e , \alpha , \mathrm { K B } } = \sum _ { r \in \bar { \mathcal { R } } } \alpha _ { r , e } ^ { 2 } \pmb { \Sigma } _ { r } } \end{array}$ , where ${ \pmb v } _ { e }$ is the vector associated with entity $e$ and $\bar { \mathcal { R } } = \mathcal { R } \cup \mathcal { R } ^ { - 1 }$ denotes the set of relations including the inverse relations. + +# 3.3 CONJUNCTION + +Let $\mathcal { E } ( q )$ be the set of entities recognized in the question $q$ . The final step of our model is to take the conjunction of the Gaussian attentions derived in the previous step. This step is simply carried out by multiplying the Gaussian attentions as follows: + +$$ +\begin{array} { r l } & { \mathrm { s c o r e } ( \pmb { v } _ { o } | \mathcal { E } ( q ) , \Theta ) = \underset { e \in \mathcal { E } ( q ) } { \log \prod } \phi ( \pmb { v } _ { o } | \pmb { \mu } _ { e , \alpha , \mathrm { K B } } , \pmb { \Sigma } _ { e , \alpha , \mathrm { K B } } ) } \\ & { \qquad = - \cfrac { 1 } { 2 } \displaystyle \sum _ { e \in \mathcal { E } ( q ) } \left( \pmb { v } _ { o } - \pmb { \mu } _ { e , \alpha , \mathrm { K B } } \right) ^ { \top } \pmb { \Sigma } _ { e , \alpha , \mathrm { K B } } ^ { - 1 } ( \pmb { v } _ { o } - \pmb { \mu } _ { e , \alpha , \mathrm { K B } } ) + \mathrm { c o n s t . } , } \end{array} +$$ + +which is again a (logarithm of) Gaussian scoring function, where $\mu _ { e , \alpha , \mathrm { K B } }$ and $\Sigma _ { e , \alpha , \mathrm { K B } }$ are the mean and the covariance of the Gaussian attention given in (6). Here $\Theta$ denotes all the parameters of the question-answering model. + +# 3.4 TRAINING THE QUESTION ANSWERING MODEL + +Suppose we have a knowledge base $( \mathcal { E } , \mathcal { R } , \mathcal { T } )$ and a trained TransGaussian model $\big ( \{ v _ { e } \} _ { e \in \mathcal { E } } , \{ ( \delta _ { r } , \Sigma _ { r } ) \} _ { r \in \bar { \mathcal { R } } } \big )$ , where $\bar { \mathcal { R } }$ is the set of all relations including the inverse relations. During training time, we assume the training set is a supervised question-answer pairs $\{ ( q _ { i } , \mathcal { E } ( q _ { i } ) , a _ { i } \bar { ) } : i = 1 , 2 , . . . , m \}$ . Here, $q _ { i }$ is a question formulated in natural language, $\bar { \mathcal { E } } ( q _ { i } ) \subset \mathcal { E }$ is a set of knowledge base entities that appears in the question, and $a _ { i } ~ \in { \mathcal { E } }$ is the answer to the question. For example, on a knowledge base of soccer players, a valid training sample could be + +(“Who plays forward for Borussia Dortmund?”,[Forward, Borussia Dortmund], Marco Reus). + +Note that the answer to a question is not necessarily unique and we allow $a _ { i }$ to be any of the true answers in the knowledge base. During test time, our model is shown $\left( q _ { i } , \mathcal { E } ( q _ { i } ) \right)$ and the task is to find $a _ { i }$ . We denote the set of answers to $q _ { i }$ by $A ( q _ { i } )$ . + +To train our question-answering model, we minimize the objective function + +$$ +\frac { 1 } { n } \sum _ { i = 1 } ^ { m } \biggl ( \underset { t ^ { \prime } \sim \mathcal { N } ( q _ { i } ) } { \mathbb { E } } \left[ [ \mu - \mathrm { s c o r e } ( v _ { a _ { i } } | \mathcal { E } ( q _ { i } ) , \Theta ) + \mathrm { s c o r e } ( v _ { t ^ { \prime } } | \mathcal { E } ( q _ { i } ) , \Theta ) ] _ { + } \right] + \nu \sum _ { e \in \mathcal { E } ( q _ { i } ) } \sum _ { r \in \mathcal { R } } | \alpha _ { r , e } | \biggr ) + \lambda \| \Theta \| _ { 2 } ^ { 2 } +$$ + +where $\mathbb { E } _ { t ^ { \prime } \sim \mathcal { N } ( q _ { i } ) }$ is expectation with respect to a uniform distribution over of all incorrect answers to $q _ { i }$ , which we approximate with 10 random samples. We assume that the number of relations implied in a question is small compared to the total number of relations in the knowledge base. Hence the coefficients $\alpha _ { r , e }$ computed for each question $q _ { i }$ are regularized by their $\ell _ { 1 }$ norms. + +# 4 EXPERIMENTS + +As a demonstration of the proposed framework, we perform question and answering on a dataset of soccer players. In this work, we consider two types of questions. A path query is a question that contains only one named entity from the knowledge base and its answer can be found from the knowledge graph by walking down a path consisting of a few relations. A conjunctive query is a question that contains more than one entities and the answer is given as the conjunction of all path queries starting from each entity. Furthermore, we experimented on a knowledge base completion task with TransGaussian embeddings to test its capability of generalization to unseen fact. Since knowledge base completion is not the main focus of this work, we include the results in the Appendix. + +# 4.1 WORLDCUP2014 DATASET + +We build a knowledge base of football players that participated in FIFA World Cup 2014 1. The original dataset consists of players’ information such as nationality, positions on the field and ages etc. We picked a few attributes and constructed 1127 entities and 6 atomic relations. The entities include 736 players, 297 professional soccer clubs, 51 countries, 39 numbers and 4 positions. And the six atomic relations are plays in club: PLAYER $ \mathrm { C L U B }$ , is aged: PLAYER NUMBER, plays for country: PLAYER COUNTRY, plays position: PLAYER POSITION, wears number 2: PLAYER NUMBER, is in country: CLUB COUNTRY, + +where PLAYER, CLUB, NUMBER, etc, denote the type of entities that can appear as the left or right argument for each relation. Some relations share the same type as the right argument, e.g., plays for country and is in country. + +Given the entities and relations, we transformed the dataset into a set of 3977 triplets. A list of sample triplets can be found in the Appendix. Based on these triplets, we created two sets of question answering tasks which we call path query and conjunctive query respectively. The answer of every question is always an entity in the knowledge base and a question can involve one or two triplets. The questions are generated as follows. + +Path queries. Among the paths on the knowledge graph, there are some natural composition of relations, e.g., plays in country (PLAYER COUNTRY) can be decomposed as the composition of plays in club (PLAYE $\mathbf { R } \to \mathbf { C L } $ UB) and is in country $( \mathbf { C L U B } \to \mathbf { C O U N T R Y } )$ . In addition to the atomic relations, we manually picked a few meaningful compositions of relations and formed query templates, which takes the form “find $e \in { \mathcal { E } }$ , such that $( s , p , e )$ is true”, where $s$ is the subject and $p$ can be an atomic relation or a path of relations. To formulate a set of path-based question-answer pairs, we manually created one or more question templates for every query template (see Table 5) Then, for a particular instantiation of a query template with subject and object entities, we randomly select a question template to generate a question given the subject; the object entity becomes the answer of the question. See Table 6 for the list of composed relations, sample questions, and answers. Note that all atomic relations in this dataset are many-to-one while these composed relations can be one-to-many or many-to-many as well. + +Conjunctive queries. To generate question-and-answer pairs of conjunctive queries, we first picked three pairs of relations and used them to create query templates of the form “Find $e \in { \mathcal { E } }$ , such that both $( s _ { 1 } , r _ { 1 } , e )$ and $( s _ { 2 } , r _ { 2 } , e )$ are true.” (see Table 5). For a pair of relations $r _ { 1 }$ and $r _ { 2 }$ , we enumerated all pairs of entities $s _ { 1 } , s _ { 2 }$ that can be their subjects and formulated the corresponding query in natural language using question templates as in the same way as path queries. See Table 7 for a list of sample questions and answers. + +As a result, we created 8003 question-and-answer pairs of path queries and 2208 pairs of conjunctive queries which are partitioned into train / validation $/$ test subsets. We refer to Table 1 for more statistics about the dataset. Templates for generating the questions are list in Table 5. + +# 4.2 EXPERIMENTAL SETUP + +To perform question and answering under our proposed framework, we first train the TransGaussian model on WorldCup2014 dataset. In addition to the atomic triplets, we randomly sampled 50000 paths with length 1 or 2 from the knowledge graph and trained a TransGaussian model compositionally as described in Set 2.2. An inverse relation is treated as a separate relation. Following the naming convention from Guu et al. (2015), we denote this trained embedding by TransGaussian (COMP). We found that the learned embedding possess some interesting properties. Some dimensions of the embedding space dedicate to represent a particular relation. Players are clustered by their attributes when entities’ embeddings are projected to the corresponding lower dimensional subspaces. We elaborate and illustrate such properties in the Appendix. + +Baseline methods We also trained a TransGaussian model only on the atomic triplets and denote such a model by TransGaussian (SINGLE). Since no inverse relation was involved when TransGaussian (SINGLE) was trained, to use this embedding in question answering tasks, we represent the inverse relations as follows: for each relation $r$ with mean $\delta _ { r }$ and variance $\Sigma _ { r }$ , we model its inverse $r ^ { - 1 }$ as a Gaussian attention with mean $- \delta _ { r }$ and variance equal to $\Sigma _ { r }$ . + +We also trained TransE models on WorldCup2014 dataset by using the code released by the authors of Guu et al. (2015). Likewise, we use TransE (SINGLE) to denote the model trained with atomic triplets only and use TransE (COMP) to denote the model trained with the union of triplets and paths. Note that TransE can be considered as a special case of TransGaussian where the variance matrix is the identity and hence, the scoring formula Eq. (7) is applicable to TransE as well. + +Training configurations For all models, dimension of entity embeddings was set to 30. The hidden size of LSTM was set to 80. Word embeddings were trained jointly with the question answering model and dimension of word embedding was set to 40. We employed Adam (Kingma & Ba, 2014) as the optimizer. All parameters were tuned on the validation set. Under the same setting, we experimented with two cases: first, we trained models for path queries and conjunctive queries separately; Furthermore, we trained a single model that addresses both types queries. We present the results of the latter case in the next subsection while the results of the former are included in the Appendix. + +Evaluation metrics During test time, our model receives a question in natural language and a list of knowledge base entities contained in the question. Then it predicts the mean and variance of a Gaussian attention formulated in Eq. (7) which is expected to capture the distribution of all positive answers. We rank all entities in the knowledge base by their scores under this Gaussian attention. Next, for each entity which is a correct answer, we check its rank relative to all incorrect answers and call this rank the filtered rank. For example, if a correct entity is ranked above all negative answers except for one, it has filtered rank two. We compute this rank for all true answers and report mean filtered rank and $H @ l$ which is the percentage of true answers that have filtered rank 1. + +# 4.3 EXPERIMENTAL RESULTS + +We present the results of joint learning in Table 2. These results show that TransGaussian works better than TransE in general. In fact, TransGaussian (COMP) achieved the best performance in almost all aspects. Most notably, it achieved the highest $\mathrm { H @ 1 }$ rates on challenging questions such as “where is the club that edin dzeko plays for?” (#11, composition of two relations) and “who are the defenders on german national team?” (#14, conjunction of two queries). + +The same table shows that TransGaussian benefits remarkably from compositional training. For example, compositional training improved TransGaussian’s $\mathrm { H @ 1 }$ rate by near $60 \%$ in queries on players from a given countries (#8) and queries on players who play a particular position (#9). It also boosted TransGaussian’s performance on all conjunctive quries (#13–#15) significantly. + +To understand TransGaussian (COMP)’s weak performance on answering queries on the professional football club located in a given country (#10) and queries on professional football club that has players from a particular country (#12), we tested its capability of modeling the composed relation by feeding the correct relations and subjects during test time. It turns out that these two relations were not modeled well by TransGaussian (COMP) embedding, which limits its performance in question answering. (See Table 8 in the Appendix for quantitative evaluations.) The same limit was found in the other three embeddings as well. + +Note that all the models compared in Table 2 uses the proposed Gaussian attention model because TransE is the special case of TransGaussian where the variance is fixed to one. Thus the main differences are whether the variance is learned and whether the embedding was trained compositionally. Finally, we refer to Table 9 and 10 in the Appendix for experimental results of models trained on path and conjunctive queries separately. + +Table 1: Some statistics of the WorldCup2014 dataset. + +
# entity
#atomic relations# atomic triplets
# path query Q&A(train/validation/test)# conjunctive query Q&A(train /validation /test)
1127639775620/804/15791564/224/420
+ +# 5 RELATED WORK + +The work of Vilnis & McCallum (2014) is similar to our Gaussian attention model. They discuss many advantages of the Gaussian embedding; for example, it is arguably a better way of handling asymmetric relations and entailment. However the work was presented in the word2vec (Mikolov et al., 2013)-style word embedding setting and the Gaussian embedding was used to capture the diversity in the meaning of a word. Our Gaussian attention model extends their work to a more general setting in which any memory item can be addressed through a concept represented as a Gaussian distribution over the memory items. + +Table 2: Results of joint learning with path queries and conjunction queries on WorldCup2014. + +
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Sample questionH@1(%)FilteredMean RankH@1(%)FilteredMean RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1which club does alan pulido play for?88.591.1891.951.1196.641.0498.661.01
2what position does gonzalo higuain play?100.001.0098.111.0398.741.01100.001.00
3how old is samuel etoo?67.111.4490.791.1394.741.0897.371.04
4what is the jersey number of mario balotelli?45.001.8983.571.2297.141.0399.291.01
5which country is thomas mueller from ?94.401.0694.401.0696.801.0498.401.02
6which country is the soccer team fc porto based in ?98.481.0298.481.0293.941.0695.451.05
7who plays professionally at liverpool fc?95.121.1090.241.2098.371.0496.751.04
8which player is from iran?89.861.5176.812.0738.652.9699.521.00
9name a player who plays goalkeeper?98.961.0169.791.8242.715.52100.001.00
10which soccer club is based in mexico?22.0313.9430.518.846.7810.6616.9521.14
11where is the club that edin dzeko plays for ?52.633.8857.242.1047.372.2778.291.41
12name a soccer club that has a player from australia ?30.4312.0833.7011.4713.0411.6419.5717.57
Overall (Path Query)74.163.1177.392.5669.543.0285.943.52
13who plays forward for fc barcelona?97.551.0676.071.6693.251.2498.771.02
14who are the defenders on german national team?95.931.0669.922.3365.042.04100.001.00
15which player in ssc napoli is from argentina?88.811.1776.121.7688.811.3597.761.03
Overall(Conj. Query)94.291.0974.291.8983.571.5198.811.02
+ +Bordes et al. (2014; 2015) proposed a question-answering model that embeds both questions and their answers to a common continuous vector space. Their method in Bordes et al. (2015) can combine multiple knowledge bases and even generalize to a knowledge base that was not used during training. However their method is limited to the simple question answering setting in which the answer of each question associated with a triplet in the knowledge base. In contrast, our method can handle both composition of relations and conjunction of conditions, which are both naturally enabled by the proposed Gaussian attention model. + +Neelakantan et al. (2015a) proposed a method that combines relations to deal with compositional relations for knowledge base completion. Their key technical contribution is to use recurrent neural networks (RNNs) to encode a chain of relations. When we restrict ourselves to path queries, question answering can be seen as a sequence transduction task (Graves, 2012; Sutskever et al., 2014) in which the input is text and the output is a series of relations. If we use RNNs as a decoder, our model would be able to handle non-commutative composition of relations, which the current weighted convolution cannot handle well. Another interesting connection to our work is that they take the maximum of the inner-product scores (see also Weston et al., 2013; Neelakantan et al., 2015b), which are computed along multiple paths connecting a pair of entities. Representing a set as a collection of vectors and taking the maximum over the inner-product scores is a natural way to represent a set of memory items. The Gaussian attention model we propose in this paper, however, has the advantage of differentiability and composability. + +# 6 CONCLUSION + +In this paper, we have proposed the Gaussian attention model which can be used in a variety of contexts where we can assume that the distance between the memory items in the latent space is compatible with some notion of semantics. We have shown that the proposed Gaussian scoring function can be used for knowledge base embedding achieving competitive accuracy. We have also shown that our embedding model can naturally propagate uncertainty when we compose relations together. Our embedding model also benefits from compositional training proposed by Guu et al. (2015). Furthermore, we have demonstrated the power of the Gaussian attention model in a challenging question answering problem which involves both composition of relations and conjunction of queries. Future work includes experiments on natural question answering datasets and end-to-end training including the entity extractor. + +# ACKNOWLEDGMENTS + +The authors would like to thank Daniel Tarlow, Nate Kushman, and Kevin Gimpel for valuable discussions. + +# REFERENCES + +Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014. + +Antoine Bordes, Jason Weston, Ronan Collobert, and Yoshua Bengio. Learning structured embeddings of knowledge bases. In Conference on Artificial Intelligence, number EPFL-CONF-192344, 2011. + +Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko. Translating embeddings for modeling multi-relational data. In Advances in Neural Information Processing Systems, pp. 2787–2795, 2013. + +Antoine Bordes, Jason Weston, and Nicolas Usunier. Open question answering with weakly supervised embedding models. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 165–180. Springer, 2014. + +Antoine Bordes, Nicolas Usunier, Sumit Chopra, and Jason Weston. Large-scale simple question answering with memory networks. arXiv preprint arXiv:1506.02075, 2015. + +Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network´ learning by exponential linear units (elus). arXiv preprint arXiv:1511.07289, 2015. + +Alex Graves. Sequence transduction with recurrent neural networks. arXiv preprint arXiv:1211.3711, 2012. + +Alex Graves, Greg Wayne, and Ivo Danihelka. Neural turing machines. arXiv preprint arXiv:1410.5401, 2014. + +Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. In EMNLP 2015, 2015. + +Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8): 1735–1780, 1997. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Yujia Li, Daniel Tarlow, Marc Brockschmidt, and Richard Zemel. Gated graph sequence neural networks. arXiv preprint arXiv:1511.05493, 2015. + +Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient estimation of word representations in vector space. arXiv preprint arXiv:1301.3781, 2013. + +Arvind Neelakantan, Benjamin Roth, and Andrew McCallum. Compositional vector space models for knowledge base completion. arXiv preprint arXiv:1504.06662, 2015a. + +Arvind Neelakantan, Jeevan Shankar, Alexandre Passos, and Andrew McCallum. Efficient non-parametric estimation of multiple embeddings per word in vector space. arXiv preprint arXiv:1504.06654, 2015b. + +Maximilian Nickel, Volker Tresp, and Hans-Peter Kriegel. A three-way model for collective learning on multi-relational data. In Proceedings of the 28th international conference on machine learning (ICML-11), pp. 809–816, 2011. + +Richard Socher, Danqi Chen, Christopher D Manning, and Andrew Ng. Reasoning with neural tensor networks for knowledge base completion. In Advances in Neural Information Processing Systems, pp. 926–934, 2013. + +Sainbayar Sukhbaatar, Jason Weston, Rob Fergus, et al. End-to-end memory networks. In Advances in neural information processing systems, pp. 2440–2448, 2015. + +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. + +Alan Mathison Turing. On computable numbers, with an application to the entscheidungsproblem: A correction. Proceedings of the London Mathematical Society, 2(1):544, 1938. + +Luke Vilnis and Andrew McCallum. Word representations via gaussian embedding. arXiv preprint arXiv:1412.6623, 2014. + +Zhen Wang, Jianwen Zhang, Jianlin Feng, and Zheng Chen. Knowledge graph embedding by translating on hyperplanes. In AAAI, pp. 1112–1119. Citeseer, 2014. + +Jason Weston, Ron J Weiss, and Hector Yee. Nonlinear latent factorization by embedding multiple user interests. In Proceedings of the 7th ACM conference on Recommender systems, pp. 65–68. ACM, 2013. + +Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint arXiv:1410.3916, 2014. + +Jason D Williams, Eslam Kamal, Hani Amr Mokhtar Ashour, Jessica Miller, and Geoff Zweig. Fast and easy language understanding for dialog systems with microsoft language understanding intelligent service (LUIS). In 16th Annual Meeting of the Special Interest Group on Discourse and Dialogue, pp. 159, 2015. + +# A WORDCUP2014 DATASET + +Table 3: Sample atomic triplets. + +
SubjectRelationObject
david_villaplays-for_countryspain
lionel_messiplays_in-clubfc_barcelona
antoine-griezmannplays-positionforward
cristiano_ronaldowears_number7
fulham_fcis_in_countryengland
lukas_podolskiis_aged29
+ +Table 4: Statistics of the WorldCup2014 dataset. + +
#entity# atomic relations# atomic triplets112763977
#relations (atomic and compositional) in path queries# question and answer pairs in path queries(train/validation/ test)125620/804/1579
# types of questions in conjunctive queries# question and answer pairs in conjunctive queries(train/validation/test )31564/224/420
size of vocabulary1781
+ +Table 5: Templates of questions. In the table, (player), (club), (position) are placeholders of named entities with associated type. (country 1) is a placeholder for a country name while (country 2) is a placeholder for the adjectival form of a country. + +
#Query templateQuestion template
1Finde ∈ε:((player),plays_in_club,e)is truewhich club does (player) play for ?which professional football team does (player) play for ?which football club does (player) play for ?
2Finde∈ε:(player),plays-position,e)is truewhat position does (player) play ?
3Find e ∈ε:(player),is-aged,e) is truehow old is (player) ?what is the age of (player) ?
4Finde∈ε:(player),wears_number,e) is truewhat is the jersey number of (player) ?what number does (player) wear ?
5Finde ∈ε:(player),plays_for_country,e) is truewhat is the nationality of (player) ?which national team does (player) play for ?which country is (player) from ?
6Finde∈ε:(club),is-in_country,e)is truewhich country is the soccer team (club) based in ?
7Finde ∈ε: (club),plays_in_club-1,e)is truename a player from (club) ?who plays at the soccer club (club) ?who is from the professional football team (club) ?who plays professionally at (club) ?
8Finde ∈ε:(country-1),plays_for-country-1,e)is truewhich player is from (country_1) ?name a player from (country-1) ?who is from (country-1) ?who plays for the (country_1) national football team ?
9Finde∈ε:(position),playsposition-,e)is truename a player who plays (position) ?who plays (position) ?
10Finde ∈ε:(cotry-1),sicountry-1,e)is truewhich soccer club is based in (country_1) ?name a soccer club in (country_1) ?
11Finde∈ε:(player),plays_in_club /is_in_country,e)is truewhich country does (player) play professionally in ?where is the football club that (player) plays for ?
12Finde ∈ε:(country-1),plays-for-country-1/plays_in_club,e)is truewhich professional football team do players from (country_1) play for ?name a soccer club that has a player from (country_1) ?which professional football team has a player from (country_1) ?
13Find e∈ ε:(position),plays-position-1,e) is true and((club),plays-in_club-1,e) is truewho plays (position) for (club)?who are the (position) at (club) ?name a (position) that plays for (club) ?
14Find e∈ε: (position),plays-position-1,e) is true and(country-l),plays-for-country-1,e)is truewho plays (position) for (country_1) ?who are the (position) on (country_1) national team ?name a (position) from (country-1) ?which (country_2) footballer plays (position) ?name a (country-2) (position) ?
15Find e∈ε:(club), plays_in_club-1,e) is true and(country_l),plays_for_country-1,e)is truewho are the (country_2) playersat (club)?which (country_2) footballer plays for (club) ?name a (country_2) player at (club) ?which player in (club) is from (country-1) ?
+ +Table 6: (Composed) relations and sample questions in path queries. + +
#RelationTypeSample questionSample answer
1plays_in_clubmany-to-onewhich club doesalan pulido play for ?which professional footbal team does klaas jan huntelar play for ?tigres_uanlfc_schalke_04
2plays-positionmany-to-onewhat position does gonzalo higuain play ?ssc_napoli
3is_agedmany-to-onehow old is samuel etoo ?what is the age of luis suarez ?3
4wears-numbermany-to-onewhat is the jersey number of mario balotelli ?what number does shinji okazaki wear ?
5plays_for_countrymany-to-onewhich country is thomas mueller from ?what is the nationality of helder postiga ?germanyportugal
6is.in_countrymany-to-onewhich country is the soccer team fc porto based in ?portugal
7plays_in_club-1one-to-manywho playsprofessionally at liverpool fc ?name a player from as roma ?steven_gerrardmiralem_pjanic
8plays-for_country-1one-to-manywhich player is from iran ?name a player from italy ?masoud_shojaeidaniele_de_rossi
9plays-position-1one-to-manyname a player who plays goalkeeper ?who plays forward ?gianluiqi-buffonraul_jimenez
10is_in-country-1one-to-manywhich soccer club is based in mexico ?name a soccer club in australia ?cruz_azul.fcmelbourne_victory_fc
11plays_in_club /is_in_countrymany-to-onewhere is the club that edin dzeko plays for ?which country does sime vrsaljko play professionally in ?englanditaly
12plays-for_country-1/plays_in_clubmany-to-manyname a soccer club that has a player from australia?name a soccer club that has a player from spain ?crystal_palace_fcfc_barcelona
+ +Table 7: Conjunctive queries and sample questions. + +
#RelationsSample questionsEntities in questionsSampleanswer
13plays_position-1 and plays_in_club-1who plays forward for fc barcelona ? who are the midfielders at fc bayern muenchen ?forward,fc_barcelona midfielder,fc_bayern_muenchenlionel_messi toni_kroos
14plays-position -1 andwho are the defenders on german national team ? which mexican footballer plays forward ?defender,germany defender,mexicoper_mertesacker raul-jimenez
15plays_in_club-1 and plays_for_country -1which player in paris saint-germain fc is from argentina ? who are the korean players at beijing guoan ?paris_saint-germain_fc,argentina beijing-guoan,koreaezequiel_lavezzi ha-daesung
+ +# B TRANSGAUSSIAN EMBEDDING OF WORLDCUP2014 + +We trained our TransGaussian model on triplets and paths from WorldCup2014 dataset and illustrated the embeddings in Fig 3 and 4. Recall that we modeled every relation as a Gaussian with diagonal covariance matrix. Fig 3 shows the learned variance parameters of different relations. Each row corresponds to the variances of one relation. Columns are permuted to reveal the block structure. From this figure, we can see that every relation has a small variance in two or more dimensions. This implies that the coordinates of the embedding space are partitioned into semantically coherent clusters each of which represent a particular attribute of a player (or a football club). To verify this further, we picked the two coordinates in which a relation (e.g. plays position) has the least variance and projected the embedding of all valid subjects and objects (e.g. players and positions) of the relation to this 2 dimensional subspace. See Fig. 4. The relation between the subjects and the objects are simply translation in the projection when the corresponding subspace is two dimensional (e.g., plays position relation in Fig. 4 (a)). The same is true for other relations that requires larger dimension but it is more challenging to visualize in two dimensions. For relations that have a large number of unique objects, we only plotted for the eight objects with the most subjects for clarity of illustration. + +Furthermore, in order to elucidate whether we are limited by the capacity of the TransGaussian embedding or the ability to decode question expressed in natural language, we evaluated the test question-answer pairs using the TransGaussian embedding composed according to the ground-truth relations and entities. The results were evaluated with the same metrics as in Sec. 4.3. This estimation is conducted for TransE embeddings as well. See Table 8 for the results. Compared to Table 2, the accuracy of TransGaussian (COMP) is higher on the atomic relations and path queries but lower on conjunctive queries. This is natural because when the query is simple there is not much room for the question-answering network to improve upon just combining the relations according to the ground truth relations, whereas when the query is complex the network could combine the embedding in a more creative way to overcome its limitation. In fact, the two queries (#10 and #12) that TransGaussian (COMP) did not perform well in Table 2 pertain to a single relation is in country−1 (#10) and a composition of two relations plays for country $^ - 1 \ /$ plays in club (#12). The performance of the two queries were low even when the ground truth + +![](images/dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg) +Figure 3: Variance of each relation. Each row shows the diagonal values in the variance matrix associated with a relation. Columns are permuted to reveal the block structure. + +Table 8: Evaluation of embeddings. We evaluate the embeddings by feeding the correct entities and relations from a path or conjunctive query to an embedding model and using its scoring function to retrieve the answers from the embedded knowledge base. + +
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#RelationH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1plays.in.club75.541.3893.481.0999.861.0098.511.02
2plays-position96.331.0494.021.0998.371.02100.001.00
3is_aged55.031.6991.441.1296.881.03100.001.00
4wears_number38.862.0978.671.3295.921.04100.001.00
5plays_for_country71.601.3994.841.1099.321.01100.001.00
6is_in_country98.321.0399.661.0099.331.01100.001.00
7plays_in_club-187.501.4683.421.4594.701.0797.421.03
882.471.6868.213.3725.275.6698.781.02
9plays-position-1100.001.0075.541.6013.5924.3598.781.02
10is_in-country-123.1126.9223.4823.278.32130.5919.4183.61
11plays_in_club/is_in-country20.247.0558.291.9846.882.9980.161.38
12plays-for_country -1/plays-in_club25.3222.2727.7310.0419.0435.5920.1533.01
Overall(Path relations) plays-position-164.645.0975.023.5967.2214.8786.738.79
13and plays-in_club-1 plays-position91.851.2069.971.8277.451.8395.381.06
14and plays_in_club =T91.711.2366.712.8551.494.8897.831.05
15and is_in_country -188.591.2073.37 70.021.80 2.1683.421.3494.701.08
Overall (Conj.relations)90.721.2170.792.6895.971.06
+ +relations were given, which indicates that the TransGaussian embedding rather than the questionanswering network is the limiting factor. + +# C KNOWLEDGE BASE COMPLETION + +Knowledge base completion has been a common task for testing knowledge base models on their ability of generalizing to unseen facts. Here, we apply our TransGaussian model to a knowledge completion task and show that it has competitive performance. + +We tested on the subset of WordNet released by Guu et al. (2015). The atomic triplets in this dataset was originally created by Socher et al. (2013) and Guu et al. (2015) added path queries that were randomly sampled from the knowledge graph. We build our TransGaussian model by training on these triplets and paths and tested our model on the same link prediction task as done by Socher et al. (2013); Guu et al. (2015). + +As done by Guu et al. (2015), we trained TransGaussian (SINGLE) with atomic triplets only and trained TransGaussian (COMP) with the union of atomic triplets and paths. We did not incorporate word embedding in this task and each entity is assigned its individual vector. Without getting parameters tuned too much, TransGaussian (COMP) obtained accuracy comparable to TransE (COMP). See Table 11. + +![](images/4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg) +Figure 4: TransGaussian entity embeddings. Crosses are the subjects and circles are the objects of a relation. Specifically, crosses are players in (a)-(e) and professional football clubs in (f). + +Table 9: Experimental results of path queries on WorldCup2014. + +
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Relation and sample questionMean H@1(%)Filtered RankH@1(%)Mean Filtered RankMean H@1(%) Filtered RankH@1(%)Mean Filtered Rank
1plays.in_club (which club does alan pulido play for?)90.60 1.1292.621.1196.64 1.0397.991.03
2plays-position (what position does gonzalo higuain play?)100.00 1.0098.111.0298.74 1.01100.001.00
3is_aged (how old is samuel etoo?)81.58 1.3092.111.1096.05 1.04100.001.00
4wears_number (what is the jersey number of mario balotelli?)44.29 1.8885.711.1996.43 1.04100.001.00
5plays-for-country (which country is thomas mueller from ?)97.60 1.0294.401.1198.40 1.0299.201.01
6is_in.country (which country is the soccer team fc porto based in ?)98.48 1.0298.481.0293.94 1.0898.481.02
7plays_in_club-1 (who plays professionally at liverpool fc?)95.12 1.0886.991.3896.75 1.0396.751.03
8plays_for_country (which player is from iran?)81.16 1.6172.462.3640.58 3.1993.241.48
9plays-position (name a player who plays goalkeeper?)100.00 1.0030.212.3055.21 5.0985.421.15
10is.in_country (which soccer club is based in mexico?)24.58 11.4723.7310.075.08 9.1817.8020.10
11plays_in_club/is_in_country (where is the club that edin dzeko plays for ?)48.68 4.2462.502.0748.03 2.4176.971.50
12plays-for-country-1/plays-in-club (name a soccer club that hasaplayer from australia ?)34.78 9.4930.4311.266.52 9.8816.3020.27
Overall74.92 2.8074.352.7170.172.82 84.423.68
+ +Table 10: Experimental results of conjunctive queries on WorldCup2014. + +
TransE(SINGLE)TransE(COMP)TransGaussian(SINGLE)TransGaussian(COMP)
#Relation and sample questionMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRank
13(who plays forward for fc barcelona?)94.48 1.1071.17 1.7787.12 1.3798.77 1.02
14plays-position-and plays-for-country-1(who are the defenders on german national team?)95.93 1.0876.42 2.5064.23 2.02100.00 1.00
15plays_in_club-1andis_in_country(which player in ssc napoli is from argentina?)91.79 1.1375.37 1.7588.06 1.3794.03 1.07
Overall94.05 1.1174.05 1.9780.71 1.5697.62 1.03
+ +Table 11: Accuracy of knowledge base completion on WordNet. + +
ModelAccuracy (%)
TransE (SINGLE)68.5
TransE (COMP)80.3
TransGaussian (SINGLE)58.4
TransGaussian (COMP)76.4
\ No newline at end of file diff --git a/parse/train/ByC7ww9le/ByC7ww9le_content_list.json b/parse/train/ByC7ww9le/ByC7ww9le_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..0842b642126ac12d04bae73795154293b715922f --- /dev/null +++ b/parse/train/ByC7ww9le/ByC7ww9le_content_list.json @@ -0,0 +1,1778 @@ +[ + { + "type": "text", + "text": "GAUSSIAN ATTENTION MODEL AND ITS APPLICATION TO KNOWLEDGE BASE EMBEDDING AND QUESTION ANSWERING ", + "text_level": 1, + "bbox": [ + 174, + 98, + 823, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Liwen Zhang Department of Computer Science University of Chicago Chicago, IL 60637, USA liwenz@cs.uchicago.edu ", + "bbox": [ + 183, + 195, + 403, + 265 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "John Winn & Ryota Tomioka Microsoft Research Cambridge Cambridge, CB1 2FB, UK {jwinn, ryoto}@microsoft.com ", + "bbox": [ + 482, + 195, + 754, + 252 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 301, + 544, + 316 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We propose the Gaussian attention model for content-based neural memory access. With the proposed attention model, a neural network has the additional degree of freedom to control the focus of its attention from a laser sharp attention to a broad attention. It is applicable whenever we can assume that the distance in the latent space reflects some notion of semantics. We use the proposed attention model as a scoring function for the embedding of a knowledge base into a continuous vector space and then train a model that performs question answering about the entities in the knowledge base. The proposed attention model can handle both the propagation of uncertainty when following a series of relations and also the conjunction of conditions in a natural way. On a dataset of soccer players who participated in the FIFA World Cup 2014, we demonstrate that our model can handle both path queries and conjunctive queries well. ", + "bbox": [ + 233, + 338, + 764, + 505 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 545, + 336, + 561 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "There is a growing interest in incorporating external memory into neural networks. For example, memory networks (Weston et al., 2014; Sukhbaatar et al., 2015) are equipped with static memory slots that are content or location addressable. Neural Turing machines (Graves et al., 2014) implement memory slots that can be read and written as in Turing machines (Turing, 1938) but through differentiable attention mechanism. ", + "bbox": [ + 174, + 582, + 823, + 651 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Each memory slot in these models stores a vector corresponding to a continuous representation of the memory content. In order to recall a piece of information stored in memory, attention is typically employed. Attention mechanism introduced by Bahdanau et al. (2014) uses a network that outputs a discrete probability mass over memory items. A memory read can be implemented as a weighted sum of the memory vectors in which the weights are given by the attention network. Reading out a single item can be realized as a special case in which the output of the attention network is peaked at the desired item. The attention network may depend on the current context as well as the memory item itself. The attention model is called location-based and content-based, if it depends on the location in the memory and the stored memory vector, respectively. ", + "bbox": [ + 174, + 659, + 825, + 784 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Knowledge bases, such as WordNet and Freebase, can also be stored in memory either through an explicit knowledge base embedding (Bordes et al., 2011; Nickel et al., 2011; Socher et al., 2013) or through a feedforward network (Bordes et al., 2015). ", + "bbox": [ + 176, + 791, + 821, + 833 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "When we embed entities from a knowledge base in a continuous vector space, if the capacity of the embedding model is appropriately controlled, we expect semantically similar entities to be close to each other, which will allow the model to generalize to unseen facts. However the notion of proximity may strongly depend on the type of a relation. For example, Benjamin Franklin was an engineer but also a politician. We would need different metrics to capture his proximity to other engineers and politicians of his time. ", + "bbox": [ + 174, + 840, + 825, + 922 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg", + "image_caption": [ + "Figure 1: Comparison of the conventional content-based attention model using inner product and the proposed Gaussian attention model with the same mean but two different covariances. " + ], + "image_footnote": [], + "bbox": [ + 336, + 97, + 661, + 183 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we propose a new attention model for content-based addressing. Our model scores each item ${ \\pmb { v } } _ { \\mathrm { i t e m } }$ in the memory by the (logarithm of) multivariate Gaussian likelihood as follows: ", + "bbox": [ + 174, + 268, + 823, + 299 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/35303e12d200b6ebe304e88c74e84013ec500365fb64381d5e4d7d6f620b9df6.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { \\mathrm { i t e m } } ) = \\log \\phi ( \\pmb { v } _ { \\mathrm { i t e m } } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) } \\\\ & { \\qquad = - \\frac { 1 } { 2 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ^ { - 1 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) + \\mathrm { c o n s t . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 238, + 318, + 759, + 369 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where context denotes all the variables that the attention depends on. For example, “American engineers in the $1 8 \\mathrm { t h }$ century” or “American politicians in the 18th century” would be two contexts that include Benjamin Franklin but the two attentions would have very different shapes. ", + "bbox": [ + 176, + 387, + 821, + 429 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Compared to the (normalized) inner product used in previous work (Sukhbaatar et al., 2015; Graves et al., 2014) for content-based addressing, the Gaussian model has the additional control of the spread of the attention over items in the memory. As we show in Figure 1, we can view the conventional inner-product-based attention and the proposed Gaussian attention as addressing by an affine energy function and a quadratic energy function, respectively. By making the addressing mechanism more complex, we may represent many entities in a relatively low dimensional embedding space. Since knowledge bases are typically extremely sparse, it is more likely that we can afford to have a more complex attention model than a large embedding dimension. ", + "bbox": [ + 173, + 435, + 825, + 547 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We apply the proposed Gaussian attention model to question answering based on knowledge bases. At the high-level, the goal of the task is to learn the mapping from a question about objects in the knowledge base in natural language to a probability distribution over the entities. We use the scoring function (1) for both embedding the entities as vectors, and extracting the conditions mentioned in the question and taking a conjunction of them to score each candidate answer to the question. ", + "bbox": [ + 174, + 554, + 825, + 625 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The ability to compactly represent a set of objects makes the Gaussian attention model well suited for representing the uncertainty in a multiple-answer question (e.g., “who are the children of Abraham Lincoln?”). Moreover, traversal over the knowledge graph (see Guu et al., 2015) can be naturally handled by a series of Gaussian convolutions, which generalizes the addition of vectors. In fact, we model each relation as a Gaussian with mean and variance parameters. Thus a traversal on a relation corresponds to a translation in the mean and addition of the variances. ", + "bbox": [ + 173, + 631, + 825, + 715 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The proposed question answering model is able to handle not only the case where the answer to a question is associated with an atomic fact, which is called simple Q&A (Bordes et al., 2015), but also questions that require composition of relations (path queries in Guu et al. (2015)) and conjunction of queries. An example flow of how our model deals with a question “Who plays forward for Borussia Dortmund?” is shown in Figure 2 in Section 3. ", + "bbox": [ + 174, + 722, + 825, + 791 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This paper is structured as follows. In Section 2, we describe how the Gaussian scoring function (1) can be used to embed the entities in a knowledge base into a continuous vector space. We call our model TransGaussian because of its similarity to the TransE model proposed by Bordes et al. (2013). Then in Section 3, we describe our question answering model. In Section 4, we carry out experiments on WorldCup2014 dataset we collected. The dataset is relatively small but it allows us to evaluate not only simple questions but also path queries and conjunction of queries. The proposed TransGaussian embedding with the question answering model achieves significantly higher accuracy than the vanilla TransE embedding or TransE trained with compositional relations Guu et al. (2015) combined with the same question answering model. ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 KNOWLEDGE BASE EMBEDDING ", + "text_level": 1, + "bbox": [ + 176, + 102, + 475, + 118 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we describe the proposed TransGaussian model based on the Gaussian attention model (1). While it is possible to train a network that computes the embedding in a single pass (Bordes et al., 2015) or over multiple passes (Li et al., 2015), it is more efficient to offload the embedding as a separate step for question answering based on a large static knowledge base. ", + "bbox": [ + 174, + 132, + 825, + 189 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 THE TRANSGAUSSIAN MODEL ", + "text_level": 1, + "bbox": [ + 176, + 205, + 424, + 219 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Let $\\mathcal { E }$ be the set of entities and $\\mathcal { R }$ be the set of relations. A knowledge base is a collection of triplets $( s , r , o )$ , where we call $\\textit { s } \\in \\textit { \\varepsilon }$ , $r \\in \\mathcal { R }$ , and $\\textit { o } \\in \\textit { \\mathcal { E } }$ , the subject, the relation, and the object of the triplet, respectively. Each triplet encodes a fact. For example, (Albert Einstein, has profession, theoretical physicist). All the triplets given in a knowledge base are assumed to be true. However generally speaking a triplet may be true or false. Thus knowledge base embedding aims at training a model that predict if a triplet is true or not given some parameterization of the entities and relations (Bordes et al., 2011; 2013; Nickel et al., 2011; Socher et al., 2013; Wang et al., 2014). ", + "bbox": [ + 173, + 231, + 825, + 344 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "paper, we associate awith two parameters, $\\pmb { v } _ { s } \\in \\mathbb { R } ^ { d }$ with each entity ositive definite s $s \\in { \\mathcal { E } }$ , and we atric matrix h relation. $r \\in \\mathcal { R }$ $\\pmb { \\delta } _ { r } \\in \\mathbb { R } ^ { d }$ $\\pmb { \\Sigma } _ { r } \\in \\mathbb { R } _ { + + } ^ { d \\times d }$ ", + "bbox": [ + 174, + 349, + 821, + 381 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given subject $s$ and relation $r$ , we can compute the score of an object $o$ to be in triplet $( s , r , o )$ using the Gaussian attention model as (1) with ", + "bbox": [ + 174, + 387, + 823, + 415 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/5c69bcc35098be68af1a430bd4cb7dbc1fecdbf4ab8b68d54743d74cd3859f79.jpg", + "text": "$$\n\\begin{array} { r } { \\mathrm { s c o r e } ( s , r , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 420, + 653, + 438 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\pmb { \\delta } _ { r }$ , $\\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } = \\pmb { \\Sigma } _ { r }$ . Note that if $\\Sigma _ { r }$ is fixed to the identity matrix, we are modeling the relation of subject ${ \\pmb v } _ { s }$ and object ${ \\pmb v } _ { o }$ as a translation $\\delta _ { r }$ , which is equivalent to the TransE model (Bordes et al., 2013). We allow the covariance $\\Sigma _ { r }$ to depend on the relation to handle one-to-many relations (e.g., profession has person relation) and capture the shape of the distribution of the set of objects that can be in the triplet. We call our model TransGaussian because of its similarity to TransE (Bordes et al., 2013). ", + "bbox": [ + 173, + 440, + 825, + 525 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Parameterization For computational efficiency, we will restrict the covariance matrix $\\Sigma _ { r }$ to be diagonal in this paper. Furthermore, in order to ensure that $\\Sigma _ { r }$ is strictly positive definite, we employ the exponential linear unit (ELU, Clevert et al., 2015) and parameterize $\\Sigma _ { r }$ as follows: ", + "bbox": [ + 173, + 540, + 823, + 582 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/c1f66c1aa79eb2d4fe7c09b566a6b78148df32593e7806c2db3ed991658d7829.jpg", + "text": "$$\n\\Sigma _ { r } = \\mathrm { d i a g } \\left( \\begin{array} { c } { { \\mathrm { E L U } ( m _ { r , 1 } ) + 1 + \\epsilon } } \\\\ { { } } \\\\ { { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot } } } } } } } } } } } } } } } \\end{array} \\right)\n$$", + "text_format": "latex", + "bbox": [ + 334, + 585, + 663, + 631 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $m _ { r , j } ~ ( j = 1 , \\ldots , d )$ are the unconstrained parameters that are optimized during training and $\\epsilon$ is a small positive value that ensure the positivity of the variance during numerical computation. The ELU is defined as ", + "bbox": [ + 174, + 635, + 825, + 676 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/3d40bd351af026f629f9cacb330837b022c4d0c1d9ab8ed13b6d474e7cdb411a.jpg", + "text": "$$\n{ \\mathrm { E L U } } ( x ) = { \\left\\{ \\begin{array} { l l } { x , } & { x \\geq 0 , } \\\\ { \\exp { ( x ) } - 1 , } & { x < 0 . } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 379, + 680, + 617, + 715 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Ranking loss Suppose we have a set of triplets $\\mathcal { T } = \\{ ( s _ { i } , r _ { i } , o _ { i } ) \\} _ { i = 1 } ^ { N }$ from the knowledge base. \nLet $\\mathcal { N } ( s , r )$ be the set of incorrect objects to be in the triplet $( s , r , \\cdot )$ . ", + "bbox": [ + 173, + 728, + 820, + 761 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our objective function uses the ranking loss to measure the margin between the scores of true answers and those of false answers and it can be written as follows: ", + "bbox": [ + 173, + 766, + 821, + 795 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d0cca07bb8163d14a796bc213dc59912b521bb4b485d6c47e59ae0830c053954.jpg", + "text": "$$\n\\begin{array} { r } { \\displaystyle \\underset { \\{ \\delta _ { r } , M _ { r } , : r \\in \\bar { \\mathcal { R } } \\} } { \\operatorname* { m i n } } \\frac { 1 } { N } \\sum _ { ( s , r , o ) \\in \\mathcal { T } } \\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) } \\left[ [ \\mu - \\mathrm { s c o r e } ( s , r , o ) + \\mathrm { s c o r e } ( s , r , t ^ { \\prime } ) ] _ { + } \\right] } \\\\ { + \\lambda \\left( \\displaystyle \\sum _ { e \\in \\mathcal { E } } \\| v _ { e } \\| _ { 2 } ^ { 2 } + \\displaystyle \\sum _ { r \\in \\bar { \\mathcal { R } } } \\big ( \\| \\delta _ { r } \\| _ { 2 } ^ { 2 } + \\| M _ { r } \\| _ { F } ^ { 2 } \\big ) \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 250, + 796, + 746, + 892 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where, $N = | \\mathcal { T } |$ , $\\mu$ is the margin parameter and $M _ { r }$ denotes the diagonal matrix with $m _ { r , j } , j =$ $1 , \\ldots , d$ on the diagonal; the function $[ \\cdot ] _ { + }$ is defined as $[ x ] _ { + } = \\operatorname* { m a x } ( 0 , x )$ . Here, we treat an inverse relation as a separate relation and denote by $\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }$ the set of all the relations including both relations in $\\mathcal { R }$ and their inverse relations; a relation $\\tilde { r }$ is the inverse relation of $r$ if $( s , \\tilde { r } , o )$ implies $( o , r , s )$ and vice versa. Moreover, $\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) }$ denotes the expectation with respect to the uniform distribution over the set of incorrect objects, which we approximate with 10 random samples in the experiments. Finally, the last terms are $\\ell _ { 2 }$ regularization terms for the embedding parameters. ", + "bbox": [ + 173, + 895, + 823, + 925 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 102, + 825, + 174 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.2 COMPOSITIONAL RELATIONS ", + "text_level": 1, + "bbox": [ + 176, + 190, + 415, + 203 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Guu et al. (2015) has recently shown that training TransE with compositional relations can make it competitive to more complex models, although TransE is much simpler compared to for example, neural tensor networks (NTN, Socher et al. (2013)) and TransH Wang et al. (2014). Here, a compositional relation is a relation that is composed as a series of relations in $\\mathcal { R }$ , for example, grand father of can be composed as first applying the parent of relation and then the father of relation, which can be seen as a traversal over a path on the knowledge graph. ", + "bbox": [ + 173, + 215, + 825, + 300 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "TransGaussian model can naturally handle and propagate the uncertainty over such a chain of relations by convolving the Gaussian distributions along the path. That is, the score of an entity $o$ to be in the $\\tau$ -step relation $r _ { 1 } / r _ { 2 } / \\cdots / r _ { \\tau }$ with subject $s$ , which we denote by the triplet $( \\dot { s , } r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o )$ , is given as ", + "bbox": [ + 174, + 306, + 825, + 362 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/cb93d0b8c285b8098298d11c8377beb8dea13fa379d403f59d98150719afc4c2.jpg", + "text": "$$\n\\begin{array} { r } { \\mathrm { s c o r e } ( s , r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 297, + 364, + 696, + 381 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "with $\\begin{array} { r } { \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\sum _ { t = 1 } ^ { \\tau } \\delta _ { r _ { t } } } \\end{array}$ , $\\begin{array} { r } { \\sum _ { \\mathrm { c o n t e x t } } = \\sum _ { t = 1 } ^ { \\tau } \\sum _ { r _ { t } } } \\end{array}$ , where the covariance associated with each relation is parameterized in the same way as in the previous subsection. ", + "bbox": [ + 173, + 383, + 830, + 414 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Training with compositional relations Let P = n\u0010si, ri1 /ri2 / · · · /rili , oi\u0011oN i=1 be a set of randomly sampled paths from the knowledge graph. Here relation $r _ { i _ { k } }$ in a path can be a relation in $\\mathcal { R }$ or an inverse relation in $\\mathcal { R } ^ { - 1 }$ . With the scoring function (4), the generalized training objective for compositional relations can be written identically to (3) except for replacing $\\tau$ with $\\mathcal { T } \\cup \\mathcal { P }$ and replacing $N$ with $N ^ { \\prime } = | \\mathcal { T } \\cup \\mathcal { P } |$ . ", + "bbox": [ + 174, + 430, + 825, + 511 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 QUESTION ANSWERING ", + "text_level": 1, + "bbox": [ + 176, + 530, + 401, + 546 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Given a set of question-answer pairs, in which the question is phrased in natural language and the answer is an entity in the knowledge base, our goal is to train a model that learns the mapping from the question to the correct entity. Our question answering model consists of three steps, entity recognition, relation composition, and conjunction. We first identify a list of entities mentioned in the question (which is assumed to be provided by an oracle in this paper). If the question is “Who plays Forward for Borussia Dortmund?” then the list would be [Forward, Borussia Dortmund]. The next step is to predict the path of relations on the knowledgegraph starting from each entity in the list extracted in the first step. In the above example, this will be (smooth versions of) /Forward/position played by/ and /Borussia Dortmund/has player/ predicted as series of Gaussian convolutions. In general, we can have multiple relations appearing in each path. Finally, we take a product of all the Gaussian attentions and renormalize it, which is equivalent to Bayes’ rule with independent observations (paths) and a noninformative prior. ", + "bbox": [ + 174, + 560, + 825, + 727 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 ENTITY RECOGNITION ", + "text_level": 1, + "bbox": [ + 176, + 743, + 370, + 757 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We assume that there is an oracle that provides a list containing all the entities mentioned in the question, because (1) a domain specific entity recognizer can be developed efficiently (Williams et al., 2015) and (2) generally entity recognition is a challenging task and it is beyond the scope of this paper to show whether there is any benefit in training our question answering model jointly with a entity recognizer. We assume that the number of extracted entities can be different for each question. ", + "bbox": [ + 174, + 770, + 825, + 853 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 RELATION COMPOSITION ", + "text_level": 1, + "bbox": [ + 176, + 869, + 388, + 883 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We train a long short-term memory (LSTM, Hochreiter & Schmidhuber, 1997) network that emits an output $\\boldsymbol { h } _ { t }$ for each token in the input sequence. Then we compute the attention over the hidden ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg", + "image_caption": [ + "Figure 2: The input to the system is a question in natural language. Two entities Forward and Borussia Dortmund are identified in the question and associated with point mass distributions centered at the corresponding entity vectors. An LSTM encodes the input into a sequence of output vectors of the same length. Then we take average of the output vectors weighted by attention $\\mathit { p } _ { t , e }$ for each recognized entity $e$ to predict the weight $\\alpha _ { r , e }$ for relation $r$ associated with entity $e$ . We form a Gaussian attention over the entities for each entity $e$ by convolving the corresponding point mass with the (pre-trained) Gaussian embeddings of the relations weighted by $\\alpha _ { r , e }$ according to Eq. (6). The final prediction is produced by taking the product and normalizing the Gaussian attentions. " + ], + "image_footnote": [], + "bbox": [ + 174, + 103, + 834, + 376 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "states for each recognized entity $e$ as ", + "bbox": [ + 176, + 531, + 416, + 545 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/6a31c5c001b680422b7d6aafeee5203c2e1e12300f556bf38b98a9f0280e2f71.jpg", + "text": "$$\np _ { t , e } = \\mathrm { s o f t m a x } \\left( f ( v _ { e } , h _ { t } ) \\right) \\quad ( t = 1 , . . . , T ) ,\n$$", + "text_format": "latex", + "bbox": [ + 348, + 550, + 647, + 568 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where ${ \\pmb v } _ { e }$ is the vector associated with the entity $e$ . We use a two-layer perceptron for $f$ in our experiments, which can be written as follows: ", + "bbox": [ + 173, + 571, + 825, + 599 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/b54c9eabaf2cfb70e6f9942a009c5b30d6b3c5e53c41a45f71514307ec4003ec.jpg", + "text": "$$\nf ( \\pmb { v } _ { e } , \\pmb { h } _ { t } ) = \\pmb { u } _ { f } ^ { \\top } \\mathrm { R e L U } \\left( \\pmb { W } _ { f , v } \\pmb { v } _ { e } + \\pmb { W } _ { f , h } \\pmb { h } _ { t } + \\pmb { b } _ { 1 } \\right) + b _ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 312, + 606, + 684, + 625 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mathbf { \\widetilde { \\Gamma } } _ { f , v } \\in \\mathbb { R } ^ { L \\times d } , W _ { f , h } \\in \\mathbb { R } ^ { L \\times H } , b _ { 1 } \\in \\mathbb { R } ^ { L } , { \\mathbf { u } } _ { f } \\in \\mathbb { R } ^ { L } , b _ { 2 } \\in \\mathbb { R } \\mathrm { a r e } \\mathrm { p a r }$ ameters. Here ${ \\mathrm { R e L U } } ( x ) =$ $\\operatorname* { m a x } ( 0 , x )$ is the rectified linear unit. Finally, softmax denotes softmax over the $T$ tokens. ", + "bbox": [ + 173, + 631, + 821, + 660 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Next, we use the weights $\\mathit { p } _ { t , e }$ to compute the weighted sum over the hidden states $\\boldsymbol { h } _ { t }$ as ", + "bbox": [ + 173, + 666, + 748, + 681 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2b53a112ee0c39aded391dee712421d6078d99ad25424f6d26c2802163f13eaf.jpg", + "text": "$$\no _ { e } = \\sum _ { t = 1 } ^ { T } p _ { t , e } h _ { t } .\n$$", + "text_format": "latex", + "bbox": [ + 431, + 685, + 566, + 715 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Then we compute the weights $\\alpha _ { r , e }$ over all the relations as $\\alpha _ { r , e } = \\mathrm { R e L U } \\left( \\pmb { w } _ { r } ^ { \\top } \\pmb { o } _ { e } \\right) \\quad \\left( \\forall r \\in \\mathcal { R } \\cup \\right.$ $\\mathcal { R } ^ { - 1 }$ ). Here the rectified linear unit is used to ensure the positivity of the weights. Note however that the weights should not be normalized, because we may want to use the same relation more than once in the same path. Making the weights positive also has the effect of making the attention sparse and interpretable because there is no cancellation. ", + "bbox": [ + 173, + 727, + 825, + 801 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For each extracted entity $e$ , we view the extracted entity and the answer of the question to be the subject and the object in some triplet $( e , p , o )$ , respectively, where the path $p$ is inferred from the question as the weights $\\alpha _ { r , e }$ as we described above. Accordingly, the score for each candidate answer $o$ can be expressed using (1) as: ", + "bbox": [ + 173, + 806, + 825, + 864 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2bda7cc08ca20184c9dd2f7776ba0063ba8e71d48f6c8123f749f089080f9874.jpg", + "text": "$$\n\\mathrm { s c o r e } _ { e } ( \\pmb { v } _ { o } ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } )\n$$", + "text_format": "latex", + "bbox": [ + 361, + 868, + 635, + 887 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "with $\\begin{array} { r } { \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } = \\pmb { v } _ { e } + \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } \\delta _ { r } , \\sum _ { e , \\alpha , \\mathrm { K B } } = \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } ^ { 2 } \\pmb { \\Sigma } _ { r } } \\end{array}$ , where ${ \\pmb v } _ { e }$ is the vector associated with entity $e$ and $\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }$ denotes the set of relations including the inverse relations. ", + "bbox": [ + 178, + 891, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 CONJUNCTION ", + "text_level": 1, + "bbox": [ + 174, + 103, + 318, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Let $\\mathcal { E } ( q )$ be the set of entities recognized in the question $q$ . The final step of our model is to take the conjunction of the Gaussian attentions derived in the previous step. This step is simply carried out by multiplying the Gaussian attentions as follows: ", + "bbox": [ + 173, + 128, + 825, + 171 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/7a525619e51c23780d45b9a7021f18a63cee7243fd7e4bee1093ec968f13bce2.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { o } | \\mathcal { E } ( q ) , \\Theta ) = \\underset { e \\in \\mathcal { E } ( q ) } { \\log \\prod } \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ) } \\\\ & { \\qquad = - \\cfrac { 1 } { 2 } \\displaystyle \\sum _ { e \\in \\mathcal { E } ( q ) } \\left( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } \\right) ^ { \\top } \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ^ { - 1 } ( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } ) + \\mathrm { c o n s t . } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 223, + 172, + 772, + 251 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "which is again a (logarithm of) Gaussian scoring function, where $\\mu _ { e , \\alpha , \\mathrm { K B } }$ and $\\Sigma _ { e , \\alpha , \\mathrm { K B } }$ are the mean and the covariance of the Gaussian attention given in (6). Here $\\Theta$ denotes all the parameters of the question-answering model. ", + "bbox": [ + 176, + 251, + 825, + 294 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.4 TRAINING THE QUESTION ANSWERING MODEL ", + "text_level": 1, + "bbox": [ + 174, + 309, + 537, + 324 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Suppose we have a knowledge base $( \\mathcal { E } , \\mathcal { R } , \\mathcal { T } )$ and a trained TransGaussian model $\\big ( \\{ v _ { e } \\} _ { e \\in \\mathcal { E } } , \\{ ( \\delta _ { r } , \\Sigma _ { r } ) \\} _ { r \\in \\bar { \\mathcal { R } } } \\big )$ , where $\\bar { \\mathcal { R } }$ is the set of all relations including the inverse relations. During training time, we assume the training set is a supervised question-answer pairs $\\{ ( q _ { i } , \\mathcal { E } ( q _ { i } ) , a _ { i } \\bar { ) } : i = 1 , 2 , . . . , m \\}$ . Here, $q _ { i }$ is a question formulated in natural language, $\\bar { \\mathcal { E } } ( q _ { i } ) \\subset \\mathcal { E }$ is a set of knowledge base entities that appears in the question, and $a _ { i } ~ \\in { \\mathcal { E } }$ is the answer to the question. For example, on a knowledge base of soccer players, a valid training sample could be ", + "bbox": [ + 174, + 334, + 825, + 421 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "(“Who plays forward for Borussia Dortmund?”,[Forward, Borussia Dortmund], Marco Reus). ", + "bbox": [ + 173, + 426, + 834, + 443 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Note that the answer to a question is not necessarily unique and we allow $a _ { i }$ to be any of the true answers in the knowledge base. During test time, our model is shown $\\left( q _ { i } , \\mathcal { E } ( q _ { i } ) \\right)$ and the task is to find $a _ { i }$ . We denote the set of answers to $q _ { i }$ by $A ( q _ { i } )$ . ", + "bbox": [ + 174, + 448, + 828, + 492 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To train our question-answering model, we minimize the objective function ", + "bbox": [ + 176, + 497, + 669, + 512 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/da79e56167ea45f43a99cc298820ad1427c0d4cc335951436f969b82dfa3a070.jpg", + "text": "$$\n\\frac { 1 } { n } \\sum _ { i = 1 } ^ { m } \\biggl ( \\underset { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) } { \\mathbb { E } } \\left[ [ \\mu - \\mathrm { s c o r e } ( v _ { a _ { i } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) + \\mathrm { s c o r e } ( v _ { t ^ { \\prime } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) ] _ { + } \\right] + \\nu \\sum _ { e \\in \\mathcal { E } ( q _ { i } ) } \\sum _ { r \\in \\mathcal { R } } | \\alpha _ { r , e } | \\biggr ) + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 181, + 515, + 838, + 558 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) }$ is expectation with respect to a uniform distribution over of all incorrect answers to $q _ { i }$ , which we approximate with 10 random samples. We assume that the number of relations implied in a question is small compared to the total number of relations in the knowledge base. Hence the coefficients $\\alpha _ { r , e }$ computed for each question $q _ { i }$ are regularized by their $\\ell _ { 1 }$ norms. ", + "bbox": [ + 174, + 559, + 826, + 616 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 635, + 326, + 650 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "As a demonstration of the proposed framework, we perform question and answering on a dataset of soccer players. In this work, we consider two types of questions. A path query is a question that contains only one named entity from the knowledge base and its answer can be found from the knowledge graph by walking down a path consisting of a few relations. A conjunctive query is a question that contains more than one entities and the answer is given as the conjunction of all path queries starting from each entity. Furthermore, we experimented on a knowledge base completion task with TransGaussian embeddings to test its capability of generalization to unseen fact. Since knowledge base completion is not the main focus of this work, we include the results in the Appendix. ", + "bbox": [ + 174, + 664, + 825, + 790 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 WORLDCUP2014 DATASET ", + "text_level": 1, + "bbox": [ + 176, + 806, + 401, + 820 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We build a knowledge base of football players that participated in FIFA World Cup 2014 1. The original dataset consists of players’ information such as nationality, positions on the field and ages etc. We picked a few attributes and constructed 1127 entities and 6 atomic relations. The entities include 736 players, 297 professional soccer clubs, 51 countries, 39 numbers and 4 positions. And the six atomic relations are plays in club: PLAYER $ \\mathrm { C L U B }$ , is aged: PLAYER NUMBER, plays for country: PLAYER COUNTRY, plays position: PLAYER POSITION, wears number 2: PLAYER NUMBER, is in country: CLUB COUNTRY, ", + "bbox": [ + 174, + 832, + 823, + 901 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 181, + 101, + 519, + 143 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 537, + 102, + 848, + 143 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where PLAYER, CLUB, NUMBER, etc, denote the type of entities that can appear as the left or right argument for each relation. Some relations share the same type as the right argument, e.g., plays for country and is in country. ", + "bbox": [ + 176, + 143, + 826, + 185 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Given the entities and relations, we transformed the dataset into a set of 3977 triplets. A list of sample triplets can be found in the Appendix. Based on these triplets, we created two sets of question answering tasks which we call path query and conjunctive query respectively. The answer of every question is always an entity in the knowledge base and a question can involve one or two triplets. The questions are generated as follows. ", + "bbox": [ + 174, + 193, + 825, + 262 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Path queries. Among the paths on the knowledge graph, there are some natural composition of relations, e.g., plays in country (PLAYER COUNTRY) can be decomposed as the composition of plays in club (PLAYE $\\mathbf { R } \\to \\mathbf { C L } $ UB) and is in country $( \\mathbf { C L U B } \\to \\mathbf { C O U N T R Y } )$ . In addition to the atomic relations, we manually picked a few meaningful compositions of relations and formed query templates, which takes the form “find $e \\in { \\mathcal { E } }$ , such that $( s , p , e )$ is true”, where $s$ is the subject and $p$ can be an atomic relation or a path of relations. To formulate a set of path-based question-answer pairs, we manually created one or more question templates for every query template (see Table 5) Then, for a particular instantiation of a query template with subject and object entities, we randomly select a question template to generate a question given the subject; the object entity becomes the answer of the question. See Table 6 for the list of composed relations, sample questions, and answers. Note that all atomic relations in this dataset are many-to-one while these composed relations can be one-to-many or many-to-many as well. ", + "bbox": [ + 173, + 279, + 825, + 444 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Conjunctive queries. To generate question-and-answer pairs of conjunctive queries, we first picked three pairs of relations and used them to create query templates of the form “Find $e \\in { \\mathcal { E } }$ , such that both $( s _ { 1 } , r _ { 1 } , e )$ and $( s _ { 2 } , r _ { 2 } , e )$ are true.” (see Table 5). For a pair of relations $r _ { 1 }$ and $r _ { 2 }$ , we enumerated all pairs of entities $s _ { 1 } , s _ { 2 }$ that can be their subjects and formulated the corresponding query in natural language using question templates as in the same way as path queries. See Table 7 for a list of sample questions and answers. ", + "bbox": [ + 174, + 460, + 825, + 544 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As a result, we created 8003 question-and-answer pairs of path queries and 2208 pairs of conjunctive queries which are partitioned into train / validation $/$ test subsets. We refer to Table 1 for more statistics about the dataset. Templates for generating the questions are list in Table 5. ", + "bbox": [ + 174, + 551, + 825, + 593 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 176, + 611, + 372, + 625 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To perform question and answering under our proposed framework, we first train the TransGaussian model on WorldCup2014 dataset. In addition to the atomic triplets, we randomly sampled 50000 paths with length 1 or 2 from the knowledge graph and trained a TransGaussian model compositionally as described in Set 2.2. An inverse relation is treated as a separate relation. Following the naming convention from Guu et al. (2015), we denote this trained embedding by TransGaussian (COMP). We found that the learned embedding possess some interesting properties. Some dimensions of the embedding space dedicate to represent a particular relation. Players are clustered by their attributes when entities’ embeddings are projected to the corresponding lower dimensional subspaces. We elaborate and illustrate such properties in the Appendix. ", + "bbox": [ + 174, + 636, + 825, + 761 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Baseline methods We also trained a TransGaussian model only on the atomic triplets and denote such a model by TransGaussian (SINGLE). Since no inverse relation was involved when TransGaussian (SINGLE) was trained, to use this embedding in question answering tasks, we represent the inverse relations as follows: for each relation $r$ with mean $\\delta _ { r }$ and variance $\\Sigma _ { r }$ , we model its inverse $r ^ { - 1 }$ as a Gaussian attention with mean $- \\delta _ { r }$ and variance equal to $\\Sigma _ { r }$ . ", + "bbox": [ + 174, + 776, + 823, + 847 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We also trained TransE models on WorldCup2014 dataset by using the code released by the authors of Guu et al. (2015). Likewise, we use TransE (SINGLE) to denote the model trained with atomic triplets only and use TransE (COMP) to denote the model trained with the union of triplets and paths. Note that TransE can be considered as a special case of TransGaussian where the variance matrix is the identity and hence, the scoring formula Eq. (7) is applicable to TransE as well. ", + "bbox": [ + 174, + 853, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Training configurations For all models, dimension of entity embeddings was set to 30. The hidden size of LSTM was set to 80. Word embeddings were trained jointly with the question answering model and dimension of word embedding was set to 40. We employed Adam (Kingma & Ba, 2014) as the optimizer. All parameters were tuned on the validation set. Under the same setting, we experimented with two cases: first, we trained models for path queries and conjunctive queries separately; Furthermore, we trained a single model that addresses both types queries. We present the results of the latter case in the next subsection while the results of the former are included in the Appendix. ", + "bbox": [ + 174, + 103, + 825, + 200 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Evaluation metrics During test time, our model receives a question in natural language and a list of knowledge base entities contained in the question. Then it predicts the mean and variance of a Gaussian attention formulated in Eq. (7) which is expected to capture the distribution of all positive answers. We rank all entities in the knowledge base by their scores under this Gaussian attention. Next, for each entity which is a correct answer, we check its rank relative to all incorrect answers and call this rank the filtered rank. For example, if a correct entity is ranked above all negative answers except for one, it has filtered rank two. We compute this rank for all true answers and report mean filtered rank and $H @ l$ which is the percentage of true answers that have filtered rank 1. ", + "bbox": [ + 174, + 215, + 825, + 328 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.3 EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 344, + 390, + 358 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We present the results of joint learning in Table 2. These results show that TransGaussian works better than TransE in general. In fact, TransGaussian (COMP) achieved the best performance in almost all aspects. Most notably, it achieved the highest $\\mathrm { H @ 1 }$ rates on challenging questions such as “where is the club that edin dzeko plays for?” (#11, composition of two relations) and “who are the defenders on german national team?” (#14, conjunction of two queries). ", + "bbox": [ + 174, + 369, + 825, + 440 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The same table shows that TransGaussian benefits remarkably from compositional training. For example, compositional training improved TransGaussian’s $\\mathrm { H @ 1 }$ rate by near $60 \\%$ in queries on players from a given countries (#8) and queries on players who play a particular position (#9). It also boosted TransGaussian’s performance on all conjunctive quries (#13–#15) significantly. ", + "bbox": [ + 174, + 446, + 825, + 502 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To understand TransGaussian (COMP)’s weak performance on answering queries on the professional football club located in a given country (#10) and queries on professional football club that has players from a particular country (#12), we tested its capability of modeling the composed relation by feeding the correct relations and subjects during test time. It turns out that these two relations were not modeled well by TransGaussian (COMP) embedding, which limits its performance in question answering. (See Table 8 in the Appendix for quantitative evaluations.) The same limit was found in the other three embeddings as well. ", + "bbox": [ + 174, + 510, + 825, + 608 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Note that all the models compared in Table 2 uses the proposed Gaussian attention model because TransE is the special case of TransGaussian where the variance is fixed to one. Thus the main differences are whether the variance is learned and whether the embedding was trained compositionally. Finally, we refer to Table 9 and 10 in the Appendix for experimental results of models trained on path and conjunctive queries separately. ", + "bbox": [ + 174, + 614, + 825, + 685 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/aad02463c0fedf6a70824602adf903d1fff0827b0c92885dcdc8d3417dc51591.jpg", + "table_caption": [ + "Table 1: Some statistics of the WorldCup2014 dataset. " + ], + "table_footnote": [], + "table_body": "
# entity
#atomic relations# atomic triplets
# path query Q&A(train/validation/test)# conjunctive query Q&A(train /validation /test)
1127639775620/804/15791564/224/420
", + "bbox": [ + 174, + 722, + 874, + 768 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 795, + 341, + 810 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The work of Vilnis & McCallum (2014) is similar to our Gaussian attention model. They discuss many advantages of the Gaussian embedding; for example, it is arguably a better way of handling asymmetric relations and entailment. However the work was presented in the word2vec (Mikolov et al., 2013)-style word embedding setting and the Gaussian embedding was used to capture the diversity in the meaning of a word. Our Gaussian attention model extends their work to a more general setting in which any memory item can be addressed through a concept represented as a Gaussian distribution over the memory items. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/7b655a2b41aad14dfeb2d35e01d31e0083bc112661b419140489d25d63616d5e.jpg", + "table_caption": [ + "Table 2: Results of joint learning with path queries and conjunction queries on WorldCup2014. " + ], + "table_footnote": [], + "table_body": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Sample questionH@1(%)FilteredMean RankH@1(%)FilteredMean RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1which club does alan pulido play for?88.591.1891.951.1196.641.0498.661.01
2what position does gonzalo higuain play?100.001.0098.111.0398.741.01100.001.00
3how old is samuel etoo?67.111.4490.791.1394.741.0897.371.04
4what is the jersey number of mario balotelli?45.001.8983.571.2297.141.0399.291.01
5which country is thomas mueller from ?94.401.0694.401.0696.801.0498.401.02
6which country is the soccer team fc porto based in ?98.481.0298.481.0293.941.0695.451.05
7who plays professionally at liverpool fc?95.121.1090.241.2098.371.0496.751.04
8which player is from iran?89.861.5176.812.0738.652.9699.521.00
9name a player who plays goalkeeper?98.961.0169.791.8242.715.52100.001.00
10which soccer club is based in mexico?22.0313.9430.518.846.7810.6616.9521.14
11where is the club that edin dzeko plays for ?52.633.8857.242.1047.372.2778.291.41
12name a soccer club that has a player from australia ?30.4312.0833.7011.4713.0411.6419.5717.57
Overall (Path Query)74.163.1177.392.5669.543.0285.943.52
13who plays forward for fc barcelona?97.551.0676.071.6693.251.2498.771.02
14who are the defenders on german national team?95.931.0669.922.3365.042.04100.001.00
15which player in ssc napoli is from argentina?88.811.1776.121.7688.811.3597.761.03
Overall(Conj. Query)94.291.0974.291.8983.571.5198.811.02
", + "bbox": [ + 173, + 126, + 834, + 333 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Bordes et al. (2014; 2015) proposed a question-answering model that embeds both questions and their answers to a common continuous vector space. Their method in Bordes et al. (2015) can combine multiple knowledge bases and even generalize to a knowledge base that was not used during training. However their method is limited to the simple question answering setting in which the answer of each question associated with a triplet in the knowledge base. In contrast, our method can handle both composition of relations and conjunction of conditions, which are both naturally enabled by the proposed Gaussian attention model. ", + "bbox": [ + 174, + 367, + 825, + 464 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Neelakantan et al. (2015a) proposed a method that combines relations to deal with compositional relations for knowledge base completion. Their key technical contribution is to use recurrent neural networks (RNNs) to encode a chain of relations. When we restrict ourselves to path queries, question answering can be seen as a sequence transduction task (Graves, 2012; Sutskever et al., 2014) in which the input is text and the output is a series of relations. If we use RNNs as a decoder, our model would be able to handle non-commutative composition of relations, which the current weighted convolution cannot handle well. Another interesting connection to our work is that they take the maximum of the inner-product scores (see also Weston et al., 2013; Neelakantan et al., 2015b), which are computed along multiple paths connecting a pair of entities. Representing a set as a collection of vectors and taking the maximum over the inner-product scores is a natural way to represent a set of memory items. The Gaussian attention model we propose in this paper, however, has the advantage of differentiability and composability. ", + "bbox": [ + 174, + 472, + 825, + 638 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 666, + 318, + 681 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we have proposed the Gaussian attention model which can be used in a variety of contexts where we can assume that the distance between the memory items in the latent space is compatible with some notion of semantics. We have shown that the proposed Gaussian scoring function can be used for knowledge base embedding achieving competitive accuracy. We have also shown that our embedding model can naturally propagate uncertainty when we compose relations together. Our embedding model also benefits from compositional training proposed by Guu et al. (2015). Furthermore, we have demonstrated the power of the Gaussian attention model in a challenging question answering problem which involves both composition of relations and conjunction of queries. Future work includes experiments on natural question answering datasets and end-to-end training including the entity extractor. ", + "bbox": [ + 174, + 702, + 825, + 842 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 867, + 326, + 880 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The authors would like to thank Daniel Tarlow, Nate Kushman, and Kevin Gimpel for valuable discussions. ", + "bbox": [ + 174, + 895, + 821, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 118 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014. ", + "bbox": [ + 174, + 126, + 823, + 155 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Antoine Bordes, Jason Weston, Ronan Collobert, and Yoshua Bengio. Learning structured embeddings of knowledge bases. In Conference on Artificial Intelligence, number EPFL-CONF-192344, 2011. ", + "bbox": [ + 176, + 162, + 821, + 205 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko. Translating embeddings for modeling multi-relational data. In Advances in Neural Information Processing Systems, pp. 2787–2795, 2013. ", + "bbox": [ + 176, + 215, + 823, + 258 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Antoine Bordes, Jason Weston, and Nicolas Usunier. Open question answering with weakly supervised embedding models. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 165–180. Springer, 2014. ", + "bbox": [ + 174, + 267, + 823, + 311 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Antoine Bordes, Nicolas Usunier, Sumit Chopra, and Jason Weston. Large-scale simple question answering with memory networks. arXiv preprint arXiv:1506.02075, 2015. ", + "bbox": [ + 173, + 319, + 821, + 349 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network´ learning by exponential linear units (elus). arXiv preprint arXiv:1511.07289, 2015. ", + "bbox": [ + 174, + 357, + 820, + 387 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Graves. Sequence transduction with recurrent neural networks. arXiv preprint arXiv:1211.3711, 2012. ", + "bbox": [ + 173, + 396, + 825, + 425 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Graves, Greg Wayne, and Ivo Danihelka. Neural turing machines. arXiv preprint arXiv:1410.5401, 2014. ", + "bbox": [ + 173, + 434, + 826, + 463 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. In EMNLP 2015, 2015. ", + "bbox": [ + 173, + 472, + 823, + 502 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8): 1735–1780, 1997. ", + "bbox": [ + 173, + 511, + 823, + 540 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 549, + 823, + 578 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yujia Li, Daniel Tarlow, Marc Brockschmidt, and Richard Zemel. Gated graph sequence neural networks. arXiv preprint arXiv:1511.05493, 2015. ", + "bbox": [ + 174, + 587, + 823, + 616 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient estimation of word representations in vector space. arXiv preprint arXiv:1301.3781, 2013. ", + "bbox": [ + 174, + 625, + 823, + 655 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Arvind Neelakantan, Benjamin Roth, and Andrew McCallum. Compositional vector space models for knowledge base completion. arXiv preprint arXiv:1504.06662, 2015a. ", + "bbox": [ + 173, + 662, + 823, + 693 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Arvind Neelakantan, Jeevan Shankar, Alexandre Passos, and Andrew McCallum. Efficient non-parametric estimation of multiple embeddings per word in vector space. arXiv preprint arXiv:1504.06654, 2015b. ", + "bbox": [ + 173, + 700, + 823, + 743 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Maximilian Nickel, Volker Tresp, and Hans-Peter Kriegel. A three-way model for collective learning on multi-relational data. In Proceedings of the 28th international conference on machine learning (ICML-11), pp. 809–816, 2011. ", + "bbox": [ + 173, + 752, + 825, + 796 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Richard Socher, Danqi Chen, Christopher D Manning, and Andrew Ng. Reasoning with neural tensor networks for knowledge base completion. In Advances in Neural Information Processing Systems, pp. 926–934, 2013. ", + "bbox": [ + 173, + 805, + 823, + 848 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sainbayar Sukhbaatar, Jason Weston, Rob Fergus, et al. End-to-end memory networks. In Advances in neural information processing systems, pp. 2440–2448, 2015. ", + "bbox": [ + 173, + 857, + 821, + 887 + ], + "page_idx": 9 + }, + { + "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": [ + 173, + 895, + 820, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alan Mathison Turing. On computable numbers, with an application to the entscheidungsproblem: A correction. Proceedings of the London Mathematical Society, 2(1):544, 1938. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Luke Vilnis and Andrew McCallum. Word representations via gaussian embedding. arXiv preprint arXiv:1412.6623, 2014. ", + "bbox": [ + 173, + 141, + 823, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhen Wang, Jianwen Zhang, Jianlin Feng, and Zheng Chen. Knowledge graph embedding by translating on hyperplanes. In AAAI, pp. 1112–1119. Citeseer, 2014. ", + "bbox": [ + 173, + 178, + 821, + 208 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jason Weston, Ron J Weiss, and Hector Yee. Nonlinear latent factorization by embedding multiple user interests. In Proceedings of the 7th ACM conference on Recommender systems, pp. 65–68. ACM, 2013. ", + "bbox": [ + 173, + 215, + 823, + 258 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint arXiv:1410.3916, 2014. ", + "bbox": [ + 169, + 267, + 825, + 296 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jason D Williams, Eslam Kamal, Hani Amr Mokhtar Ashour, Jessica Miller, and Geoff Zweig. Fast and easy language understanding for dialog systems with microsoft language understanding intelligent service (LUIS). In 16th Annual Meeting of the Special Interest Group on Discourse and Dialogue, pp. 159, 2015. ", + "bbox": [ + 173, + 306, + 825, + 363 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A WORDCUP2014 DATASET ", + "text_level": 1, + "bbox": [ + 176, + 102, + 423, + 117 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/c76b54d069c446a577d193f3e4e7991307a9815e447eeaf69529984549fe539d.jpg", + "table_caption": [ + "Table 3: Sample atomic triplets. " + ], + "table_footnote": [], + "table_body": "
SubjectRelationObject
david_villaplays-for_countryspain
lionel_messiplays_in-clubfc_barcelona
antoine-griezmannplays-positionforward
cristiano_ronaldowears_number7
fulham_fcis_in_countryengland
lukas_podolskiis_aged29
", + "bbox": [ + 339, + 171, + 655, + 247 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/2745f1e997fc7c77d598f00975f60d1aef2225ce169b2b4d4728c20044684904.jpg", + "table_caption": [ + "Table 4: Statistics of the WorldCup2014 dataset. " + ], + "table_footnote": [], + "table_body": "
#entity# atomic relations# atomic triplets112763977
#relations (atomic and compositional) in path queries# question and answer pairs in path queries(train/validation/ test)125620/804/1579
# types of questions in conjunctive queries# question and answer pairs in conjunctive queries(train/validation/test )31564/224/420
size of vocabulary1781
", + "bbox": [ + 263, + 334, + 732, + 420 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/5c8936e2f39543c1538d4f7c684c5e78d08c0646e6073693b5ca4bc83415e80b.jpg", + "table_caption": [ + "Table 5: Templates of questions. In the table, (player), (club), (position) are placeholders of named entities with associated type. (country 1) is a placeholder for a country name while (country 2) is a placeholder for the adjectival form of a country. " + ], + "table_footnote": [], + "table_body": "
#Query templateQuestion template
1Finde ∈ε:((player),plays_in_club,e)is truewhich club does (player) play for ?which professional football team does (player) play for ?which football club does (player) play for ?
2Finde∈ε:(player),plays-position,e)is truewhat position does (player) play ?
3Find e ∈ε:(player),is-aged,e) is truehow old is (player) ?what is the age of (player) ?
4Finde∈ε:(player),wears_number,e) is truewhat is the jersey number of (player) ?what number does (player) wear ?
5Finde ∈ε:(player),plays_for_country,e) is truewhat is the nationality of (player) ?which national team does (player) play for ?which country is (player) from ?
6Finde∈ε:(club),is-in_country,e)is truewhich country is the soccer team (club) based in ?
7Finde ∈ε: (club),plays_in_club-1,e)is truename a player from (club) ?who plays at the soccer club (club) ?who is from the professional football team (club) ?who plays professionally at (club) ?
8Finde ∈ε:(country-1),plays_for-country-1,e)is truewhich player is from (country_1) ?name a player from (country-1) ?who is from (country-1) ?who plays for the (country_1) national football team ?
9Finde∈ε:(position),playsposition-,e)is truename a player who plays (position) ?who plays (position) ?
10Finde ∈ε:(cotry-1),sicountry-1,e)is truewhich soccer club is based in (country_1) ?name a soccer club in (country_1) ?
11Finde∈ε:(player),plays_in_club /is_in_country,e)is truewhich country does (player) play professionally in ?where is the football club that (player) plays for ?
12Finde ∈ε:(country-1),plays-for-country-1/plays_in_club,e)is truewhich professional football team do players from (country_1) play for ?name a soccer club that has a player from (country_1) ?which professional football team has a player from (country_1) ?
13Find e∈ ε:(position),plays-position-1,e) is true and((club),plays-in_club-1,e) is truewho plays (position) for (club)?who are the (position) at (club) ?name a (position) that plays for (club) ?
14Find e∈ε: (position),plays-position-1,e) is true and(country-l),plays-for-country-1,e)is truewho plays (position) for (country_1) ?who are the (position) on (country_1) national team ?name a (position) from (country-1) ?which (country_2) footballer plays (position) ?name a (country-2) (position) ?
15Find e∈ε:(club), plays_in_club-1,e) is true and(country_l),plays_for_country-1,e)is truewho are the (country_2) playersat (club)?which (country_2) footballer plays for (club) ?name a (country_2) player at (club) ?which player in (club) is from (country-1) ?
", + "bbox": [ + 173, + 505, + 864, + 909 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/1e08d92fcdcdcb4612cfc8a344544f32e1c03b71996f84931a70e6d731e7a783.jpg", + "table_caption": [ + "Table 6: (Composed) relations and sample questions in path queries. " + ], + "table_footnote": [], + "table_body": "
#RelationTypeSample questionSample answer
1plays_in_clubmany-to-onewhich club doesalan pulido play for ?which professional footbal team does klaas jan huntelar play for ?tigres_uanlfc_schalke_04
2plays-positionmany-to-onewhat position does gonzalo higuain play ?ssc_napoli
3is_agedmany-to-onehow old is samuel etoo ?what is the age of luis suarez ?3
4wears-numbermany-to-onewhat is the jersey number of mario balotelli ?what number does shinji okazaki wear ?
5plays_for_countrymany-to-onewhich country is thomas mueller from ?what is the nationality of helder postiga ?germanyportugal
6is.in_countrymany-to-onewhich country is the soccer team fc porto based in ?portugal
7plays_in_club-1one-to-manywho playsprofessionally at liverpool fc ?name a player from as roma ?steven_gerrardmiralem_pjanic
8plays-for_country-1one-to-manywhich player is from iran ?name a player from italy ?masoud_shojaeidaniele_de_rossi
9plays-position-1one-to-manyname a player who plays goalkeeper ?who plays forward ?gianluiqi-buffonraul_jimenez
10is_in-country-1one-to-manywhich soccer club is based in mexico ?name a soccer club in australia ?cruz_azul.fcmelbourne_victory_fc
11plays_in_club /is_in_countrymany-to-onewhere is the club that edin dzeko plays for ?which country does sime vrsaljko play professionally in ?englanditaly
12plays-for_country-1/plays_in_clubmany-to-manyname a soccer club that has a player from australia?name a soccer club that has a player from spain ?crystal_palace_fcfc_barcelona
", + "bbox": [ + 173, + 127, + 882, + 339 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/612204b4a493e4e6ad7548f7a46ce07e9418c499cd0449151d472e0148446f5f.jpg", + "table_caption": [ + "Table 7: Conjunctive queries and sample questions. " + ], + "table_footnote": [], + "table_body": "
#RelationsSample questionsEntities in questionsSampleanswer
13plays_position-1 and plays_in_club-1who plays forward for fc barcelona ? who are the midfielders at fc bayern muenchen ?forward,fc_barcelona midfielder,fc_bayern_muenchenlionel_messi toni_kroos
14plays-position -1 andwho are the defenders on german national team ? which mexican footballer plays forward ?defender,germany defender,mexicoper_mertesacker raul-jimenez
15plays_in_club-1 and plays_for_country -1which player in paris saint-germain fc is from argentina ? who are the korean players at beijing guoan ?paris_saint-germain_fc,argentina beijing-guoan,koreaezequiel_lavezzi ha-daesung
", + "bbox": [ + 174, + 378, + 936, + 472 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B TRANSGAUSSIAN EMBEDDING OF WORLDCUP2014 ", + "text_level": 1, + "bbox": [ + 176, + 496, + 640, + 512 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We trained our TransGaussian model on triplets and paths from WorldCup2014 dataset and illustrated the embeddings in Fig 3 and 4. Recall that we modeled every relation as a Gaussian with diagonal covariance matrix. Fig 3 shows the learned variance parameters of different relations. Each row corresponds to the variances of one relation. Columns are permuted to reveal the block structure. From this figure, we can see that every relation has a small variance in two or more dimensions. This implies that the coordinates of the embedding space are partitioned into semantically coherent clusters each of which represent a particular attribute of a player (or a football club). To verify this further, we picked the two coordinates in which a relation (e.g. plays position) has the least variance and projected the embedding of all valid subjects and objects (e.g. players and positions) of the relation to this 2 dimensional subspace. See Fig. 4. The relation between the subjects and the objects are simply translation in the projection when the corresponding subspace is two dimensional (e.g., plays position relation in Fig. 4 (a)). The same is true for other relations that requires larger dimension but it is more challenging to visualize in two dimensions. For relations that have a large number of unique objects, we only plotted for the eight objects with the most subjects for clarity of illustration. ", + "bbox": [ + 173, + 529, + 825, + 736 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Furthermore, in order to elucidate whether we are limited by the capacity of the TransGaussian embedding or the ability to decode question expressed in natural language, we evaluated the test question-answer pairs using the TransGaussian embedding composed according to the ground-truth relations and entities. The results were evaluated with the same metrics as in Sec. 4.3. This estimation is conducted for TransE embeddings as well. See Table 8 for the results. Compared to Table 2, the accuracy of TransGaussian (COMP) is higher on the atomic relations and path queries but lower on conjunctive queries. This is natural because when the query is simple there is not much room for the question-answering network to improve upon just combining the relations according to the ground truth relations, whereas when the query is complex the network could combine the embedding in a more creative way to overcome its limitation. In fact, the two queries (#10 and #12) that TransGaussian (COMP) did not perform well in Table 2 pertain to a single relation is in country−1 (#10) and a composition of two relations plays for country $^ - 1 \\ /$ plays in club (#12). The performance of the two queries were low even when the ground truth ", + "bbox": [ + 174, + 743, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg", + "image_caption": [ + "Figure 3: Variance of each relation. Each row shows the diagonal values in the variance matrix associated with a relation. Columns are permuted to reveal the block structure. " + ], + "image_footnote": [], + "bbox": [ + 246, + 107, + 764, + 246 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 8: Evaluation of embeddings. We evaluate the embeddings by feeding the correct entities and relations from a path or conjunctive query to an embedding model and using its scoring function to retrieve the answers from the embedded knowledge base. ", + "bbox": [ + 176, + 314, + 825, + 357 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/f2970bb498a60bf534378d87a96f1fde36b1c3928165c2aa77b7ca5bb4d95eef.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#RelationH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1plays.in.club75.541.3893.481.0999.861.0098.511.02
2plays-position96.331.0494.021.0998.371.02100.001.00
3is_aged55.031.6991.441.1296.881.03100.001.00
4wears_number38.862.0978.671.3295.921.04100.001.00
5plays_for_country71.601.3994.841.1099.321.01100.001.00
6is_in_country98.321.0399.661.0099.331.01100.001.00
7plays_in_club-187.501.4683.421.4594.701.0797.421.03
882.471.6868.213.3725.275.6698.781.02
9plays-position-1100.001.0075.541.6013.5924.3598.781.02
10is_in-country-123.1126.9223.4823.278.32130.5919.4183.61
11plays_in_club/is_in-country20.247.0558.291.9846.882.9980.161.38
12plays-for_country -1/plays-in_club25.3222.2727.7310.0419.0435.5920.1533.01
Overall(Path relations) plays-position-164.645.0975.023.5967.2214.8786.738.79
13and plays-in_club-1 plays-position91.851.2069.971.8277.451.8395.381.06
14and plays_in_club =T91.711.2366.712.8551.494.8897.831.05
15and is_in_country -188.591.2073.37 70.021.80 2.1683.421.3494.701.08
Overall (Conj.relations)90.721.2170.792.6895.971.06
", + "bbox": [ + 173, + 366, + 861, + 657 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "relations were given, which indicates that the TransGaussian embedding rather than the questionanswering network is the limiting factor. ", + "bbox": [ + 173, + 685, + 823, + 713 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C KNOWLEDGE BASE COMPLETION ", + "text_level": 1, + "bbox": [ + 176, + 737, + 482, + 752 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Knowledge base completion has been a common task for testing knowledge base models on their ability of generalizing to unseen facts. Here, we apply our TransGaussian model to a knowledge completion task and show that it has competitive performance. ", + "bbox": [ + 174, + 770, + 825, + 811 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We tested on the subset of WordNet released by Guu et al. (2015). The atomic triplets in this dataset was originally created by Socher et al. (2013) and Guu et al. (2015) added path queries that were randomly sampled from the knowledge graph. We build our TransGaussian model by training on these triplets and paths and tested our model on the same link prediction task as done by Socher et al. (2013); Guu et al. (2015). ", + "bbox": [ + 174, + 818, + 825, + 888 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "As done by Guu et al. (2015), we trained TransGaussian (SINGLE) with atomic triplets only and trained TransGaussian (COMP) with the union of atomic triplets and paths. We did not incorporate word embedding in this task and each entity is assigned its individual vector. Without getting parameters tuned too much, TransGaussian (COMP) obtained accuracy comparable to TransE (COMP). See Table 11. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg", + "image_caption": [ + "Figure 4: TransGaussian entity embeddings. Crosses are the subjects and circles are the objects of a relation. Specifically, crosses are players in (a)-(e) and professional football clubs in (f). " + ], + "image_footnote": [], + "bbox": [ + 174, + 97, + 875, + 704 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 775, + 826, + 818 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/5fbe82f533094c85145ea099106cb95991607d24b32e7ddd6a941002c8b6ab14.jpg", + "table_caption": [ + "Table 9: Experimental results of path queries on WorldCup2014. " + ], + "table_footnote": [], + "table_body": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Relation and sample questionMean H@1(%)Filtered RankH@1(%)Mean Filtered RankMean H@1(%) Filtered RankH@1(%)Mean Filtered Rank
1plays.in_club (which club does alan pulido play for?)90.60 1.1292.621.1196.64 1.0397.991.03
2plays-position (what position does gonzalo higuain play?)100.00 1.0098.111.0298.74 1.01100.001.00
3is_aged (how old is samuel etoo?)81.58 1.3092.111.1096.05 1.04100.001.00
4wears_number (what is the jersey number of mario balotelli?)44.29 1.8885.711.1996.43 1.04100.001.00
5plays-for-country (which country is thomas mueller from ?)97.60 1.0294.401.1198.40 1.0299.201.01
6is_in.country (which country is the soccer team fc porto based in ?)98.48 1.0298.481.0293.94 1.0898.481.02
7plays_in_club-1 (who plays professionally at liverpool fc?)95.12 1.0886.991.3896.75 1.0396.751.03
8plays_for_country (which player is from iran?)81.16 1.6172.462.3640.58 3.1993.241.48
9plays-position (name a player who plays goalkeeper?)100.00 1.0030.212.3055.21 5.0985.421.15
10is.in_country (which soccer club is based in mexico?)24.58 11.4723.7310.075.08 9.1817.8020.10
11plays_in_club/is_in_country (where is the club that edin dzeko plays for ?)48.68 4.2462.502.0748.03 2.4176.971.50
12plays-for-country-1/plays-in-club (name a soccer club that hasaplayer from australia ?)34.78 9.4930.4311.266.52 9.8816.3020.27
Overall74.92 2.8074.352.7170.172.82 84.423.68
", + "bbox": [ + 173, + 176, + 843, + 435 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/7b7cb14ec66eecc7d5221dbaa3b070d4c63fcafe7839f8dbcf502bea0dd90dc7.jpg", + "table_caption": [ + "Table 10: Experimental results of conjunctive queries on WorldCup2014. " + ], + "table_footnote": [], + "table_body": "
TransE(SINGLE)TransE(COMP)TransGaussian(SINGLE)TransGaussian(COMP)
#Relation and sample questionMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRank
13(who plays forward for fc barcelona?)94.48 1.1071.17 1.7787.12 1.3798.77 1.02
14plays-position-and plays-for-country-1(who are the defenders on german national team?)95.93 1.0876.42 2.5064.23 2.02100.00 1.00
15plays_in_club-1andis_in_country(which player in ssc napoli is from argentina?)91.79 1.1375.37 1.7588.06 1.3794.03 1.07
Overall94.05 1.1174.05 1.9780.71 1.5697.62 1.03
", + "bbox": [ + 173, + 568, + 861, + 681 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/8c2970ab69ca1c6706d4e79cc365694d00042fea242c32f6fb606982bd74807e.jpg", + "table_caption": [ + "Table 11: Accuracy of knowledge base completion on WordNet. " + ], + "table_footnote": [], + "table_body": "
ModelAccuracy (%)
TransE (SINGLE)68.5
TransE (COMP)80.3
TransGaussian (SINGLE)58.4
TransGaussian (COMP)76.4
", + "bbox": [ + 383, + 814, + 611, + 872 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/ByC7ww9le/ByC7ww9le_middle.json b/parse/train/ByC7ww9le/ByC7ww9le_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..9f9adb12a009fbf8142712b8f03b682219a8ba0f --- /dev/null +++ b/parse/train/ByC7ww9le/ByC7ww9le_middle.json @@ -0,0 +1,36674 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "GAUSSIAN ATTENTION MODEL AND ITS APPLICATION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 96, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 104, + 96, + 505, + 120 + ], + "score": 1.0, + "content": "TO KNOWLEDGE BASE EMBEDDING AND QUESTION", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 119, + 202, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 202, + 137 + ], + "score": 1.0, + "content": "ANSWERING", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 155, + 247, + 210 + ], + "lines": [ + { + "bbox": [ + 111, + 153, + 173, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 153, + 173, + 169 + ], + "score": 1.0, + "content": "Liwen Zhang", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 165, + 248, + 179 + ], + "spans": [ + { + "bbox": [ + 111, + 165, + 248, + 179 + ], + "score": 1.0, + "content": "Department of Computer Science", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 177, + 204, + 190 + ], + "spans": [ + { + "bbox": [ + 111, + 177, + 204, + 190 + ], + "score": 1.0, + "content": "University of Chicago", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 188, + 215, + 200 + ], + "spans": [ + { + "bbox": [ + 111, + 188, + 215, + 200 + ], + "score": 1.0, + "content": "Chicago, IL 60637, USA", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 112, + 199, + 246, + 212 + ], + "spans": [ + { + "bbox": [ + 112, + 199, + 246, + 212 + ], + "score": 1.0, + "content": "liwenz@cs.uchicago.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 295, + 155, + 462, + 200 + ], + "lines": [ + { + "bbox": [ + 294, + 155, + 422, + 167 + ], + "spans": [ + { + "bbox": [ + 294, + 155, + 422, + 167 + ], + "score": 1.0, + "content": "John Winn & Ryota Tomioka", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 293, + 164, + 422, + 178 + ], + "spans": [ + { + "bbox": [ + 293, + 164, + 422, + 178 + ], + "score": 1.0, + "content": "Microsoft Research Cambridge", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 294, + 177, + 403, + 189 + ], + "spans": [ + { + "bbox": [ + 294, + 177, + 403, + 189 + ], + "score": 1.0, + "content": "Cambridge, CB1 2FB, UK", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 295, + 188, + 462, + 201 + ], + "spans": [ + { + "bbox": [ + 295, + 188, + 462, + 201 + ], + "score": 1.0, + "content": "{jwinn, ryoto}@microsoft.com", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 278, + 239, + 333, + 251 + ], + "lines": [ + { + "bbox": [ + 276, + 238, + 336, + 253 + ], + "spans": [ + { + "bbox": [ + 276, + 238, + 336, + 253 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 143, + 268, + 468, + 400 + ], + "lines": [ + { + "bbox": [ + 142, + 268, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 142, + 268, + 469, + 281 + ], + "score": 1.0, + "content": "We propose the Gaussian attention model for content-based neural memory ac-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 280, + 469, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 469, + 291 + ], + "score": 1.0, + "content": "cess. With the proposed attention model, a neural network has the additional", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 291, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 142, + 291, + 469, + 303 + ], + "score": 1.0, + "content": "degree of freedom to control the focus of its attention from a laser sharp attention", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "score": 1.0, + "content": "to a broad attention. It is applicable whenever we can assume that the distance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "score": 1.0, + "content": "in the latent space reflects some notion of semantics. We use the proposed atten-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 323, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 470, + 336 + ], + "score": 1.0, + "content": "tion model as a scoring function for the embedding of a knowledge base into a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "score": 1.0, + "content": "continuous vector space and then train a model that performs question answering", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 345, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 358 + ], + "score": 1.0, + "content": "about the entities in the knowledge base. The proposed attention model can han-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "dle both the propagation of uncertainty when following a series of relations and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "score": 1.0, + "content": "also the conjunction of conditions in a natural way. On a dataset of soccer players", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "score": 1.0, + "content": "who participated in the FIFA World Cup 2014, we demonstrate that our model can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 389, + 362, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 362, + 402 + ], + "score": 1.0, + "content": "handle both path queries and conjunctive queries well.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 432, + 206, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 431, + 208, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 208, + 448 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 107, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 107, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "There is a growing interest in incorporating external memory into neural networks. For example,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 486 + ], + "score": 1.0, + "content": "memory networks (Weston et al., 2014; Sukhbaatar et al., 2015) are equipped with static memory", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "slots that are content or location addressable. Neural Turing machines (Graves et al., 2014) imple-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "ment memory slots that can be read and written as in Turing machines (Turing, 1938) but through", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 505, + 250, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 250, + 518 + ], + "score": 1.0, + "content": "differentiable attention mechanism.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "Each memory slot in these models stores a vector corresponding to a continuous representation of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 534, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 504, + 546 + ], + "score": 1.0, + "content": "the memory content. In order to recall a piece of information stored in memory, attention is typically", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "employed. Attention mechanism introduced by Bahdanau et al. (2014) uses a network that outputs", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "a discrete probability mass over memory items. A memory read can be implemented as a weighted", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 566, + 507, + 580 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 507, + 580 + ], + "score": 1.0, + "content": "sum of the memory vectors in which the weights are given by the attention network. Reading out a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "single item can be realized as a special case in which the output of the attention network is peaked", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "at the desired item. The attention network may depend on the current context as well as the memory", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "item itself. The attention model is called location-based and content-based, if it depends on the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 377, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 377, + 623 + ], + "score": 1.0, + "content": "location in the memory and the stored memory vector, respectively.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 627, + 503, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Knowledge bases, such as WordNet and Freebase, can also be stored in memory either through an", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "explicit knowledge base embedding (Bordes et al., 2011; Nickel et al., 2011; Socher et al., 2013) or", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 649, + 320, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 320, + 661 + ], + "score": 1.0, + "content": "through a feedforward network (Bordes et al., 2015).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 677 + ], + "score": 1.0, + "content": "When we embed entities from a knowledge base in a continuous vector space, if the capacity of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "the embedding model is appropriately controlled, we expect semantically similar entities to be close", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "to each other, which will allow the model to generalize to unseen facts. However the notion of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "proximity may strongly depend on the type of a relation. For example, Benjamin Franklin was an", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "engineer but also a politician. We would need different metrics to capture his proximity to other", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 721, + 256, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 256, + 733 + ], + "score": 1.0, + "content": "engineers and politicians of his time.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "GAUSSIAN ATTENTION MODEL AND ITS APPLICATION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 96, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 104, + 96, + 505, + 120 + ], + "score": 1.0, + "content": "TO KNOWLEDGE BASE EMBEDDING AND QUESTION", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 119, + 202, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 202, + 137 + ], + "score": 1.0, + "content": "ANSWERING", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 155, + 247, + 210 + ], + "lines": [ + { + "bbox": [ + 111, + 153, + 173, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 153, + 173, + 169 + ], + "score": 1.0, + "content": "Liwen Zhang", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 165, + 248, + 179 + ], + "spans": [ + { + "bbox": [ + 111, + 165, + 248, + 179 + ], + "score": 1.0, + "content": "Department of Computer Science", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 177, + 204, + 190 + ], + "spans": [ + { + "bbox": [ + 111, + 177, + 204, + 190 + ], + "score": 1.0, + "content": "University of Chicago", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 188, + 215, + 200 + ], + "spans": [ + { + "bbox": [ + 111, + 188, + 215, + 200 + ], + "score": 1.0, + "content": "Chicago, IL 60637, USA", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 112, + 199, + 246, + 212 + ], + "spans": [ + { + "bbox": [ + 112, + 199, + 246, + 212 + ], + "score": 1.0, + "content": "liwenz@cs.uchicago.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 111, + 153, + 248, + 212 + ] + }, + { + "type": "text", + "bbox": [ + 295, + 155, + 462, + 200 + ], + "lines": [ + { + "bbox": [ + 294, + 155, + 422, + 167 + ], + "spans": [ + { + "bbox": [ + 294, + 155, + 422, + 167 + ], + "score": 1.0, + "content": "John Winn & Ryota Tomioka", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 293, + 164, + 422, + 178 + ], + "spans": [ + { + "bbox": [ + 293, + 164, + 422, + 178 + ], + "score": 1.0, + "content": "Microsoft Research Cambridge", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 294, + 177, + 403, + 189 + ], + "spans": [ + { + "bbox": [ + 294, + 177, + 403, + 189 + ], + "score": 1.0, + "content": "Cambridge, CB1 2FB, UK", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 295, + 188, + 462, + 201 + ], + "spans": [ + { + "bbox": [ + 295, + 188, + 462, + 201 + ], + "score": 1.0, + "content": "{jwinn, ryoto}@microsoft.com", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 293, + 155, + 462, + 201 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 239, + 333, + 251 + ], + "lines": [ + { + "bbox": [ + 276, + 238, + 336, + 253 + ], + "spans": [ + { + "bbox": [ + 276, + 238, + 336, + 253 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 143, + 268, + 468, + 400 + ], + "lines": [ + { + "bbox": [ + 142, + 268, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 142, + 268, + 469, + 281 + ], + "score": 1.0, + "content": "We propose the Gaussian attention model for content-based neural memory ac-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 280, + 469, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 469, + 291 + ], + "score": 1.0, + "content": "cess. With the proposed attention model, a neural network has the additional", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 291, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 142, + 291, + 469, + 303 + ], + "score": 1.0, + "content": "degree of freedom to control the focus of its attention from a laser sharp attention", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "score": 1.0, + "content": "to a broad attention. It is applicable whenever we can assume that the distance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "score": 1.0, + "content": "in the latent space reflects some notion of semantics. We use the proposed atten-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 323, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 470, + 336 + ], + "score": 1.0, + "content": "tion model as a scoring function for the embedding of a knowledge base into a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "score": 1.0, + "content": "continuous vector space and then train a model that performs question answering", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 345, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 358 + ], + "score": 1.0, + "content": "about the entities in the knowledge base. The proposed attention model can han-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "dle both the propagation of uncertainty when following a series of relations and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 380 + ], + "score": 1.0, + "content": "also the conjunction of conditions in a natural way. On a dataset of soccer players", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "score": 1.0, + "content": "who participated in the FIFA World Cup 2014, we demonstrate that our model can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 389, + 362, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 362, + 402 + ], + "score": 1.0, + "content": "handle both path queries and conjunctive queries well.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5, + "bbox_fs": [ + 141, + 268, + 470, + 402 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 432, + 206, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 431, + 208, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 208, + 448 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 107, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 107, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "There is a growing interest in incorporating external memory into neural networks. For example,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 486 + ], + "score": 1.0, + "content": "memory networks (Weston et al., 2014; Sukhbaatar et al., 2015) are equipped with static memory", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "slots that are content or location addressable. Neural Turing machines (Graves et al., 2014) imple-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "ment memory slots that can be read and written as in Turing machines (Turing, 1938) but through", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 505, + 250, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 250, + 518 + ], + "score": 1.0, + "content": "differentiable attention mechanism.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 462, + 506, + 518 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "Each memory slot in these models stores a vector corresponding to a continuous representation of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 534, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 504, + 546 + ], + "score": 1.0, + "content": "the memory content. In order to recall a piece of information stored in memory, attention is typically", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "employed. Attention mechanism introduced by Bahdanau et al. (2014) uses a network that outputs", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "a discrete probability mass over memory items. A memory read can be implemented as a weighted", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 566, + 507, + 580 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 507, + 580 + ], + "score": 1.0, + "content": "sum of the memory vectors in which the weights are given by the attention network. Reading out a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "single item can be realized as a special case in which the output of the attention network is peaked", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "at the desired item. The attention network may depend on the current context as well as the memory", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "item itself. The attention model is called location-based and content-based, if it depends on the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 377, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 377, + 623 + ], + "score": 1.0, + "content": "location in the memory and the stored memory vector, respectively.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 522, + 507, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 627, + 503, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Knowledge bases, such as WordNet and Freebase, can also be stored in memory either through an", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "explicit knowledge base embedding (Bordes et al., 2011; Nickel et al., 2011; Socher et al., 2013) or", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 649, + 320, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 320, + 661 + ], + "score": 1.0, + "content": "through a feedforward network (Bordes et al., 2015).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 626, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 677 + ], + "score": 1.0, + "content": "When we embed entities from a knowledge base in a continuous vector space, if the capacity of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "the embedding model is appropriately controlled, we expect semantically similar entities to be close", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "to each other, which will allow the model to generalize to unseen facts. However the notion of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "proximity may strongly depend on the type of a relation. For example, Benjamin Franklin was an", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "engineer but also a politician. We would need different metrics to capture his proximity to other", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 721, + 256, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 256, + 733 + ], + "score": 1.0, + "content": "engineers and politicians of his time.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 206, + 77, + 405, + 145 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 206, + 77, + 405, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 77, + 405, + 145 + ], + "spans": [ + { + "bbox": [ + 206, + 77, + 405, + 145 + ], + "score": 0.931, + "type": "image", + "image_path": "cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 206, + 77, + 405, + 90.6 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 206, + 90.6, + 405, + 104.19999999999999 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 206, + 104.19999999999999, + 405, + 117.79999999999998 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 206, + 117.79999999999998, + 405, + 131.39999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 206, + 131.39999999999998, + 405, + 144.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 154, + 505, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Figure 1: Comparison of the conventional content-based attention model using inner product and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 466, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 466, + 177 + ], + "score": 1.0, + "content": "the proposed Gaussian attention model with the same mean but two different covariances.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "In this paper, we propose a new attention model for content-based addressing. Our model scores", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 225, + 497, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 147, + 237 + ], + "score": 1.0, + "content": "each item", + "type": "text" + }, + { + "bbox": [ + 147, + 227, + 172, + 236 + ], + "score": 0.9, + "content": "{ \\pmb { v } } _ { \\mathrm { i t e m } }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 225, + 497, + 237 + ], + "score": 1.0, + "content": "in the memory by the (logarithm of) multivariate Gaussian likelihood as follows:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 252, + 465, + 293 + ], + "lines": [ + { + "bbox": [ + 146, + 252, + 465, + 293 + ], + "spans": [ + { + "bbox": [ + 146, + 252, + 465, + 293 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { \\mathrm { i t e m } } ) = \\log \\phi ( \\pmb { v } _ { \\mathrm { i t e m } } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) } \\\\ & { \\qquad = - \\frac { 1 } { 2 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ^ { - 1 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) + \\mathrm { c o n s t . } } \\end{array}", + "type": "interline_equation", + "image_path": "35303e12d200b6ebe304e88c74e84013ec500365fb64381d5e4d7d6f620b9df6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 146, + 252, + 465, + 265.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 146, + 265.6666666666667, + 465, + 279.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 146, + 279.33333333333337, + 465, + 293.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 307, + 503, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "where context denotes all the variables that the attention depends on. For example, “American", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 173, + 330 + ], + "score": 1.0, + "content": "engineers in the", + "type": "text" + }, + { + "bbox": [ + 173, + 318, + 192, + 329 + ], + "score": 0.25, + "content": "1 8 \\mathrm { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "century” or “American politicians in the 18th century” would be two contexts", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 328, + 458, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 458, + 342 + ], + "score": 1.0, + "content": "that include Benjamin Franklin but the two attentions would have very different shapes.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "Compared to the (normalized) inner product used in previous work (Sukhbaatar et al., 2015; Graves", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "et al., 2014) for content-based addressing, the Gaussian model has the additional control of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "spread of the attention over items in the memory. As we show in Figure 1, we can view the conven-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "score": 1.0, + "content": "tional inner-product-based attention and the proposed Gaussian attention as addressing by an affine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "energy function and a quadratic energy function, respectively. By making the addressing mechanism", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "more complex, we may represent many entities in a relatively low dimensional embedding space.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "Since knowledge bases are typically extremely sparse, it is more likely that we can afford to have a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 424, + 372, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 372, + 435 + ], + "score": 1.0, + "content": "more complex attention model than a large embedding dimension.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "We apply the proposed Gaussian attention model to question answering based on knowledge bases.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "At the high-level, the goal of the task is to learn the mapping from a question about objects in the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "score": 1.0, + "content": "knowledge base in natural language to a probability distribution over the entities. We use the scoring", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "function (1) for both embedding the entities as vectors, and extracting the conditions mentioned in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 484, + 480, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 480, + 496 + ], + "score": 1.0, + "content": "the question and taking a conjunction of them to score each candidate answer to the question.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "The ability to compactly represent a set of objects makes the Gaussian attention model well suited for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "representing the uncertainty in a multiple-answer question (e.g., “who are the children of Abraham", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "Lincoln?”). Moreover, traversal over the knowledge graph (see Guu et al., 2015) can be naturally", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "handled by a series of Gaussian convolutions, which generalizes the addition of vectors. In fact, we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "model each relation as a Gaussian with mean and variance parameters. Thus a traversal on a relation", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 555, + 388, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 388, + 568 + ], + "score": 1.0, + "content": "corresponds to a translation in the mean and addition of the variances.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "The proposed question answering model is able to handle not only the case where the answer to a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "question is associated with an atomic fact, which is called simple Q&A (Bordes et al., 2015), but also", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "questions that require composition of relations (path queries in Guu et al. (2015)) and conjunction of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "queries. An example flow of how our model deals with a question “Who plays forward for Borussia", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 616, + 296, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 296, + 628 + ], + "score": 1.0, + "content": "Dortmund?” is shown in Figure 2 in Section 3.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "This paper is structured as follows. In Section 2, we describe how the Gaussian scoring function", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "(1) can be used to embed the entities in a knowledge base into a continuous vector space. We call", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 654, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 504, + 667 + ], + "score": 1.0, + "content": "our model TransGaussian because of its similarity to the TransE model proposed by Bordes et al.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "(2013). Then in Section 3, we describe our question answering model. In Section 4, we carry out", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "experiments on WorldCup2014 dataset we collected. The dataset is relatively small but it allows us", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "to evaluate not only simple questions but also path queries and conjunction of queries. The proposed", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "TransGaussian embedding with the question answering model achieves significantly higher accuracy", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "than the vanilla TransE embedding or TransE trained with compositional relations Guu et al. (2015)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 316, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 316, + 733 + ], + "score": 1.0, + "content": "combined with the same question answering model.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 206, + 77, + 405, + 145 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 206, + 77, + 405, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 77, + 405, + 145 + ], + "spans": [ + { + "bbox": [ + 206, + 77, + 405, + 145 + ], + "score": 0.931, + "type": "image", + "image_path": "cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 206, + 77, + 405, + 90.6 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 206, + 90.6, + 405, + 104.19999999999999 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 206, + 104.19999999999999, + 405, + 117.79999999999998 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 206, + 117.79999999999998, + 405, + 131.39999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 206, + 131.39999999999998, + 405, + 144.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 154, + 505, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Figure 1: Comparison of the conventional content-based attention model using inner product and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 466, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 466, + 177 + ], + "score": 1.0, + "content": "the proposed Gaussian attention model with the same mean but two different covariances.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "In this paper, we propose a new attention model for content-based addressing. Our model scores", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 225, + 497, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 147, + 237 + ], + "score": 1.0, + "content": "each item", + "type": "text" + }, + { + "bbox": [ + 147, + 227, + 172, + 236 + ], + "score": 0.9, + "content": "{ \\pmb { v } } _ { \\mathrm { i t e m } }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 225, + 497, + 237 + ], + "score": 1.0, + "content": "in the memory by the (logarithm of) multivariate Gaussian likelihood as follows:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 213, + 505, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 252, + 465, + 293 + ], + "lines": [ + { + "bbox": [ + 146, + 252, + 465, + 293 + ], + "spans": [ + { + "bbox": [ + 146, + 252, + 465, + 293 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { \\mathrm { i t e m } } ) = \\log \\phi ( \\pmb { v } _ { \\mathrm { i t e m } } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) } \\\\ & { \\qquad = - \\frac { 1 } { 2 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ^ { - 1 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) + \\mathrm { c o n s t . } } \\end{array}", + "type": "interline_equation", + "image_path": "35303e12d200b6ebe304e88c74e84013ec500365fb64381d5e4d7d6f620b9df6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 146, + 252, + 465, + 265.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 146, + 265.6666666666667, + 465, + 279.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 146, + 279.33333333333337, + 465, + 293.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 307, + 503, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "where context denotes all the variables that the attention depends on. For example, “American", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 173, + 330 + ], + "score": 1.0, + "content": "engineers in the", + "type": "text" + }, + { + "bbox": [ + 173, + 318, + 192, + 329 + ], + "score": 0.25, + "content": "1 8 \\mathrm { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "century” or “American politicians in the 18th century” would be two contexts", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 328, + 458, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 458, + 342 + ], + "score": 1.0, + "content": "that include Benjamin Franklin but the two attentions would have very different shapes.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 307, + 505, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "Compared to the (normalized) inner product used in previous work (Sukhbaatar et al., 2015; Graves", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "et al., 2014) for content-based addressing, the Gaussian model has the additional control of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "spread of the attention over items in the memory. As we show in Figure 1, we can view the conven-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "score": 1.0, + "content": "tional inner-product-based attention and the proposed Gaussian attention as addressing by an affine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "energy function and a quadratic energy function, respectively. By making the addressing mechanism", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "more complex, we may represent many entities in a relatively low dimensional embedding space.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "Since knowledge bases are typically extremely sparse, it is more likely that we can afford to have a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 424, + 372, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 372, + 435 + ], + "score": 1.0, + "content": "more complex attention model than a large embedding dimension.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 346, + 506, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "We apply the proposed Gaussian attention model to question answering based on knowledge bases.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "At the high-level, the goal of the task is to learn the mapping from a question about objects in the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 476 + ], + "score": 1.0, + "content": "knowledge base in natural language to a probability distribution over the entities. We use the scoring", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "function (1) for both embedding the entities as vectors, and extracting the conditions mentioned in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 484, + 480, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 480, + 496 + ], + "score": 1.0, + "content": "the question and taking a conjunction of them to score each candidate answer to the question.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 439, + 506, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "The ability to compactly represent a set of objects makes the Gaussian attention model well suited for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "representing the uncertainty in a multiple-answer question (e.g., “who are the children of Abraham", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "Lincoln?”). Moreover, traversal over the knowledge graph (see Guu et al., 2015) can be naturally", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "handled by a series of Gaussian convolutions, which generalizes the addition of vectors. In fact, we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "model each relation as a Gaussian with mean and variance parameters. Thus a traversal on a relation", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 555, + 388, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 388, + 568 + ], + "score": 1.0, + "content": "corresponds to a translation in the mean and addition of the variances.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 500, + 506, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "The proposed question answering model is able to handle not only the case where the answer to a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "question is associated with an atomic fact, which is called simple Q&A (Bordes et al., 2015), but also", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "questions that require composition of relations (path queries in Guu et al. (2015)) and conjunction of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "queries. An example flow of how our model deals with a question “Who plays forward for Borussia", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 616, + 296, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 296, + 628 + ], + "score": 1.0, + "content": "Dortmund?” is shown in Figure 2 in Section 3.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 572, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "This paper is structured as follows. In Section 2, we describe how the Gaussian scoring function", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "(1) can be used to embed the entities in a knowledge base into a continuous vector space. We call", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 654, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 504, + 667 + ], + "score": 1.0, + "content": "our model TransGaussian because of its similarity to the TransE model proposed by Bordes et al.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "(2013). Then in Section 3, we describe our question answering model. In Section 4, we carry out", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "experiments on WorldCup2014 dataset we collected. The dataset is relatively small but it allows us", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "to evaluate not only simple questions but also path queries and conjunction of queries. The proposed", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "TransGaussian embedding with the question answering model achieves significantly higher accuracy", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "than the vanilla TransE embedding or TransE trained with compositional relations Guu et al. (2015)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 316, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 316, + 733 + ], + "score": 1.0, + "content": "combined with the same question answering model.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 632, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 291, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 292, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 292, + 96 + ], + "score": 1.0, + "content": "2 KNOWLEDGE BASE EMBEDDING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "In this section, we describe the proposed TransGaussian model based on the Gaussian attention", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "model (1). While it is possible to train a network that computes the embedding in a single pass", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "(Bordes et al., 2015) or over multiple passes (Li et al., 2015), it is more efficient to offload the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 477, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 477, + 151 + ], + "score": 1.0, + "content": "embedding as a separate step for question answering based on a large static knowledge base.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 163, + 260, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 262, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 262, + 176 + ], + "score": 1.0, + "content": "2.1 THE TRANSGAUSSIAN MODEL", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 124, + 196 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 184, + 132, + 194 + ], + "score": 0.74, + "content": "\\mathcal { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 183, + 249, + 196 + ], + "score": 1.0, + "content": "be the set of entities and", + "type": "text" + }, + { + "bbox": [ + 250, + 185, + 260, + 194 + ], + "score": 0.82, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "be the set of relations. A knowledge base is a collec-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 194, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 173, + 207 + ], + "score": 1.0, + "content": "tion of triplets", + "type": "text" + }, + { + "bbox": [ + 173, + 195, + 204, + 207 + ], + "score": 0.92, + "content": "( s , r , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 194, + 276, + 207 + ], + "score": 1.0, + "content": ", where we call", + "type": "text" + }, + { + "bbox": [ + 277, + 195, + 311, + 206 + ], + "score": 0.75, + "content": "\\textit { s } \\in \\textit { \\varepsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 194, + 317, + 207 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 317, + 195, + 353, + 205 + ], + "score": 0.72, + "content": "r \\in \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 194, + 379, + 207 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 380, + 195, + 414, + 205 + ], + "score": 0.89, + "content": "\\textit { o } \\in \\textit { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 194, + 504, + 207 + ], + "score": 1.0, + "content": ", the subject, the re-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 205, + 504, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 504, + 219 + ], + "score": 1.0, + "content": "lation, and the object of the triplet, respectively. Each triplet encodes a fact. For example,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "(Albert Einstein, has profession, theoretical physicist). All the triplets given", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "in a knowledge base are assumed to be true. However generally speaking a triplet may be true or", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "false. Thus knowledge base embedding aims at training a model that predict if a triplet is true or not", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "given some parameterization of the entities and relations (Bordes et al., 2011; 2013; Nickel et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 289, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 289, + 273 + ], + "score": 1.0, + "content": "2011; Socher et al., 2013; Wang et al., 2014).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 503, + 302 + ], + "lines": [ + { + "bbox": [ + 134, + 276, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 134, + 276, + 220, + 310 + ], + "score": 1.0, + "content": "paper, we associate awith two parameters,", + "type": "text" + }, + { + "bbox": [ + 249, + 276, + 285, + 289 + ], + "score": 0.93, + "content": "\\pmb { v } _ { s } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 276, + 352, + 310 + ], + "score": 1.0, + "content": "with each entity ositive definite s", + "type": "text" + }, + { + "bbox": [ + 353, + 278, + 377, + 288 + ], + "score": 0.9, + "content": "s \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 276, + 420, + 310 + ], + "score": 1.0, + "content": ", and we atric matrix", + "type": "text" + }, + { + "bbox": [ + 468, + 276, + 505, + 310 + ], + "score": 1.0, + "content": "h relation.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 288, + 468, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 133, + 300 + ], + "score": 0.89, + "content": "r \\in \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 289, + 256, + 301 + ], + "score": 0.92, + "content": "\\pmb { \\delta } _ { r } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 288, + 468, + 303 + ], + "score": 0.93, + "content": "\\pmb { \\Sigma } _ { r } \\in \\mathbb { R } _ { + + } ^ { d \\times d }", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 307, + 504, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 163, + 321 + ], + "score": 1.0, + "content": "Given subject", + "type": "text" + }, + { + "bbox": [ + 163, + 309, + 169, + 317 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 304, + 219, + 321 + ], + "score": 1.0, + "content": "and relation", + "type": "text" + }, + { + "bbox": [ + 220, + 309, + 226, + 317 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 304, + 383, + 321 + ], + "score": 1.0, + "content": ", we can compute the score of an object", + "type": "text" + }, + { + "bbox": [ + 383, + 309, + 389, + 317 + ], + "score": 0.75, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 304, + 448, + 321 + ], + "score": 1.0, + "content": "to be in triplet", + "type": "text" + }, + { + "bbox": [ + 449, + 307, + 479, + 319 + ], + "score": 0.93, + "content": "( s , r , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 304, + 506, + 321 + ], + "score": 1.0, + "content": "using", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 317, + 270, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 270, + 329 + ], + "score": 1.0, + "content": "the Gaussian attention model as (1) with", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 333, + 400, + 347 + ], + "lines": [ + { + "bbox": [ + 210, + 333, + 400, + 347 + ], + "spans": [ + { + "bbox": [ + 210, + 333, + 400, + 347 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathrm { s c o r e } ( s , r , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "5c69bcc35098be68af1a430bd4cb7dbc1fecdbf4ab8b68d54743d74cd3859f79.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 210, + 333, + 400, + 347 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 133, + 364 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 351, + 221, + 362 + ], + "score": 0.86, + "content": "\\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\pmb { \\delta } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 348, + 226, + 364 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 226, + 350, + 294, + 361 + ], + "score": 0.91, + "content": "\\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } = \\pmb { \\Sigma } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 348, + 350, + 364 + ], + "score": 1.0, + "content": ". Note that if", + "type": "text" + }, + { + "bbox": [ + 351, + 350, + 364, + 361 + ], + "score": 0.9, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 348, + 506, + 364 + ], + "score": 1.0, + "content": "is fixed to the identity matrix, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 256, + 374 + ], + "score": 1.0, + "content": "are modeling the relation of subject", + "type": "text" + }, + { + "bbox": [ + 257, + 363, + 268, + 372 + ], + "score": 0.86, + "content": "{ \\pmb v } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 361, + 316, + 374 + ], + "score": 1.0, + "content": "and object", + "type": "text" + }, + { + "bbox": [ + 316, + 363, + 328, + 372 + ], + "score": 0.87, + "content": "{ \\pmb v } _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 361, + 396, + 374 + ], + "score": 1.0, + "content": "as a translation", + "type": "text" + }, + { + "bbox": [ + 396, + 361, + 407, + 372 + ], + "score": 0.88, + "content": "\\delta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 361, + 506, + 374 + ], + "score": 1.0, + "content": ", which is equivalent to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 374, + 384 + ], + "score": 1.0, + "content": "the TransE model (Bordes et al., 2013). We allow the covariance", + "type": "text" + }, + { + "bbox": [ + 374, + 372, + 388, + 383 + ], + "score": 0.89, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "to depend on the relation to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 396 + ], + "score": 1.0, + "content": "handle one-to-many relations (e.g., profession has person relation) and capture the shape of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "the distribution of the set of objects that can be in the triplet. We call our model TransGaussian", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 405, + 332, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 332, + 416 + ], + "score": 1.0, + "content": "because of its similarity to TransE (Bordes et al., 2013).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 504, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 466, + 440 + ], + "score": 1.0, + "content": "Parameterization For computational efficiency, we will restrict the covariance matrix", + "type": "text" + }, + { + "bbox": [ + 466, + 429, + 480, + 439 + ], + "score": 0.88, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 338, + 452 + ], + "score": 1.0, + "content": "diagonal in this paper. Furthermore, in order to ensure that", + "type": "text" + }, + { + "bbox": [ + 339, + 439, + 352, + 450 + ], + "score": 0.89, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "is strictly positive definite, we employ", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 450, + 455, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 393, + 462 + ], + "score": 1.0, + "content": "the exponential linear unit (ELU, Clevert et al., 2015) and parameterize", + "type": "text" + }, + { + "bbox": [ + 393, + 450, + 407, + 461 + ], + "score": 0.9, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 450, + 455, + 462 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 464, + 406, + 500 + ], + "lines": [ + { + "bbox": [ + 205, + 464, + 406, + 500 + ], + "spans": [ + { + "bbox": [ + 205, + 464, + 406, + 500 + ], + "score": 0.93, + "content": "\\Sigma _ { r } = \\mathrm { d i a g } \\left( \\begin{array} { c } { { \\mathrm { E L U } ( m _ { r , 1 } ) + 1 + \\epsilon } } \\\\ { { } } \\\\ { { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot } } } } } } } } } } } } } } } \\end{array} \\right)", + "type": "interline_equation", + "image_path": "c1f66c1aa79eb2d4fe7c09b566a6b78148df32593e7806c2db3ed991658d7829.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 464, + 406, + 482.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 205, + 482.0, + 406, + 500.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 133, + 516 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 504, + 214, + 516 + ], + "score": 0.84, + "content": "m _ { r , j } ~ ( j = 1 , \\ldots , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "are the unconstrained parameters that are optimized during training and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 107, + 517, + 112, + 524 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "is a small positive value that ensure the positivity of the variance during numerical computation.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 524, + 198, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 198, + 537 + ], + "score": 1.0, + "content": "The ELU is defined as", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 539, + 378, + 567 + ], + "lines": [ + { + "bbox": [ + 232, + 539, + 378, + 567 + ], + "spans": [ + { + "bbox": [ + 232, + 539, + 378, + 567 + ], + "score": 0.94, + "content": "{ \\mathrm { E L U } } ( x ) = { \\left\\{ \\begin{array} { l l } { x , } & { x \\geq 0 , } \\\\ { \\exp { ( x ) } - 1 , } & { x < 0 . } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "3d40bd351af026f629f9cacb330837b022c4d0c1d9ab8ed13b6d474e7cdb411a.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 539, + 378, + 553.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 232, + 553.0, + 378, + 567.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 502, + 603 + ], + "lines": [ + { + "bbox": [ + 104, + 574, + 504, + 596 + ], + "spans": [ + { + "bbox": [ + 104, + 574, + 308, + 596 + ], + "score": 1.0, + "content": "Ranking loss Suppose we have a set of triplets", + "type": "text" + }, + { + "bbox": [ + 308, + 578, + 396, + 592 + ], + "score": 0.91, + "content": "\\mathcal { T } = \\{ ( s _ { i } , r _ { i } , o _ { i } ) \\} _ { i = 1 } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 574, + 504, + 596 + ], + "score": 1.0, + "content": "from the knowledge base.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 589, + 383, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 122, + 604 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 591, + 154, + 603 + ], + "score": 0.92, + "content": "\\mathcal { N } ( s , r )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 589, + 349, + 604 + ], + "score": 1.0, + "content": "be the set of incorrect objects to be in the triplet", + "type": "text" + }, + { + "bbox": [ + 349, + 592, + 378, + 603 + ], + "score": 0.88, + "content": "( s , r , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 589, + 383, + 604 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 607, + 503, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 621 + ], + "score": 1.0, + "content": "Our objective function uses the ranking loss to measure the margin between the scores of true an-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 369, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 369, + 631 + ], + "score": 1.0, + "content": "swers and those of false answers and it can be written as follows:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 631, + 457, + 707 + ], + "lines": [ + { + "bbox": [ + 153, + 631, + 457, + 707 + ], + "spans": [ + { + "bbox": [ + 153, + 631, + 457, + 707 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\displaystyle \\underset { \\{ \\delta _ { r } , M _ { r } , : r \\in \\bar { \\mathcal { R } } \\} } { \\operatorname* { m i n } } \\frac { 1 } { N } \\sum _ { ( s , r , o ) \\in \\mathcal { T } } \\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) } \\left[ [ \\mu - \\mathrm { s c o r e } ( s , r , o ) + \\mathrm { s c o r e } ( s , r , t ^ { \\prime } ) ] _ { + } \\right] } \\\\ { + \\lambda \\left( \\displaystyle \\sum _ { e \\in \\mathcal { E } } \\| v _ { e } \\| _ { 2 } ^ { 2 } + \\displaystyle \\sum _ { r \\in \\bar { \\mathcal { R } } } \\big ( \\| \\delta _ { r } \\| _ { 2 } ^ { 2 } + \\| M _ { r } \\| _ { F } ^ { 2 } \\big ) \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "d0cca07bb8163d14a796bc213dc59912b521bb4b485d6c47e59ae0830c053954.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 153, + 631, + 457, + 656.3333333333334 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 153, + 656.3333333333334, + 457, + 681.6666666666667 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 153, + 681.6666666666667, + 457, + 707.0000000000001 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 136, + 724 + ], + "score": 1.0, + "content": "where,", + "type": "text" + }, + { + "bbox": [ + 137, + 709, + 176, + 721 + ], + "score": 0.82, + "content": "N = | \\mathcal { T } |", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 707, + 180, + 724 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 180, + 711, + 188, + 721 + ], + "score": 0.49, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 707, + 306, + 724 + ], + "score": 1.0, + "content": "is the margin parameter and", + "type": "text" + }, + { + "bbox": [ + 306, + 710, + 324, + 721 + ], + "score": 0.89, + "content": "M _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 707, + 461, + 724 + ], + "score": 1.0, + "content": "denotes the diagonal matrix with", + "type": "text" + }, + { + "bbox": [ + 462, + 710, + 506, + 722 + ], + "score": 0.38, + "content": "m _ { r , j } , j =", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 140, + 732 + ], + "score": 0.91, + "content": "1 , \\ldots , d", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 720, + 258, + 734 + ], + "score": 1.0, + "content": "on the diagonal; the function", + "type": "text" + }, + { + "bbox": [ + 258, + 721, + 273, + 733 + ], + "score": 0.9, + "content": "[ \\cdot ] _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 720, + 326, + 734 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + }, + { + "bbox": [ + 327, + 721, + 400, + 732 + ], + "score": 0.93, + "content": "[ x ] _ { + } = \\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 720, + 506, + 734 + ], + "score": 1.0, + "content": ". Here, we treat an inverse", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 291, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 292, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 292, + 96 + ], + "score": 1.0, + "content": "2 KNOWLEDGE BASE EMBEDDING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "In this section, we describe the proposed TransGaussian model based on the Gaussian attention", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "model (1). While it is possible to train a network that computes the embedding in a single pass", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "(Bordes et al., 2015) or over multiple passes (Li et al., 2015), it is more efficient to offload the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 477, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 477, + 151 + ], + "score": 1.0, + "content": "embedding as a separate step for question answering based on a large static knowledge base.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 106, + 505, + 151 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 163, + 260, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 262, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 262, + 176 + ], + "score": 1.0, + "content": "2.1 THE TRANSGAUSSIAN MODEL", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 124, + 196 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 184, + 132, + 194 + ], + "score": 0.74, + "content": "\\mathcal { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 183, + 249, + 196 + ], + "score": 1.0, + "content": "be the set of entities and", + "type": "text" + }, + { + "bbox": [ + 250, + 185, + 260, + 194 + ], + "score": 0.82, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "be the set of relations. A knowledge base is a collec-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 194, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 173, + 207 + ], + "score": 1.0, + "content": "tion of triplets", + "type": "text" + }, + { + "bbox": [ + 173, + 195, + 204, + 207 + ], + "score": 0.92, + "content": "( s , r , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 194, + 276, + 207 + ], + "score": 1.0, + "content": ", where we call", + "type": "text" + }, + { + "bbox": [ + 277, + 195, + 311, + 206 + ], + "score": 0.75, + "content": "\\textit { s } \\in \\textit { \\varepsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 194, + 317, + 207 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 317, + 195, + 353, + 205 + ], + "score": 0.72, + "content": "r \\in \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 194, + 379, + 207 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 380, + 195, + 414, + 205 + ], + "score": 0.89, + "content": "\\textit { o } \\in \\textit { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 194, + 504, + 207 + ], + "score": 1.0, + "content": ", the subject, the re-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 205, + 504, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 504, + 219 + ], + "score": 1.0, + "content": "lation, and the object of the triplet, respectively. Each triplet encodes a fact. For example,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "(Albert Einstein, has profession, theoretical physicist). All the triplets given", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "in a knowledge base are assumed to be true. However generally speaking a triplet may be true or", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "false. Thus knowledge base embedding aims at training a model that predict if a triplet is true or not", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "given some parameterization of the entities and relations (Bordes et al., 2011; 2013; Nickel et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 289, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 289, + 273 + ], + "score": 1.0, + "content": "2011; Socher et al., 2013; Wang et al., 2014).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 183, + 506, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 503, + 302 + ], + "lines": [ + { + "bbox": [ + 134, + 276, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 134, + 276, + 220, + 310 + ], + "score": 1.0, + "content": "paper, we associate awith two parameters,", + "type": "text" + }, + { + "bbox": [ + 249, + 276, + 285, + 289 + ], + "score": 0.93, + "content": "\\pmb { v } _ { s } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 276, + 352, + 310 + ], + "score": 1.0, + "content": "with each entity ositive definite s", + "type": "text" + }, + { + "bbox": [ + 353, + 278, + 377, + 288 + ], + "score": 0.9, + "content": "s \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 276, + 420, + 310 + ], + "score": 1.0, + "content": ", and we atric matrix", + "type": "text" + }, + { + "bbox": [ + 468, + 276, + 505, + 310 + ], + "score": 1.0, + "content": "h relation.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 288, + 468, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 133, + 300 + ], + "score": 0.89, + "content": "r \\in \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 289, + 256, + 301 + ], + "score": 0.92, + "content": "\\pmb { \\delta } _ { r } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 288, + 468, + 303 + ], + "score": 0.93, + "content": "\\pmb { \\Sigma } _ { r } \\in \\mathbb { R } _ { + + } ^ { d \\times d }", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 276, + 505, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 307, + 504, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 163, + 321 + ], + "score": 1.0, + "content": "Given subject", + "type": "text" + }, + { + "bbox": [ + 163, + 309, + 169, + 317 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 304, + 219, + 321 + ], + "score": 1.0, + "content": "and relation", + "type": "text" + }, + { + "bbox": [ + 220, + 309, + 226, + 317 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 304, + 383, + 321 + ], + "score": 1.0, + "content": ", we can compute the score of an object", + "type": "text" + }, + { + "bbox": [ + 383, + 309, + 389, + 317 + ], + "score": 0.75, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 304, + 448, + 321 + ], + "score": 1.0, + "content": "to be in triplet", + "type": "text" + }, + { + "bbox": [ + 449, + 307, + 479, + 319 + ], + "score": 0.93, + "content": "( s , r , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 304, + 506, + 321 + ], + "score": 1.0, + "content": "using", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 317, + 270, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 270, + 329 + ], + "score": 1.0, + "content": "the Gaussian attention model as (1) with", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 304, + 506, + 329 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 333, + 400, + 347 + ], + "lines": [ + { + "bbox": [ + 210, + 333, + 400, + 347 + ], + "spans": [ + { + "bbox": [ + 210, + 333, + 400, + 347 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathrm { s c o r e } ( s , r , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "5c69bcc35098be68af1a430bd4cb7dbc1fecdbf4ab8b68d54743d74cd3859f79.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 210, + 333, + 400, + 347 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 133, + 364 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 351, + 221, + 362 + ], + "score": 0.86, + "content": "\\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\pmb { \\delta } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 348, + 226, + 364 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 226, + 350, + 294, + 361 + ], + "score": 0.91, + "content": "\\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } = \\pmb { \\Sigma } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 348, + 350, + 364 + ], + "score": 1.0, + "content": ". Note that if", + "type": "text" + }, + { + "bbox": [ + 351, + 350, + 364, + 361 + ], + "score": 0.9, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 348, + 506, + 364 + ], + "score": 1.0, + "content": "is fixed to the identity matrix, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 256, + 374 + ], + "score": 1.0, + "content": "are modeling the relation of subject", + "type": "text" + }, + { + "bbox": [ + 257, + 363, + 268, + 372 + ], + "score": 0.86, + "content": "{ \\pmb v } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 361, + 316, + 374 + ], + "score": 1.0, + "content": "and object", + "type": "text" + }, + { + "bbox": [ + 316, + 363, + 328, + 372 + ], + "score": 0.87, + "content": "{ \\pmb v } _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 361, + 396, + 374 + ], + "score": 1.0, + "content": "as a translation", + "type": "text" + }, + { + "bbox": [ + 396, + 361, + 407, + 372 + ], + "score": 0.88, + "content": "\\delta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 361, + 506, + 374 + ], + "score": 1.0, + "content": ", which is equivalent to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 374, + 384 + ], + "score": 1.0, + "content": "the TransE model (Bordes et al., 2013). We allow the covariance", + "type": "text" + }, + { + "bbox": [ + 374, + 372, + 388, + 383 + ], + "score": 0.89, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "to depend on the relation to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 396 + ], + "score": 1.0, + "content": "handle one-to-many relations (e.g., profession has person relation) and capture the shape of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "the distribution of the set of objects that can be in the triplet. We call our model TransGaussian", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 405, + 332, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 332, + 416 + ], + "score": 1.0, + "content": "because of its similarity to TransE (Bordes et al., 2013).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 348, + 506, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 504, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 466, + 440 + ], + "score": 1.0, + "content": "Parameterization For computational efficiency, we will restrict the covariance matrix", + "type": "text" + }, + { + "bbox": [ + 466, + 429, + 480, + 439 + ], + "score": 0.88, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 338, + 452 + ], + "score": 1.0, + "content": "diagonal in this paper. Furthermore, in order to ensure that", + "type": "text" + }, + { + "bbox": [ + 339, + 439, + 352, + 450 + ], + "score": 0.89, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "is strictly positive definite, we employ", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 450, + 455, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 393, + 462 + ], + "score": 1.0, + "content": "the exponential linear unit (ELU, Clevert et al., 2015) and parameterize", + "type": "text" + }, + { + "bbox": [ + 393, + 450, + 407, + 461 + ], + "score": 0.9, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 450, + 455, + 462 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 428, + 505, + 462 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 464, + 406, + 500 + ], + "lines": [ + { + "bbox": [ + 205, + 464, + 406, + 500 + ], + "spans": [ + { + "bbox": [ + 205, + 464, + 406, + 500 + ], + "score": 0.93, + "content": "\\Sigma _ { r } = \\mathrm { d i a g } \\left( \\begin{array} { c } { { \\mathrm { E L U } ( m _ { r , 1 } ) + 1 + \\epsilon } } \\\\ { { } } \\\\ { { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot } } } } } } } } } } } } } } } \\end{array} \\right)", + "type": "interline_equation", + "image_path": "c1f66c1aa79eb2d4fe7c09b566a6b78148df32593e7806c2db3ed991658d7829.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 464, + 406, + 482.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 205, + 482.0, + 406, + 500.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 133, + 516 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 504, + 214, + 516 + ], + "score": 0.84, + "content": "m _ { r , j } ~ ( j = 1 , \\ldots , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "are the unconstrained parameters that are optimized during training and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 107, + 517, + 112, + 524 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "is a small positive value that ensure the positivity of the variance during numerical computation.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 524, + 198, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 198, + 537 + ], + "score": 1.0, + "content": "The ELU is defined as", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 503, + 505, + 537 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 539, + 378, + 567 + ], + "lines": [ + { + "bbox": [ + 232, + 539, + 378, + 567 + ], + "spans": [ + { + "bbox": [ + 232, + 539, + 378, + 567 + ], + "score": 0.94, + "content": "{ \\mathrm { E L U } } ( x ) = { \\left\\{ \\begin{array} { l l } { x , } & { x \\geq 0 , } \\\\ { \\exp { ( x ) } - 1 , } & { x < 0 . } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "3d40bd351af026f629f9cacb330837b022c4d0c1d9ab8ed13b6d474e7cdb411a.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 539, + 378, + 553.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 232, + 553.0, + 378, + 567.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 577, + 502, + 603 + ], + "lines": [ + { + "bbox": [ + 104, + 574, + 504, + 596 + ], + "spans": [ + { + "bbox": [ + 104, + 574, + 308, + 596 + ], + "score": 1.0, + "content": "Ranking loss Suppose we have a set of triplets", + "type": "text" + }, + { + "bbox": [ + 308, + 578, + 396, + 592 + ], + "score": 0.91, + "content": "\\mathcal { T } = \\{ ( s _ { i } , r _ { i } , o _ { i } ) \\} _ { i = 1 } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 574, + 504, + 596 + ], + "score": 1.0, + "content": "from the knowledge base.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 589, + 383, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 122, + 604 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 591, + 154, + 603 + ], + "score": 0.92, + "content": "\\mathcal { N } ( s , r )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 589, + 349, + 604 + ], + "score": 1.0, + "content": "be the set of incorrect objects to be in the triplet", + "type": "text" + }, + { + "bbox": [ + 349, + 592, + 378, + 603 + ], + "score": 0.88, + "content": "( s , r , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 589, + 383, + 604 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 574, + 504, + 604 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 607, + 503, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 621 + ], + "score": 1.0, + "content": "Our objective function uses the ranking loss to measure the margin between the scores of true an-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 369, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 369, + 631 + ], + "score": 1.0, + "content": "swers and those of false answers and it can be written as follows:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 606, + 505, + 631 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 631, + 457, + 707 + ], + "lines": [ + { + "bbox": [ + 153, + 631, + 457, + 707 + ], + "spans": [ + { + "bbox": [ + 153, + 631, + 457, + 707 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\displaystyle \\underset { \\{ \\delta _ { r } , M _ { r } , : r \\in \\bar { \\mathcal { R } } \\} } { \\operatorname* { m i n } } \\frac { 1 } { N } \\sum _ { ( s , r , o ) \\in \\mathcal { T } } \\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) } \\left[ [ \\mu - \\mathrm { s c o r e } ( s , r , o ) + \\mathrm { s c o r e } ( s , r , t ^ { \\prime } ) ] _ { + } \\right] } \\\\ { + \\lambda \\left( \\displaystyle \\sum _ { e \\in \\mathcal { E } } \\| v _ { e } \\| _ { 2 } ^ { 2 } + \\displaystyle \\sum _ { r \\in \\bar { \\mathcal { R } } } \\big ( \\| \\delta _ { r } \\| _ { 2 } ^ { 2 } + \\| M _ { r } \\| _ { F } ^ { 2 } \\big ) \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "d0cca07bb8163d14a796bc213dc59912b521bb4b485d6c47e59ae0830c053954.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 153, + 631, + 457, + 656.3333333333334 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 153, + 656.3333333333334, + 457, + 681.6666666666667 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 153, + 681.6666666666667, + 457, + 707.0000000000001 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 136, + 724 + ], + "score": 1.0, + "content": "where,", + "type": "text" + }, + { + "bbox": [ + 137, + 709, + 176, + 721 + ], + "score": 0.82, + "content": "N = | \\mathcal { T } |", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 707, + 180, + 724 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 180, + 711, + 188, + 721 + ], + "score": 0.49, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 707, + 306, + 724 + ], + "score": 1.0, + "content": "is the margin parameter and", + "type": "text" + }, + { + "bbox": [ + 306, + 710, + 324, + 721 + ], + "score": 0.89, + "content": "M _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 707, + 461, + 724 + ], + "score": 1.0, + "content": "denotes the diagonal matrix with", + "type": "text" + }, + { + "bbox": [ + 462, + 710, + 506, + 722 + ], + "score": 0.38, + "content": "m _ { r , j } , j =", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 140, + 732 + ], + "score": 0.91, + "content": "1 , \\ldots , d", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 720, + 258, + 734 + ], + "score": 1.0, + "content": "on the diagonal; the function", + "type": "text" + }, + { + "bbox": [ + 258, + 721, + 273, + 733 + ], + "score": 0.9, + "content": "[ \\cdot ] _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 720, + 326, + 734 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + }, + { + "bbox": [ + 327, + 721, + 400, + 732 + ], + "score": 0.93, + "content": "[ x ] _ { + } = \\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 720, + 506, + 734 + ], + "score": 1.0, + "content": ". Here, we treat an inverse", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 282, + 94 + ], + "score": 1.0, + "content": "relation as a separate relation and denote by", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 282, + 82, + 342, + 93 + ], + "score": 0.92, + "content": "\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 342, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "the set of all the relations including both", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 154, + 106 + ], + "score": 1.0, + "content": "relations in", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 154, + 94, + 164, + 104 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 164, + 93, + 315, + 106 + ], + "score": 1.0, + "content": "and their inverse relations; a relation", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 316, + 94, + 322, + 104 + ], + "score": 0.8, + "content": "\\tilde { r }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 322, + 93, + 423, + 106 + ], + "score": 1.0, + "content": "is the inverse relation of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 423, + 95, + 429, + 104 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 430, + 93, + 440, + 106 + ], + "score": 1.0, + "content": "if", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 440, + 93, + 471, + 106 + ], + "score": 0.92, + "content": "( s , \\tilde { r } , o )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 472, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "implies", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 103, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 138, + 116 + ], + "score": 0.91, + "content": "( o , r , s )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 138, + 103, + 249, + 120 + ], + "score": 1.0, + "content": "and vice versa. Moreover,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 249, + 105, + 293, + 117 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 293, + 103, + 507, + 120 + ], + "score": 1.0, + "content": "denotes the expectation with respect to the uniform", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "distribution over the set of incorrect objects, which we approximate with 10 random samples in the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 481, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 263, + 139 + ], + "score": 1.0, + "content": "experiments. Finally, the last terms are", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 263, + 127, + 273, + 137 + ], + "score": 0.88, + "content": "\\ell _ { 2 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 273, + 127, + 481, + 139 + ], + "score": 1.0, + "content": "regularization terms for the embedding parameters.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 707, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 282, + 94 + ], + "score": 1.0, + "content": "relation as a separate relation and denote by", + "type": "text" + }, + { + "bbox": [ + 282, + 82, + 342, + 93 + ], + "score": 0.92, + "content": "\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "the set of all the relations including both", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 154, + 106 + ], + "score": 1.0, + "content": "relations in", + "type": "text" + }, + { + "bbox": [ + 154, + 94, + 164, + 104 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 93, + 315, + 106 + ], + "score": 1.0, + "content": "and their inverse relations; a relation", + "type": "text" + }, + { + "bbox": [ + 316, + 94, + 322, + 104 + ], + "score": 0.8, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 93, + 423, + 106 + ], + "score": 1.0, + "content": "is the inverse relation of", + "type": "text" + }, + { + "bbox": [ + 423, + 95, + 429, + 104 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 93, + 440, + 106 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 440, + 93, + 471, + 106 + ], + "score": 0.92, + "content": "( s , \\tilde { r } , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "implies", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 103, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 138, + 116 + ], + "score": 0.91, + "content": "( o , r , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 103, + 249, + 120 + ], + "score": 1.0, + "content": "and vice versa. Moreover,", + "type": "text" + }, + { + "bbox": [ + 249, + 105, + 293, + 117 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 103, + 507, + 120 + ], + "score": 1.0, + "content": "denotes the expectation with respect to the uniform", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "distribution over the set of incorrect objects, which we approximate with 10 random samples in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 481, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 263, + 139 + ], + "score": 1.0, + "content": "experiments. Finally, the last terms are", + "type": "text" + }, + { + "bbox": [ + 263, + 127, + 273, + 137 + ], + "score": 0.88, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 127, + 481, + 139 + ], + "score": 1.0, + "content": "regularization terms for the embedding parameters.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 108, + 151, + 254, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 257, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 257, + 163 + ], + "score": 1.0, + "content": "2.2 COMPOSITIONAL RELATIONS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Guu et al. (2015) has recently shown that training TransE with compositional relations can make", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "it competitive to more complex models, although TransE is much simpler compared to for exam-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "ple, neural tensor networks (NTN, Socher et al. (2013)) and TransH Wang et al. (2014). Here,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 446, + 216 + ], + "score": 1.0, + "content": "a compositional relation is a relation that is composed as a series of relations in", + "type": "text" + }, + { + "bbox": [ + 447, + 205, + 456, + 214 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 205, + 505, + 216 + ], + "score": 1.0, + "content": ", for exam-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "ple, grand father of can be composed as first applying the parent of relation and then the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 471, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 471, + 238 + ], + "score": 1.0, + "content": "father of relation, which can be seen as a traversal over a path on the knowledge graph.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "TransGaussian model can naturally handle and propagate the uncertainty over such a chain of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "relations by convolving the Gaussian distributions along the path. That is, the score of an en-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 123, + 277 + ], + "score": 1.0, + "content": "tity", + "type": "text" + }, + { + "bbox": [ + 124, + 267, + 130, + 275 + ], + "score": 0.7, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 264, + 185, + 277 + ], + "score": 1.0, + "content": "to be in the", + "type": "text" + }, + { + "bbox": [ + 185, + 267, + 192, + 275 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 264, + 248, + 277 + ], + "score": 1.0, + "content": "-step relation", + "type": "text" + }, + { + "bbox": [ + 248, + 264, + 307, + 277 + ], + "score": 0.93, + "content": "r _ { 1 } / r _ { 2 } / \\cdots / r _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 264, + 363, + 277 + ], + "score": 1.0, + "content": "with subject", + "type": "text" + }, + { + "bbox": [ + 363, + 267, + 369, + 275 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 264, + 505, + 277 + ], + "score": 1.0, + "content": ", which we denote by the triplet", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 275, + 240, + 289 + ], + "spans": [ + { + "bbox": [ + 107, + 275, + 190, + 288 + ], + "score": 0.91, + "content": "( \\dot { s , } r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 276, + 240, + 289 + ], + "score": 1.0, + "content": ", is given as", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 289, + 426, + 302 + ], + "lines": [ + { + "bbox": [ + 182, + 289, + 426, + 302 + ], + "spans": [ + { + "bbox": [ + 182, + 289, + 426, + 302 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\mathrm { s c o r e } ( s , r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "cb93d0b8c285b8098298d11c8377beb8dea13fa379d403f59d98150719afc4c2.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 182, + 289, + 426, + 302 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 508, + 328 + ], + "lines": [ + { + "bbox": [ + 103, + 300, + 507, + 322 + ], + "spans": [ + { + "bbox": [ + 103, + 300, + 127, + 322 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 304, + 244, + 317 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\sum _ { t = 1 } ^ { \\tau } \\delta _ { r _ { t } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 300, + 249, + 322 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 249, + 304, + 346, + 317 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\sum _ { \\mathrm { c o n t e x t } } = \\sum _ { t = 1 } ^ { \\tau } \\sum _ { r _ { t } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 300, + 507, + 322 + ], + "score": 1.0, + "content": ", where the covariance associated with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 414, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 414, + 329 + ], + "score": 1.0, + "content": "each relation is parameterized in the same way as in the previous subsection.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 100, + 337, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 100, + 337, + 457, + 367 + ], + "score": 1.0, + "content": "Training with compositional relations Let P = n\u0010si, ri1 /ri2 / · · · /rili , oi\u0011oN i=1", + "type": "text" + }, + { + "bbox": [ + 455, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "be a set of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 374, + 373 + ], + "score": 1.0, + "content": "randomly sampled paths from the knowledge graph. Here relation", + "type": "text" + }, + { + "bbox": [ + 374, + 363, + 387, + 373 + ], + "score": 0.84, + "content": "r _ { i _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "in a path can be a relation in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 107, + 372, + 117, + 381 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 370, + 217, + 384 + ], + "score": 1.0, + "content": "or an inverse relation in", + "type": "text" + }, + { + "bbox": [ + 218, + 371, + 238, + 382 + ], + "score": 0.91, + "content": "\\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 370, + 505, + 384 + ], + "score": 1.0, + "content": ". With the scoring function (4), the generalized training objective", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 382, + 504, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 427, + 394 + ], + "score": 1.0, + "content": "for compositional relations can be written identically to (3) except for replacing", + "type": "text" + }, + { + "bbox": [ + 428, + 383, + 437, + 393 + ], + "score": 0.82, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 382, + 459, + 394 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 459, + 383, + 487, + 393 + ], + "score": 0.9, + "content": "\\mathcal { T } \\cup \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 382, + 504, + 394 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 241, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 146, + 406 + ], + "score": 1.0, + "content": "replacing", + "type": "text" + }, + { + "bbox": [ + 146, + 394, + 156, + 403 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 392, + 178, + 406 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 178, + 393, + 236, + 406 + ], + "score": 0.93, + "content": "N ^ { \\prime } = | \\mathcal { T } \\cup \\mathcal { P } |", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 392, + 241, + 406 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 246, + 433 + ], + "lines": [ + { + "bbox": [ + 104, + 418, + 248, + 436 + ], + "spans": [ + { + "bbox": [ + 104, + 418, + 248, + 436 + ], + "score": 1.0, + "content": "3 QUESTION ANSWERING", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "Given a set of question-answer pairs, in which the question is phrased in natural language and the an-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "swer is an entity in the knowledge base, our goal is to train a model that learns the mapping from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "question to the correct entity. Our question answering model consists of three steps, entity recog-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "score": 1.0, + "content": "nition, relation composition, and conjunction. We first identify a list of entities mentioned in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "score": 1.0, + "content": "question (which is assumed to be provided by an oracle in this paper). If the question is “Who plays", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "score": 1.0, + "content": "Forward for Borussia Dortmund?” then the list would be [Forward, Borussia Dortmund].", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "The next step is to predict the path of relations on the knowledgegraph starting from each en-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "tity in the list extracted in the first step. In the above example, this will be (smooth versions of)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "/Forward/position played by/ and /Borussia Dortmund/has player/ predicted", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "as series of Gaussian convolutions. In general, we can have multiple relations appearing in each path.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "Finally, we take a product of all the Gaussian attentions and renormalize it, which is equivalent to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 566, + 420, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 420, + 578 + ], + "score": 1.0, + "content": "Bayes’ rule with independent observations (paths) and a noninformative prior.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 108, + 589, + 227, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 589, + 228, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 228, + 601 + ], + "score": 1.0, + "content": "3.1 ENTITY RECOGNITION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "We assume that there is an oracle that provides a list containing all the entities mentioned in the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "question, because (1) a domain specific entity recognizer can be developed efficiently (Williams", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "et al., 2015) and (2) generally entity recognition is a challenging task and it is beyond the scope", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "of this paper to show whether there is any benefit in training our question answering model jointly", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "with a entity recognizer. We assume that the number of extracted entities can be different for each", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 665, + 146, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 146, + 677 + ], + "score": 1.0, + "content": "question.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 238, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 240, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 240, + 702 + ], + "score": 1.0, + "content": "3.2 RELATION COMPOSITION", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "We train a long short-term memory (LSTM, Hochreiter & Schmidhuber, 1997) network that emits", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 147, + 733 + ], + "score": 1.0, + "content": "an output", + "type": "text" + }, + { + "bbox": [ + 147, + 721, + 159, + 732 + ], + "score": 0.88, + "content": "\\boldsymbol { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "for each token in the input sequence. Then we compute the attention over the hidden", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 507, + 139 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 151, + 254, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 257, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 257, + 163 + ], + "score": 1.0, + "content": "2.2 COMPOSITIONAL RELATIONS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Guu et al. (2015) has recently shown that training TransE with compositional relations can make", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "it competitive to more complex models, although TransE is much simpler compared to for exam-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "ple, neural tensor networks (NTN, Socher et al. (2013)) and TransH Wang et al. (2014). Here,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 446, + 216 + ], + "score": 1.0, + "content": "a compositional relation is a relation that is composed as a series of relations in", + "type": "text" + }, + { + "bbox": [ + 447, + 205, + 456, + 214 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 205, + 505, + 216 + ], + "score": 1.0, + "content": ", for exam-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "ple, grand father of can be composed as first applying the parent of relation and then the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 471, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 471, + 238 + ], + "score": 1.0, + "content": "father of relation, which can be seen as a traversal over a path on the knowledge graph.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 170, + 506, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 255 + ], + "score": 1.0, + "content": "TransGaussian model can naturally handle and propagate the uncertainty over such a chain of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "relations by convolving the Gaussian distributions along the path. That is, the score of an en-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 123, + 277 + ], + "score": 1.0, + "content": "tity", + "type": "text" + }, + { + "bbox": [ + 124, + 267, + 130, + 275 + ], + "score": 0.7, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 264, + 185, + 277 + ], + "score": 1.0, + "content": "to be in the", + "type": "text" + }, + { + "bbox": [ + 185, + 267, + 192, + 275 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 264, + 248, + 277 + ], + "score": 1.0, + "content": "-step relation", + "type": "text" + }, + { + "bbox": [ + 248, + 264, + 307, + 277 + ], + "score": 0.93, + "content": "r _ { 1 } / r _ { 2 } / \\cdots / r _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 264, + 363, + 277 + ], + "score": 1.0, + "content": "with subject", + "type": "text" + }, + { + "bbox": [ + 363, + 267, + 369, + 275 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 264, + 505, + 277 + ], + "score": 1.0, + "content": ", which we denote by the triplet", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 275, + 240, + 289 + ], + "spans": [ + { + "bbox": [ + 107, + 275, + 190, + 288 + ], + "score": 0.91, + "content": "( \\dot { s , } r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 276, + 240, + 289 + ], + "score": 1.0, + "content": ", is given as", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 243, + 506, + 289 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 289, + 426, + 302 + ], + "lines": [ + { + "bbox": [ + 182, + 289, + 426, + 302 + ], + "spans": [ + { + "bbox": [ + 182, + 289, + 426, + 302 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\mathrm { s c o r e } ( s , r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "cb93d0b8c285b8098298d11c8377beb8dea13fa379d403f59d98150719afc4c2.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 182, + 289, + 426, + 302 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 508, + 328 + ], + "lines": [ + { + "bbox": [ + 103, + 300, + 507, + 322 + ], + "spans": [ + { + "bbox": [ + 103, + 300, + 127, + 322 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 128, + 304, + 244, + 317 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\sum _ { t = 1 } ^ { \\tau } \\delta _ { r _ { t } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 300, + 249, + 322 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 249, + 304, + 346, + 317 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\sum _ { \\mathrm { c o n t e x t } } = \\sum _ { t = 1 } ^ { \\tau } \\sum _ { r _ { t } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 300, + 507, + 322 + ], + "score": 1.0, + "content": ", where the covariance associated with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 414, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 414, + 329 + ], + "score": 1.0, + "content": "each relation is parameterized in the same way as in the previous subsection.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 103, + 300, + 507, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 100, + 337, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 100, + 337, + 457, + 367 + ], + "score": 1.0, + "content": "Training with compositional relations Let P = n\u0010si, ri1 /ri2 / · · · /rili , oi\u0011oN i=1", + "type": "text" + }, + { + "bbox": [ + 455, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "be a set of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 374, + 373 + ], + "score": 1.0, + "content": "randomly sampled paths from the knowledge graph. Here relation", + "type": "text" + }, + { + "bbox": [ + 374, + 363, + 387, + 373 + ], + "score": 0.84, + "content": "r _ { i _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "in a path can be a relation in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 107, + 372, + 117, + 381 + ], + "score": 0.81, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 370, + 217, + 384 + ], + "score": 1.0, + "content": "or an inverse relation in", + "type": "text" + }, + { + "bbox": [ + 218, + 371, + 238, + 382 + ], + "score": 0.91, + "content": "\\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 370, + 505, + 384 + ], + "score": 1.0, + "content": ". With the scoring function (4), the generalized training objective", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 382, + 504, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 427, + 394 + ], + "score": 1.0, + "content": "for compositional relations can be written identically to (3) except for replacing", + "type": "text" + }, + { + "bbox": [ + 428, + 383, + 437, + 393 + ], + "score": 0.82, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 382, + 459, + 394 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 459, + 383, + 487, + 393 + ], + "score": 0.9, + "content": "\\mathcal { T } \\cup \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 382, + 504, + 394 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 241, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 146, + 406 + ], + "score": 1.0, + "content": "replacing", + "type": "text" + }, + { + "bbox": [ + 146, + 394, + 156, + 403 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 392, + 178, + 406 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 178, + 393, + 236, + 406 + ], + "score": 0.93, + "content": "N ^ { \\prime } = | \\mathcal { T } \\cup \\mathcal { P } |", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 392, + 241, + 406 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 100, + 337, + 506, + 406 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 246, + 433 + ], + "lines": [ + { + "bbox": [ + 104, + 418, + 248, + 436 + ], + "spans": [ + { + "bbox": [ + 104, + 418, + 248, + 436 + ], + "score": 1.0, + "content": "3 QUESTION ANSWERING", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "Given a set of question-answer pairs, in which the question is phrased in natural language and the an-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "swer is an entity in the knowledge base, our goal is to train a model that learns the mapping from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "question to the correct entity. Our question answering model consists of three steps, entity recog-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "score": 1.0, + "content": "nition, relation composition, and conjunction. We first identify a list of entities mentioned in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "score": 1.0, + "content": "question (which is assumed to be provided by an oracle in this paper). If the question is “Who plays", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "score": 1.0, + "content": "Forward for Borussia Dortmund?” then the list would be [Forward, Borussia Dortmund].", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "The next step is to predict the path of relations on the knowledgegraph starting from each en-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "tity in the list extracted in the first step. In the above example, this will be (smooth versions of)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "/Forward/position played by/ and /Borussia Dortmund/has player/ predicted", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "as series of Gaussian convolutions. In general, we can have multiple relations appearing in each path.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "Finally, we take a product of all the Gaussian attentions and renormalize it, which is equivalent to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 566, + 420, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 420, + 578 + ], + "score": 1.0, + "content": "Bayes’ rule with independent observations (paths) and a noninformative prior.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 445, + 506, + 578 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 589, + 227, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 589, + 228, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 228, + 601 + ], + "score": 1.0, + "content": "3.1 ENTITY RECOGNITION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "We assume that there is an oracle that provides a list containing all the entities mentioned in the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "question, because (1) a domain specific entity recognizer can be developed efficiently (Williams", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "et al., 2015) and (2) generally entity recognition is a challenging task and it is beyond the scope", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "of this paper to show whether there is any benefit in training our question answering model jointly", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "with a entity recognizer. We assume that the number of extracted entities can be different for each", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 665, + 146, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 146, + 677 + ], + "score": 1.0, + "content": "question.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 609, + 505, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 238, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 240, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 240, + 702 + ], + "score": 1.0, + "content": "3.2 RELATION COMPOSITION", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "We train a long short-term memory (LSTM, Hochreiter & Schmidhuber, 1997) network that emits", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 147, + 733 + ], + "score": 1.0, + "content": "an output", + "type": "text" + }, + { + "bbox": [ + 147, + 721, + 159, + 732 + ], + "score": 0.88, + "content": "\\boldsymbol { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "for each token in the input sequence. Then we compute the attention over the hidden", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 82, + 511, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 82, + 511, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 82, + 511, + 298 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 511, + 298 + ], + "score": 0.972, + "type": "image", + "image_path": "c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 82, + 511, + 154.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 154.0, + 511, + 226.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 226.0, + 511, + 298.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 306, + 506, + 396 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "Figure 2: The input to the system is a question in natural language. Two entities Forward and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "score": 1.0, + "content": "Borussia Dortmund are identified in the question and associated with point mass distributions", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "centered at the corresponding entity vectors. An LSTM encodes the input into a sequence of output", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 473, + 353 + ], + "score": 1.0, + "content": "vectors of the same length. Then we take average of the output vectors weighted by attention", + "type": "text" + }, + { + "bbox": [ + 474, + 341, + 490, + 352 + ], + "score": 0.89, + "content": "\\mathit { p } _ { t , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 199, + 363 + ], + "score": 1.0, + "content": "each recognized entity", + "type": "text" + }, + { + "bbox": [ + 199, + 353, + 205, + 361 + ], + "score": 0.63, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 351, + 292, + 363 + ], + "score": 1.0, + "content": "to predict the weight", + "type": "text" + }, + { + "bbox": [ + 292, + 352, + 310, + 363 + ], + "score": 0.9, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 351, + 359, + 363 + ], + "score": 1.0, + "content": "for relation", + "type": "text" + }, + { + "bbox": [ + 359, + 353, + 366, + 361 + ], + "score": 0.66, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 351, + 456, + 363 + ], + "score": 1.0, + "content": "associated with entity", + "type": "text" + }, + { + "bbox": [ + 456, + 353, + 462, + 361 + ], + "score": 0.52, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 351, + 505, + 363 + ], + "score": 1.0, + "content": ". We form", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 317, + 375 + ], + "score": 1.0, + "content": "a Gaussian attention over the entities for each entity", + "type": "text" + }, + { + "bbox": [ + 318, + 364, + 324, + 372 + ], + "score": 0.7, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "by convolving the corresponding point mass", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 400, + 386 + ], + "score": 1.0, + "content": "with the (pre-trained) Gaussian embeddings of the relations weighted by", + "type": "text" + }, + { + "bbox": [ + 400, + 375, + 418, + 385 + ], + "score": 0.88, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "according to Eq. (6).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 383, + 489, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 489, + 397 + ], + "score": 1.0, + "content": "The final prediction is produced by taking the product and normalizing the Gaussian attentions.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 108, + 421, + 255, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 256, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 237, + 435 + ], + "score": 1.0, + "content": "states for each recognized entity", + "type": "text" + }, + { + "bbox": [ + 237, + 424, + 243, + 431 + ], + "score": 0.77, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 419, + 256, + 435 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 436, + 396, + 450 + ], + "lines": [ + { + "bbox": [ + 213, + 436, + 396, + 450 + ], + "spans": [ + { + "bbox": [ + 213, + 436, + 396, + 450 + ], + "score": 0.9, + "content": "p _ { t , e } = \\mathrm { s o f t m a x } \\left( f ( v _ { e } , h _ { t } ) \\right) \\quad ( t = 1 , . . . , T ) ,", + "type": "interline_equation", + "image_path": "6a31c5c001b680422b7d6aafeee5203c2e1e12300f556bf38b98a9f0280e2f71.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 213, + 436, + 396, + 450 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 134, + 467 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 456, + 146, + 465 + ], + "score": 0.86, + "content": "{ \\pmb v } _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 452, + 310, + 467 + ], + "score": 1.0, + "content": "is the vector associated with the entity", + "type": "text" + }, + { + "bbox": [ + 311, + 456, + 316, + 464 + ], + "score": 0.71, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 452, + 468, + 467 + ], + "score": 1.0, + "content": ". We use a two-layer perceptron for", + "type": "text" + }, + { + "bbox": [ + 469, + 454, + 476, + 465 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "in our", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 464, + 292, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 292, + 477 + ], + "score": 1.0, + "content": "experiments, which can be written as follows:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 480, + 419, + 495 + ], + "lines": [ + { + "bbox": [ + 191, + 480, + 419, + 495 + ], + "spans": [ + { + "bbox": [ + 191, + 480, + 419, + 495 + ], + "score": 0.88, + "content": "f ( \\pmb { v } _ { e } , \\pmb { h } _ { t } ) = \\pmb { u } _ { f } ^ { \\top } \\mathrm { R e L U } \\left( \\pmb { W } _ { f , v } \\pmb { v } _ { e } + \\pmb { W } _ { f , h } \\pmb { h } _ { t } + \\pmb { b } _ { 1 } \\right) + b _ { 2 } ,", + "type": "interline_equation", + "image_path": "b54c9eabaf2cfb70e6f9942a009c5b30d6b3c5e53c41a45f71514307ec4003ec.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 191, + 480, + 419, + 495 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 503, + 523 + ], + "lines": [ + { + "bbox": [ + 104, + 496, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 133, + 515 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 145, + 499, + 398, + 513 + ], + "score": 0.26, + "content": "\\mathbf { \\widetilde { \\Gamma } } _ { f , v } \\in \\mathbb { R } ^ { L \\times d } , W _ { f , h } \\in \\mathbb { R } ^ { L \\times H } , b _ { 1 } \\in \\mathbb { R } ^ { L } , { \\mathbf { u } } _ { f } \\in \\mathbb { R } ^ { L } , b _ { 2 } \\in \\mathbb { R } \\mathrm { a r e } \\mathrm { p a r }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 496, + 455, + 515 + ], + "score": 1.0, + "content": "ameters. Here", + "type": "text" + }, + { + "bbox": [ + 455, + 501, + 506, + 513 + ], + "score": 0.8, + "content": "{ \\mathrm { R e L U } } ( x ) =", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 510, + 466, + 524 + ], + "spans": [ + { + "bbox": [ + 107, + 512, + 149, + 524 + ], + "score": 0.89, + "content": "\\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 510, + 424, + 524 + ], + "score": 1.0, + "content": "is the rectified linear unit. Finally, softmax denotes softmax over the", + "type": "text" + }, + { + "bbox": [ + 425, + 512, + 433, + 522 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 510, + 466, + 524 + ], + "score": 1.0, + "content": "tokens.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 458, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 459, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 208, + 542 + ], + "score": 1.0, + "content": "Next, we use the weights", + "type": "text" + }, + { + "bbox": [ + 209, + 531, + 225, + 541 + ], + "score": 0.88, + "content": "\\mathit { p } _ { t , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 528, + 434, + 542 + ], + "score": 1.0, + "content": "to compute the weighted sum over the hidden states", + "type": "text" + }, + { + "bbox": [ + 434, + 529, + 446, + 540 + ], + "score": 0.88, + "content": "\\boldsymbol { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 528, + 459, + 542 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 543, + 347, + 567 + ], + "lines": [ + { + "bbox": [ + 264, + 543, + 347, + 567 + ], + "spans": [ + { + "bbox": [ + 264, + 543, + 347, + 567 + ], + "score": 0.93, + "content": "o _ { e } = \\sum _ { t = 1 } ^ { T } p _ { t , e } h _ { t } .", + "type": "interline_equation", + "image_path": "2b53a112ee0c39aded391dee712421d6078d99ad25424f6d26c2802163f13eaf.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 264, + 543, + 347, + 567 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 500, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 232, + 591 + ], + "score": 1.0, + "content": "Then we compute the weights", + "type": "text" + }, + { + "bbox": [ + 232, + 579, + 250, + 590 + ], + "score": 0.89, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 576, + 349, + 591 + ], + "score": 1.0, + "content": "over all the relations as", + "type": "text" + }, + { + "bbox": [ + 350, + 576, + 500, + 591 + ], + "score": 0.61, + "content": "\\alpha _ { r , e } = \\mathrm { R e L U } \\left( \\pmb { w } _ { r } ^ { \\top } \\pmb { o } _ { e } \\right) \\quad \\left( \\forall r \\in \\mathcal { R } \\cup \\right.", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 588, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 127, + 601 + ], + "score": 0.84, + "content": "\\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 588, + 506, + 604 + ], + "score": 1.0, + "content": "). Here the rectified linear unit is used to ensure the positivity of the weights. Note however", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "that the weights should not be normalized, because we may want to use the same relation more than", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 611, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 625 + ], + "score": 1.0, + "content": "once in the same path. Making the weights positive also has the effect of making the attention sparse", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 623, + 306, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 306, + 634 + ], + "score": 1.0, + "content": "and interpretable because there is no cancellation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 639, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 210, + 653 + ], + "score": 1.0, + "content": "For each extracted entity", + "type": "text" + }, + { + "bbox": [ + 210, + 643, + 216, + 650 + ], + "score": 0.7, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 640, + 505, + 653 + ], + "score": 1.0, + "content": ", we view the extracted entity and the answer of the question to be the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 261, + 664 + ], + "score": 1.0, + "content": "subject and the object in some triplet", + "type": "text" + }, + { + "bbox": [ + 262, + 651, + 293, + 663 + ], + "score": 0.94, + "content": "( e , p , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 651, + 414, + 664 + ], + "score": 1.0, + "content": ", respectively, where the path", + "type": "text" + }, + { + "bbox": [ + 415, + 653, + 421, + 662 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "is inferred from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 662, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 207, + 674 + ], + "score": 1.0, + "content": "question as the weights", + "type": "text" + }, + { + "bbox": [ + 207, + 664, + 225, + 674 + ], + "score": 0.89, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 662, + 505, + 674 + ], + "score": 1.0, + "content": "as we described above. Accordingly, the score for each candidate", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 673, + 266, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 137, + 685 + ], + "score": 1.0, + "content": "answer", + "type": "text" + }, + { + "bbox": [ + 137, + 675, + 144, + 683 + ], + "score": 0.63, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 673, + 266, + 685 + ], + "score": 1.0, + "content": "can be expressed using (1) as:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 688, + 389, + 703 + ], + "lines": [ + { + "bbox": [ + 221, + 688, + 389, + 703 + ], + "spans": [ + { + "bbox": [ + 221, + 688, + 389, + 703 + ], + "score": 0.92, + "content": "\\mathrm { s c o r e } _ { e } ( \\pmb { v } _ { o } ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } )", + "type": "interline_equation", + "image_path": "2bda7cc08ca20184c9dd2f7776ba0063ba8e71d48f6c8123f749f089080f9874.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 221, + 688, + 389, + 703 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 706, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 127, + 723 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 707, + 363, + 721 + ], + "score": 0.76, + "content": "\\begin{array} { r } { \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } = \\pmb { v } _ { e } + \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } \\delta _ { r } , \\sum _ { e , \\alpha , \\mathrm { K B } } = \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } ^ { 2 } \\pmb { \\Sigma } _ { r } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 705, + 396, + 723 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 396, + 709, + 407, + 718 + ], + "score": 0.86, + "content": "{ \\pmb v } _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 705, + 507, + 723 + ], + "score": 1.0, + "content": "is the vector associated", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 717, + 472, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 152, + 734 + ], + "score": 1.0, + "content": "with entity", + "type": "text" + }, + { + "bbox": [ + 152, + 723, + 158, + 730 + ], + "score": 0.75, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 717, + 176, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 720, + 237, + 731 + ], + "score": 0.9, + "content": "\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 717, + 472, + 734 + ], + "score": 1.0, + "content": "denotes the set of relations including the inverse relations.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 82, + 511, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 82, + 511, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 82, + 511, + 298 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 511, + 298 + ], + "score": 0.972, + "type": "image", + "image_path": "c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 82, + 511, + 154.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 154.0, + 511, + 226.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 226.0, + 511, + 298.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 306, + 506, + 396 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "Figure 2: The input to the system is a question in natural language. Two entities Forward and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 330 + ], + "score": 1.0, + "content": "Borussia Dortmund are identified in the question and associated with point mass distributions", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "centered at the corresponding entity vectors. An LSTM encodes the input into a sequence of output", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 473, + 353 + ], + "score": 1.0, + "content": "vectors of the same length. Then we take average of the output vectors weighted by attention", + "type": "text" + }, + { + "bbox": [ + 474, + 341, + 490, + 352 + ], + "score": 0.89, + "content": "\\mathit { p } _ { t , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 199, + 363 + ], + "score": 1.0, + "content": "each recognized entity", + "type": "text" + }, + { + "bbox": [ + 199, + 353, + 205, + 361 + ], + "score": 0.63, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 351, + 292, + 363 + ], + "score": 1.0, + "content": "to predict the weight", + "type": "text" + }, + { + "bbox": [ + 292, + 352, + 310, + 363 + ], + "score": 0.9, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 351, + 359, + 363 + ], + "score": 1.0, + "content": "for relation", + "type": "text" + }, + { + "bbox": [ + 359, + 353, + 366, + 361 + ], + "score": 0.66, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 351, + 456, + 363 + ], + "score": 1.0, + "content": "associated with entity", + "type": "text" + }, + { + "bbox": [ + 456, + 353, + 462, + 361 + ], + "score": 0.52, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 351, + 505, + 363 + ], + "score": 1.0, + "content": ". We form", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 317, + 375 + ], + "score": 1.0, + "content": "a Gaussian attention over the entities for each entity", + "type": "text" + }, + { + "bbox": [ + 318, + 364, + 324, + 372 + ], + "score": 0.7, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "by convolving the corresponding point mass", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 400, + 386 + ], + "score": 1.0, + "content": "with the (pre-trained) Gaussian embeddings of the relations weighted by", + "type": "text" + }, + { + "bbox": [ + 400, + 375, + 418, + 385 + ], + "score": 0.88, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "according to Eq. (6).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 383, + 489, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 489, + 397 + ], + "score": 1.0, + "content": "The final prediction is produced by taking the product and normalizing the Gaussian attentions.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 108, + 421, + 255, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 256, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 237, + 435 + ], + "score": 1.0, + "content": "states for each recognized entity", + "type": "text" + }, + { + "bbox": [ + 237, + 424, + 243, + 431 + ], + "score": 0.77, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 419, + 256, + 435 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 419, + 256, + 435 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 436, + 396, + 450 + ], + "lines": [ + { + "bbox": [ + 213, + 436, + 396, + 450 + ], + "spans": [ + { + "bbox": [ + 213, + 436, + 396, + 450 + ], + "score": 0.9, + "content": "p _ { t , e } = \\mathrm { s o f t m a x } \\left( f ( v _ { e } , h _ { t } ) \\right) \\quad ( t = 1 , . . . , T ) ,", + "type": "interline_equation", + "image_path": "6a31c5c001b680422b7d6aafeee5203c2e1e12300f556bf38b98a9f0280e2f71.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 213, + 436, + 396, + 450 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 134, + 467 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 456, + 146, + 465 + ], + "score": 0.86, + "content": "{ \\pmb v } _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 452, + 310, + 467 + ], + "score": 1.0, + "content": "is the vector associated with the entity", + "type": "text" + }, + { + "bbox": [ + 311, + 456, + 316, + 464 + ], + "score": 0.71, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 452, + 468, + 467 + ], + "score": 1.0, + "content": ". We use a two-layer perceptron for", + "type": "text" + }, + { + "bbox": [ + 469, + 454, + 476, + 465 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "in our", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 464, + 292, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 292, + 477 + ], + "score": 1.0, + "content": "experiments, which can be written as follows:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 452, + 505, + 477 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 480, + 419, + 495 + ], + "lines": [ + { + "bbox": [ + 191, + 480, + 419, + 495 + ], + "spans": [ + { + "bbox": [ + 191, + 480, + 419, + 495 + ], + "score": 0.88, + "content": "f ( \\pmb { v } _ { e } , \\pmb { h } _ { t } ) = \\pmb { u } _ { f } ^ { \\top } \\mathrm { R e L U } \\left( \\pmb { W } _ { f , v } \\pmb { v } _ { e } + \\pmb { W } _ { f , h } \\pmb { h } _ { t } + \\pmb { b } _ { 1 } \\right) + b _ { 2 } ,", + "type": "interline_equation", + "image_path": "b54c9eabaf2cfb70e6f9942a009c5b30d6b3c5e53c41a45f71514307ec4003ec.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 191, + 480, + 419, + 495 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 503, + 523 + ], + "lines": [ + { + "bbox": [ + 104, + 496, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 133, + 515 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 145, + 499, + 398, + 513 + ], + "score": 0.26, + "content": "\\mathbf { \\widetilde { \\Gamma } } _ { f , v } \\in \\mathbb { R } ^ { L \\times d } , W _ { f , h } \\in \\mathbb { R } ^ { L \\times H } , b _ { 1 } \\in \\mathbb { R } ^ { L } , { \\mathbf { u } } _ { f } \\in \\mathbb { R } ^ { L } , b _ { 2 } \\in \\mathbb { R } \\mathrm { a r e } \\mathrm { p a r }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 496, + 455, + 515 + ], + "score": 1.0, + "content": "ameters. Here", + "type": "text" + }, + { + "bbox": [ + 455, + 501, + 506, + 513 + ], + "score": 0.8, + "content": "{ \\mathrm { R e L U } } ( x ) =", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 510, + 466, + 524 + ], + "spans": [ + { + "bbox": [ + 107, + 512, + 149, + 524 + ], + "score": 0.89, + "content": "\\operatorname* { m a x } ( 0 , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 510, + 424, + 524 + ], + "score": 1.0, + "content": "is the rectified linear unit. Finally, softmax denotes softmax over the", + "type": "text" + }, + { + "bbox": [ + 425, + 512, + 433, + 522 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 510, + 466, + 524 + ], + "score": 1.0, + "content": "tokens.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 496, + 506, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 458, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 459, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 208, + 542 + ], + "score": 1.0, + "content": "Next, we use the weights", + "type": "text" + }, + { + "bbox": [ + 209, + 531, + 225, + 541 + ], + "score": 0.88, + "content": "\\mathit { p } _ { t , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 528, + 434, + 542 + ], + "score": 1.0, + "content": "to compute the weighted sum over the hidden states", + "type": "text" + }, + { + "bbox": [ + 434, + 529, + 446, + 540 + ], + "score": 0.88, + "content": "\\boldsymbol { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 528, + 459, + 542 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 528, + 459, + 542 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 543, + 347, + 567 + ], + "lines": [ + { + "bbox": [ + 264, + 543, + 347, + 567 + ], + "spans": [ + { + "bbox": [ + 264, + 543, + 347, + 567 + ], + "score": 0.93, + "content": "o _ { e } = \\sum _ { t = 1 } ^ { T } p _ { t , e } h _ { t } .", + "type": "interline_equation", + "image_path": "2b53a112ee0c39aded391dee712421d6078d99ad25424f6d26c2802163f13eaf.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 264, + 543, + 347, + 567 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 500, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 232, + 591 + ], + "score": 1.0, + "content": "Then we compute the weights", + "type": "text" + }, + { + "bbox": [ + 232, + 579, + 250, + 590 + ], + "score": 0.89, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 576, + 349, + 591 + ], + "score": 1.0, + "content": "over all the relations as", + "type": "text" + }, + { + "bbox": [ + 350, + 576, + 500, + 591 + ], + "score": 0.61, + "content": "\\alpha _ { r , e } = \\mathrm { R e L U } \\left( \\pmb { w } _ { r } ^ { \\top } \\pmb { o } _ { e } \\right) \\quad \\left( \\forall r \\in \\mathcal { R } \\cup \\right.", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 588, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 127, + 601 + ], + "score": 0.84, + "content": "\\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 588, + 506, + 604 + ], + "score": 1.0, + "content": "). Here the rectified linear unit is used to ensure the positivity of the weights. Note however", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "that the weights should not be normalized, because we may want to use the same relation more than", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 611, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 625 + ], + "score": 1.0, + "content": "once in the same path. Making the weights positive also has the effect of making the attention sparse", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 623, + 306, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 306, + 634 + ], + "score": 1.0, + "content": "and interpretable because there is no cancellation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 576, + 506, + 634 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 639, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 210, + 653 + ], + "score": 1.0, + "content": "For each extracted entity", + "type": "text" + }, + { + "bbox": [ + 210, + 643, + 216, + 650 + ], + "score": 0.7, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 640, + 505, + 653 + ], + "score": 1.0, + "content": ", we view the extracted entity and the answer of the question to be the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 261, + 664 + ], + "score": 1.0, + "content": "subject and the object in some triplet", + "type": "text" + }, + { + "bbox": [ + 262, + 651, + 293, + 663 + ], + "score": 0.94, + "content": "( e , p , o )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 651, + 414, + 664 + ], + "score": 1.0, + "content": ", respectively, where the path", + "type": "text" + }, + { + "bbox": [ + 415, + 653, + 421, + 662 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "is inferred from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 662, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 207, + 674 + ], + "score": 1.0, + "content": "question as the weights", + "type": "text" + }, + { + "bbox": [ + 207, + 664, + 225, + 674 + ], + "score": 0.89, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 662, + 505, + 674 + ], + "score": 1.0, + "content": "as we described above. Accordingly, the score for each candidate", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 673, + 266, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 137, + 685 + ], + "score": 1.0, + "content": "answer", + "type": "text" + }, + { + "bbox": [ + 137, + 675, + 144, + 683 + ], + "score": 0.63, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 673, + 266, + 685 + ], + "score": 1.0, + "content": "can be expressed using (1) as:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 640, + 506, + 685 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 688, + 389, + 703 + ], + "lines": [ + { + "bbox": [ + 221, + 688, + 389, + 703 + ], + "spans": [ + { + "bbox": [ + 221, + 688, + 389, + 703 + ], + "score": 0.92, + "content": "\\mathrm { s c o r e } _ { e } ( \\pmb { v } _ { o } ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } )", + "type": "interline_equation", + "image_path": "2bda7cc08ca20184c9dd2f7776ba0063ba8e71d48f6c8123f749f089080f9874.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 221, + 688, + 389, + 703 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 706, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 127, + 723 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 707, + 363, + 721 + ], + "score": 0.76, + "content": "\\begin{array} { r } { \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } = \\pmb { v } _ { e } + \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } \\delta _ { r } , \\sum _ { e , \\alpha , \\mathrm { K B } } = \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } ^ { 2 } \\pmb { \\Sigma } _ { r } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 705, + 396, + 723 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 396, + 709, + 407, + 718 + ], + "score": 0.86, + "content": "{ \\pmb v } _ { e }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 705, + 507, + 723 + ], + "score": 1.0, + "content": "is the vector associated", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 717, + 472, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 152, + 734 + ], + "score": 1.0, + "content": "with entity", + "type": "text" + }, + { + "bbox": [ + 152, + 723, + 158, + 730 + ], + "score": 0.75, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 717, + 176, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 720, + 237, + 731 + ], + "score": 0.9, + "content": "\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 717, + 472, + 734 + ], + "score": 1.0, + "content": "denotes the set of relations including the inverse relations.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 705, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 195, + 93 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 196, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 196, + 96 + ], + "score": 1.0, + "content": "3.3 CONJUNCTION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 122, + 115 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 103, + 142, + 115 + ], + "score": 0.92, + "content": "\\mathcal { E } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 103, + 331, + 115 + ], + "score": 1.0, + "content": "be the set of entities recognized in the question", + "type": "text" + }, + { + "bbox": [ + 332, + 105, + 338, + 115 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 103, + 505, + 115 + ], + "score": 1.0, + "content": ". The final step of our model is to take the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 127 + ], + "score": 1.0, + "content": "conjunction of the Gaussian attentions derived in the previous step. This step is simply carried out", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 309, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 309, + 137 + ], + "score": 1.0, + "content": "by multiplying the Gaussian attentions as follows:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 137, + 137, + 473, + 199 + ], + "lines": [ + { + "bbox": [ + 137, + 137, + 473, + 199 + ], + "spans": [ + { + "bbox": [ + 137, + 137, + 473, + 199 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { o } | \\mathcal { E } ( q ) , \\Theta ) = \\underset { e \\in \\mathcal { E } ( q ) } { \\log \\prod } \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ) } \\\\ & { \\qquad = - \\cfrac { 1 } { 2 } \\displaystyle \\sum _ { e \\in \\mathcal { E } ( q ) } \\left( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } \\right) ^ { \\top } \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ^ { - 1 } ( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } ) + \\mathrm { c o n s t . } , } \\end{array}", + "type": "interline_equation", + "image_path": "7a525619e51c23780d45b9a7021f18a63cee7243fd7e4bee1093ec968f13bce2.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 137, + 137, + 473, + 157.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 137, + 157.66666666666666, + 473, + 178.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 137, + 178.33333333333331, + 473, + 198.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 199, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 104, + 198, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 104, + 198, + 367, + 214 + ], + "score": 1.0, + "content": "which is again a (logarithm of) Gaussian scoring function, where", + "type": "text" + }, + { + "bbox": [ + 367, + 201, + 399, + 212 + ], + "score": 0.89, + "content": "\\mu _ { e , \\alpha , \\mathrm { K B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 198, + 417, + 214 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 417, + 200, + 450, + 212 + ], + "score": 0.92, + "content": "\\Sigma _ { e , \\alpha , \\mathrm { K B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 198, + 506, + 214 + ], + "score": 1.0, + "content": "are the mean", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 361, + 223 + ], + "score": 1.0, + "content": "and the covariance of the Gaussian attention given in (6). Here", + "type": "text" + }, + { + "bbox": [ + 362, + 211, + 371, + 220 + ], + "score": 0.8, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "denotes all the parameters of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 222, + 217, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 217, + 234 + ], + "score": 1.0, + "content": "question-answering model.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 245, + 329, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 331, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 331, + 258 + ], + "score": 1.0, + "content": "3.4 TRAINING THE QUESTION ANSWERING MODEL", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 265, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 289, + 279 + ], + "score": 1.0, + "content": "Suppose we have a knowledge base", + "type": "text" + }, + { + "bbox": [ + 289, + 266, + 329, + 278 + ], + "score": 0.92, + "content": "( \\mathcal { E } , \\mathcal { R } , \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "and a trained TransGaussian model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 108, + 276, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 108, + 277, + 217, + 291 + ], + "score": 0.91, + "content": "\\big ( \\{ v _ { e } \\} _ { e \\in \\mathcal { E } } , \\{ ( \\delta _ { r } , \\Sigma _ { r } ) \\} _ { r \\in \\bar { \\mathcal { R } } } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 276, + 255, + 293 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 256, + 277, + 266, + 288 + ], + "score": 0.83, + "content": "\\bar { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 276, + 506, + 293 + ], + "score": 1.0, + "content": "is the set of all relations including the inverse rela-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "tions. During training time, we assume the training set is a supervised question-answer pairs", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 299, + 504, + 312 + ], + "spans": [ + { + "bbox": [ + 107, + 300, + 243, + 312 + ], + "score": 0.92, + "content": "\\{ ( q _ { i } , \\mathcal { E } ( q _ { i } ) , a _ { i } \\bar { ) } : i = 1 , 2 , . . . , m \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 299, + 271, + 312 + ], + "score": 1.0, + "content": ". Here,", + "type": "text" + }, + { + "bbox": [ + 271, + 302, + 280, + 311 + ], + "score": 0.85, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 299, + 461, + 312 + ], + "score": 1.0, + "content": "is a question formulated in natural language,", + "type": "text" + }, + { + "bbox": [ + 462, + 300, + 504, + 312 + ], + "score": 0.92, + "content": "\\bar { \\mathcal { E } } ( q _ { i } ) \\subset \\mathcal { E }", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 388, + 324 + ], + "score": 1.0, + "content": "is a set of knowledge base entities that appears in the question, and", + "type": "text" + }, + { + "bbox": [ + 388, + 311, + 420, + 322 + ], + "score": 0.92, + "content": "a _ { i } ~ \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "is the answer to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 322, + 488, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 488, + 334 + ], + "score": 1.0, + "content": "question. For example, on a knowledge base of soccer players, a valid training sample could be", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 511, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 513, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 513, + 352 + ], + "score": 1.0, + "content": "(“Who plays forward for Borussia Dortmund?”,[Forward, Borussia Dortmund], Marco Reus).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 355, + 507, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 408, + 368 + ], + "score": 1.0, + "content": "Note that the answer to a question is not necessarily unique and we allow", + "type": "text" + }, + { + "bbox": [ + 408, + 358, + 418, + 366 + ], + "score": 0.86, + "content": "a _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "to be any of the true", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 390, + 379 + ], + "score": 1.0, + "content": "answers in the knowledge base. During test time, our model is shown", + "type": "text" + }, + { + "bbox": [ + 390, + 367, + 432, + 379 + ], + "score": 0.92, + "content": "\\left( q _ { i } , \\mathcal { E } ( q _ { i } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "and the task is to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 377, + 318, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 124, + 391 + ], + "score": 1.0, + "content": "find", + "type": "text" + }, + { + "bbox": [ + 124, + 379, + 134, + 389 + ], + "score": 0.84, + "content": "a _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 377, + 267, + 391 + ], + "score": 1.0, + "content": ". We denote the set of answers to", + "type": "text" + }, + { + "bbox": [ + 267, + 379, + 276, + 389 + ], + "score": 0.84, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 377, + 290, + 391 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 290, + 378, + 314, + 390 + ], + "score": 0.93, + "content": "A ( q _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 377, + 318, + 391 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 108, + 394, + 410, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 409, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 409, + 408 + ], + "score": 1.0, + "content": "To train our question-answering model, we minimize the objective function", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 408, + 513, + 442 + ], + "lines": [ + { + "bbox": [ + 111, + 408, + 513, + 442 + ], + "spans": [ + { + "bbox": [ + 111, + 408, + 513, + 442 + ], + "score": 0.9, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { m } \\biggl ( \\underset { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) } { \\mathbb { E } } \\left[ [ \\mu - \\mathrm { s c o r e } ( v _ { a _ { i } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) + \\mathrm { s c o r e } ( v _ { t ^ { \\prime } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) ] _ { + } \\right] + \\nu \\sum _ { e \\in \\mathcal { E } ( q _ { i } ) } \\sum _ { r \\in \\mathcal { R } } | \\alpha _ { r , e } | \\biggr ) + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }", + "type": "interline_equation", + "image_path": "da79e56167ea45f43a99cc298820ad1427c0d4cc335951436f969b82dfa3a070.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 408, + 513, + 419.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 419.3333333333333, + 513, + 430.66666666666663 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 430.66666666666663, + 513, + 441.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 133, + 457 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 443, + 173, + 456 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 442, + 507, + 457 + ], + "score": 1.0, + "content": "is expectation with respect to a uniform distribution over of all incorrect answers to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 115, + 465 + ], + "score": 0.8, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 454, + 506, + 466 + ], + "score": 1.0, + "content": ", which we approximate with 10 random samples. We assume that the number of relations implied", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "in a question is small compared to the total number of relations in the knowledge base. Hence the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 476, + 433, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 155, + 488 + ], + "score": 1.0, + "content": "coefficients", + "type": "text" + }, + { + "bbox": [ + 155, + 478, + 172, + 488 + ], + "score": 0.87, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 477, + 286, + 488 + ], + "score": 1.0, + "content": "computed for each question", + "type": "text" + }, + { + "bbox": [ + 286, + 478, + 295, + 487 + ], + "score": 0.83, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 477, + 392, + 488 + ], + "score": 1.0, + "content": "are regularized by their", + "type": "text" + }, + { + "bbox": [ + 392, + 476, + 402, + 487 + ], + "score": 0.86, + "content": "\\ell _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 477, + 433, + 488 + ], + "score": 1.0, + "content": "norms.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 108, + 503, + 200, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 201, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 201, + 517 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "As a demonstration of the proposed framework, we perform question and answering on a dataset", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "of soccer players. In this work, we consider two types of questions. A path query is a question", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "that contains only one named entity from the knowledge base and its answer can be found from", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 559, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 506, + 574 + ], + "score": 1.0, + "content": "the knowledge graph by walking down a path consisting of a few relations. A conjunctive query", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "score": 1.0, + "content": "is a question that contains more than one entities and the answer is given as the conjunction of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "all path queries starting from each entity. Furthermore, we experimented on a knowledge base", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "completion task with TransGaussian embeddings to test its capability of generalization to unseen", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "fact. Since knowledge base completion is not the main focus of this work, we include the results in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 615, + 165, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 165, + 627 + ], + "score": 1.0, + "content": "the Appendix.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 108, + 639, + 246, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 249, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 249, + 651 + ], + "score": 1.0, + "content": "4.1 WORLDCUP2014 DATASET", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 504, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "We build a knowledge base of football players that participated in FIFA World Cup", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "score": 1.0, + "content": "2014 1. The original dataset consists of players’ information such as nationality, posi-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "tions on the field and ages etc. We picked a few attributes and constructed 1127 en-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "tities and 6 atomic relations. The entities include 736 players, 297 professional soc-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 702, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 505, + 716 + ], + "score": 1.0, + "content": "cer clubs, 51 countries, 39 numbers and 4 positions. And the six atomic relations are", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 118, + 721, + 462, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 464, + 735 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 464, + 735 + ], + "score": 1.0, + "content": "1The original dataset can be found at https://datahub.io/dataset/fifa-world-cup-2014-all-players.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 195, + 93 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 196, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 196, + 96 + ], + "score": 1.0, + "content": "3.3 CONJUNCTION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 122, + 115 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 103, + 142, + 115 + ], + "score": 0.92, + "content": "\\mathcal { E } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 103, + 331, + 115 + ], + "score": 1.0, + "content": "be the set of entities recognized in the question", + "type": "text" + }, + { + "bbox": [ + 332, + 105, + 338, + 115 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 103, + 505, + 115 + ], + "score": 1.0, + "content": ". The final step of our model is to take the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 127 + ], + "score": 1.0, + "content": "conjunction of the Gaussian attentions derived in the previous step. This step is simply carried out", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 309, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 309, + 137 + ], + "score": 1.0, + "content": "by multiplying the Gaussian attentions as follows:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 103, + 505, + 137 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 137, + 137, + 473, + 199 + ], + "lines": [ + { + "bbox": [ + 137, + 137, + 473, + 199 + ], + "spans": [ + { + "bbox": [ + 137, + 137, + 473, + 199 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { o } | \\mathcal { E } ( q ) , \\Theta ) = \\underset { e \\in \\mathcal { E } ( q ) } { \\log \\prod } \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ) } \\\\ & { \\qquad = - \\cfrac { 1 } { 2 } \\displaystyle \\sum _ { e \\in \\mathcal { E } ( q ) } \\left( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } \\right) ^ { \\top } \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ^ { - 1 } ( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } ) + \\mathrm { c o n s t . } , } \\end{array}", + "type": "interline_equation", + "image_path": "7a525619e51c23780d45b9a7021f18a63cee7243fd7e4bee1093ec968f13bce2.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 137, + 137, + 473, + 157.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 137, + 157.66666666666666, + 473, + 178.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 137, + 178.33333333333331, + 473, + 198.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 199, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 104, + 198, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 104, + 198, + 367, + 214 + ], + "score": 1.0, + "content": "which is again a (logarithm of) Gaussian scoring function, where", + "type": "text" + }, + { + "bbox": [ + 367, + 201, + 399, + 212 + ], + "score": 0.89, + "content": "\\mu _ { e , \\alpha , \\mathrm { K B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 198, + 417, + 214 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 417, + 200, + 450, + 212 + ], + "score": 0.92, + "content": "\\Sigma _ { e , \\alpha , \\mathrm { K B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 198, + 506, + 214 + ], + "score": 1.0, + "content": "are the mean", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 361, + 223 + ], + "score": 1.0, + "content": "and the covariance of the Gaussian attention given in (6). Here", + "type": "text" + }, + { + "bbox": [ + 362, + 211, + 371, + 220 + ], + "score": 0.8, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "denotes all the parameters of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 222, + 217, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 217, + 234 + ], + "score": 1.0, + "content": "question-answering model.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 198, + 506, + 234 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 245, + 329, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 331, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 331, + 258 + ], + "score": 1.0, + "content": "3.4 TRAINING THE QUESTION ANSWERING MODEL", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 265, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 289, + 279 + ], + "score": 1.0, + "content": "Suppose we have a knowledge base", + "type": "text" + }, + { + "bbox": [ + 289, + 266, + 329, + 278 + ], + "score": 0.92, + "content": "( \\mathcal { E } , \\mathcal { R } , \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "and a trained TransGaussian model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 108, + 276, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 108, + 277, + 217, + 291 + ], + "score": 0.91, + "content": "\\big ( \\{ v _ { e } \\} _ { e \\in \\mathcal { E } } , \\{ ( \\delta _ { r } , \\Sigma _ { r } ) \\} _ { r \\in \\bar { \\mathcal { R } } } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 276, + 255, + 293 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 256, + 277, + 266, + 288 + ], + "score": 0.83, + "content": "\\bar { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 276, + 506, + 293 + ], + "score": 1.0, + "content": "is the set of all relations including the inverse rela-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "tions. During training time, we assume the training set is a supervised question-answer pairs", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 299, + 504, + 312 + ], + "spans": [ + { + "bbox": [ + 107, + 300, + 243, + 312 + ], + "score": 0.92, + "content": "\\{ ( q _ { i } , \\mathcal { E } ( q _ { i } ) , a _ { i } \\bar { ) } : i = 1 , 2 , . . . , m \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 299, + 271, + 312 + ], + "score": 1.0, + "content": ". Here,", + "type": "text" + }, + { + "bbox": [ + 271, + 302, + 280, + 311 + ], + "score": 0.85, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 299, + 461, + 312 + ], + "score": 1.0, + "content": "is a question formulated in natural language,", + "type": "text" + }, + { + "bbox": [ + 462, + 300, + 504, + 312 + ], + "score": 0.92, + "content": "\\bar { \\mathcal { E } } ( q _ { i } ) \\subset \\mathcal { E }", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 388, + 324 + ], + "score": 1.0, + "content": "is a set of knowledge base entities that appears in the question, and", + "type": "text" + }, + { + "bbox": [ + 388, + 311, + 420, + 322 + ], + "score": 0.92, + "content": "a _ { i } ~ \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "is the answer to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 322, + 488, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 488, + 334 + ], + "score": 1.0, + "content": "question. For example, on a knowledge base of soccer players, a valid training sample could be", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 264, + 506, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 511, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 513, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 513, + 352 + ], + "score": 1.0, + "content": "(“Who plays forward for Borussia Dortmund?”,[Forward, Borussia Dortmund], Marco Reus).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 337, + 513, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 355, + 507, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 408, + 368 + ], + "score": 1.0, + "content": "Note that the answer to a question is not necessarily unique and we allow", + "type": "text" + }, + { + "bbox": [ + 408, + 358, + 418, + 366 + ], + "score": 0.86, + "content": "a _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "to be any of the true", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 390, + 379 + ], + "score": 1.0, + "content": "answers in the knowledge base. During test time, our model is shown", + "type": "text" + }, + { + "bbox": [ + 390, + 367, + 432, + 379 + ], + "score": 0.92, + "content": "\\left( q _ { i } , \\mathcal { E } ( q _ { i } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "and the task is to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 377, + 318, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 124, + 391 + ], + "score": 1.0, + "content": "find", + "type": "text" + }, + { + "bbox": [ + 124, + 379, + 134, + 389 + ], + "score": 0.84, + "content": "a _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 377, + 267, + 391 + ], + "score": 1.0, + "content": ". We denote the set of answers to", + "type": "text" + }, + { + "bbox": [ + 267, + 379, + 276, + 389 + ], + "score": 0.84, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 377, + 290, + 391 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 290, + 378, + 314, + 390 + ], + "score": 0.93, + "content": "A ( q _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 377, + 318, + 391 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 356, + 505, + 391 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 394, + 410, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 409, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 409, + 408 + ], + "score": 1.0, + "content": "To train our question-answering model, we minimize the objective function", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 393, + 409, + 408 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 408, + 513, + 442 + ], + "lines": [ + { + "bbox": [ + 111, + 408, + 513, + 442 + ], + "spans": [ + { + "bbox": [ + 111, + 408, + 513, + 442 + ], + "score": 0.9, + "content": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { m } \\biggl ( \\underset { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) } { \\mathbb { E } } \\left[ [ \\mu - \\mathrm { s c o r e } ( v _ { a _ { i } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) + \\mathrm { s c o r e } ( v _ { t ^ { \\prime } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) ] _ { + } \\right] + \\nu \\sum _ { e \\in \\mathcal { E } ( q _ { i } ) } \\sum _ { r \\in \\mathcal { R } } | \\alpha _ { r , e } | \\biggr ) + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }", + "type": "interline_equation", + "image_path": "da79e56167ea45f43a99cc298820ad1427c0d4cc335951436f969b82dfa3a070.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 408, + 513, + 419.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 419.3333333333333, + 513, + 430.66666666666663 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 430.66666666666663, + 513, + 441.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 133, + 457 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 443, + 173, + 456 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 442, + 507, + 457 + ], + "score": 1.0, + "content": "is expectation with respect to a uniform distribution over of all incorrect answers to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 115, + 465 + ], + "score": 0.8, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 454, + 506, + 466 + ], + "score": 1.0, + "content": ", which we approximate with 10 random samples. We assume that the number of relations implied", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "in a question is small compared to the total number of relations in the knowledge base. Hence the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 476, + 433, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 155, + 488 + ], + "score": 1.0, + "content": "coefficients", + "type": "text" + }, + { + "bbox": [ + 155, + 478, + 172, + 488 + ], + "score": 0.87, + "content": "\\alpha _ { r , e }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 477, + 286, + 488 + ], + "score": 1.0, + "content": "computed for each question", + "type": "text" + }, + { + "bbox": [ + 286, + 478, + 295, + 487 + ], + "score": 0.83, + "content": "q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 477, + 392, + 488 + ], + "score": 1.0, + "content": "are regularized by their", + "type": "text" + }, + { + "bbox": [ + 392, + 476, + 402, + 487 + ], + "score": 0.86, + "content": "\\ell _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 477, + 433, + 488 + ], + "score": 1.0, + "content": "norms.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 442, + 507, + 488 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 503, + 200, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 201, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 201, + 517 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "As a demonstration of the proposed framework, we perform question and answering on a dataset", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "of soccer players. In this work, we consider two types of questions. A path query is a question", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "that contains only one named entity from the knowledge base and its answer can be found from", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 559, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 506, + 574 + ], + "score": 1.0, + "content": "the knowledge graph by walking down a path consisting of a few relations. A conjunctive query", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "score": 1.0, + "content": "is a question that contains more than one entities and the answer is given as the conjunction of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "all path queries starting from each entity. Furthermore, we experimented on a knowledge base", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "completion task with TransGaussian embeddings to test its capability of generalization to unseen", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "fact. Since knowledge base completion is not the main focus of this work, we include the results in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 615, + 165, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 165, + 627 + ], + "score": 1.0, + "content": "the Appendix.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 527, + 506, + 627 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 639, + 246, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 249, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 249, + 651 + ], + "score": 1.0, + "content": "4.1 WORLDCUP2014 DATASET", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 504, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "We build a knowledge base of football players that participated in FIFA World Cup", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 683 + ], + "score": 1.0, + "content": "2014 1. The original dataset consists of players’ information such as nationality, posi-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 694 + ], + "score": 1.0, + "content": "tions on the field and ages etc. We picked a few attributes and constructed 1127 en-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "tities and 6 atomic relations. The entities include 736 players, 297 professional soc-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 702, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 505, + 716 + ], + "score": 1.0, + "content": "cer clubs, 51 countries, 39 numbers and 4 positions. And the six atomic relations are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 111, + 80, + 275, + 92 + ], + "spans": [ + { + "bbox": [ + 111, + 80, + 230, + 92 + ], + "score": 1.0, + "content": "plays in club: PLAYER", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 231, + 81, + 272, + 91 + ], + "score": 0.3, + "content": " \\mathrm { C L U B }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 272, + 80, + 275, + 92 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 111, + 91, + 259, + 104 + ], + "spans": [ + { + "bbox": [ + 111, + 91, + 197, + 104 + ], + "score": 1.0, + "content": "is aged: PLAYER", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 198, + 93, + 210, + 102 + ], + "score": 0.82, + "content": "", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 211, + 91, + 259, + 104 + ], + "score": 1.0, + "content": "NUMBER,", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 104, + 319, + 115 + ], + "spans": [ + { + "bbox": [ + 111, + 104, + 254, + 115 + ], + "score": 1.0, + "content": "plays for country: PLAYER", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 255, + 104, + 268, + 113 + ], + "score": 0.8, + "content": "", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 268, + 104, + 319, + 115 + ], + "score": 1.0, + "content": "COUNTRY,", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 329, + 80, + 521, + 92 + ], + "spans": [ + { + "bbox": [ + 329, + 80, + 457, + 92 + ], + "score": 1.0, + "content": "plays position: PLAYER", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 457, + 81, + 470, + 91 + ], + "score": 0.83, + "content": "", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 470, + 80, + 521, + 92 + ], + "score": 1.0, + "content": "POSITION,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 329, + 90, + 514, + 104 + ], + "spans": [ + { + "bbox": [ + 329, + 90, + 451, + 104 + ], + "score": 1.0, + "content": "wears number 2: PLAYER", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 452, + 93, + 464, + 102 + ], + "score": 0.82, + "content": "", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 465, + 90, + 514, + 104 + ], + "score": 1.0, + "content": "NUMBER,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 330, + 103, + 502, + 115 + ], + "spans": [ + { + "bbox": [ + 330, + 103, + 437, + 115 + ], + "score": 1.0, + "content": "is in country: CLUB", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 437, + 104, + 451, + 113 + ], + "score": 0.8, + "content": "", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 451, + 103, + 502, + 115 + ], + "score": 1.0, + "content": "COUNTRY,", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 658, + 505, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 111, + 80, + 318, + 114 + ], + "lines": [ + { + "bbox": [ + 111, + 80, + 275, + 92 + ], + "spans": [ + { + "bbox": [ + 111, + 80, + 230, + 92 + ], + "score": 1.0, + "content": "plays in club: PLAYER", + "type": "text" + }, + { + "bbox": [ + 231, + 81, + 272, + 91 + ], + "score": 0.3, + "content": " \\mathrm { C L U B }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 80, + 275, + 92 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 111, + 91, + 259, + 104 + ], + "spans": [ + { + "bbox": [ + 111, + 91, + 197, + 104 + ], + "score": 1.0, + "content": "is aged: PLAYER", + "type": "text" + }, + { + "bbox": [ + 198, + 93, + 210, + 102 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 91, + 259, + 104 + ], + "score": 1.0, + "content": "NUMBER,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 104, + 319, + 115 + ], + "spans": [ + { + "bbox": [ + 111, + 104, + 254, + 115 + ], + "score": 1.0, + "content": "plays for country: PLAYER", + "type": "text" + }, + { + "bbox": [ + 255, + 104, + 268, + 113 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 104, + 319, + 115 + ], + "score": 1.0, + "content": "COUNTRY,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 329, + 81, + 519, + 114 + ], + "lines": [ + { + "bbox": [ + 329, + 80, + 521, + 92 + ], + "spans": [ + { + "bbox": [ + 329, + 80, + 457, + 92 + ], + "score": 1.0, + "content": "plays position: PLAYER", + "type": "text" + }, + { + "bbox": [ + 457, + 81, + 470, + 91 + ], + "score": 0.83, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 80, + 521, + 92 + ], + "score": 1.0, + "content": "POSITION,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 329, + 90, + 514, + 104 + ], + "spans": [ + { + "bbox": [ + 329, + 90, + 451, + 104 + ], + "score": 1.0, + "content": "wears number 2: PLAYER", + "type": "text" + }, + { + "bbox": [ + 452, + 93, + 464, + 102 + ], + "score": 0.82, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 90, + 514, + 104 + ], + "score": 1.0, + "content": "NUMBER,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 330, + 103, + 502, + 115 + ], + "spans": [ + { + "bbox": [ + 330, + 103, + 437, + 115 + ], + "score": 1.0, + "content": "is in country: CLUB", + "type": "text" + }, + { + "bbox": [ + 437, + 104, + 451, + 113 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 103, + 502, + 115 + ], + "score": 1.0, + "content": "COUNTRY,", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 114, + 506, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "where PLAYER, CLUB, NUMBER, etc, denote the type of entities that can appear as the left or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 124, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 139 + ], + "score": 1.0, + "content": "right argument for each relation. Some relations share the same type as the right argument, e.g.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 136, + 302, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 302, + 149 + ], + "score": 1.0, + "content": "plays for country and is in country.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "Given the entities and relations, we transformed the dataset into a set of 3977 triplets. A list of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "score": 1.0, + "content": "sample triplets can be found in the Appendix. Based on these triplets, we created two sets of question", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 174, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 188 + ], + "score": 1.0, + "content": "answering tasks which we call path query and conjunctive query respectively. The answer of every", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 185, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 200 + ], + "score": 1.0, + "content": "question is always an entity in the knowledge base and a question can involve one or two triplets.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 196, + 266, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 266, + 210 + ], + "score": 1.0, + "content": "The questions are generated as follows.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 104, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "Path queries. Among the paths on the knowledge graph, there are some natural composition of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 304, + 244 + ], + "score": 1.0, + "content": "relations, e.g., plays in country (PLAYER", + "type": "text" + }, + { + "bbox": [ + 304, + 232, + 318, + 242 + ], + "score": 0.78, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "COUNTRY) can be decomposed as the com-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 261, + 255 + ], + "score": 1.0, + "content": "position of plays in club (PLAYE", + "type": "text" + }, + { + "bbox": [ + 262, + 243, + 296, + 253 + ], + "score": 0.34, + "content": "\\mathbf { R } \\to \\mathbf { C L } ", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 242, + 406, + 255 + ], + "score": 1.0, + "content": "UB) and is in country", + "type": "text" + }, + { + "bbox": [ + 406, + 243, + 501, + 253 + ], + "score": 0.59, + "content": "( \\mathbf { C L U B } \\to \\mathbf { C O U N T R Y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 242, + 505, + 255 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "In addition to the atomic relations, we manually picked a few meaningful compositions of relations", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 264, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 334, + 277 + ], + "score": 1.0, + "content": "and formed query templates, which takes the form “find", + "type": "text" + }, + { + "bbox": [ + 334, + 264, + 360, + 275 + ], + "score": 0.9, + "content": "e \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 264, + 403, + 277 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 403, + 264, + 434, + 276 + ], + "score": 0.93, + "content": "( s , p , e )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 264, + 497, + 277 + ], + "score": 1.0, + "content": "is true”, where", + "type": "text" + }, + { + "bbox": [ + 498, + 266, + 504, + 274 + ], + "score": 0.48, + "content": "s", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 177, + 287 + ], + "score": 1.0, + "content": "is the subject and", + "type": "text" + }, + { + "bbox": [ + 177, + 277, + 184, + 287 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "can be an atomic relation or a path of relations. To formulate a set of path-based", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "question-answer pairs, we manually created one or more question templates for every query tem-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "plate (see Table 5) Then, for a particular instantiation of a query template with subject and object", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "entities, we randomly select a question template to generate a question given the subject; the object", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "score": 1.0, + "content": "entity becomes the answer of the question. See Table 6 for the list of composed relations, sample", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "questions, and answers. Note that all atomic relations in this dataset are many-to-one while these", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 341, + 372, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 372, + 353 + ], + "score": 1.0, + "content": "composed relations can be one-to-many or many-to-many as well.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "Conjunctive queries. To generate question-and-answer pairs of conjunctive queries, we first", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 474, + 388 + ], + "score": 1.0, + "content": "picked three pairs of relations and used them to create query templates of the form “Find", + "type": "text" + }, + { + "bbox": [ + 474, + 376, + 501, + 387 + ], + "score": 0.89, + "content": "e \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 376, + 505, + 388 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 385, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 385, + 165, + 400 + ], + "score": 1.0, + "content": "such that both", + "type": "text" + }, + { + "bbox": [ + 165, + 387, + 205, + 398 + ], + "score": 0.92, + "content": "( s _ { 1 } , r _ { 1 } , e )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 385, + 223, + 400 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 224, + 387, + 263, + 399 + ], + "score": 0.92, + "content": "( s _ { 2 } , r _ { 2 } , e )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 385, + 448, + 400 + ], + "score": 1.0, + "content": "are true.” (see Table 5). For a pair of relations", + "type": "text" + }, + { + "bbox": [ + 449, + 388, + 459, + 398 + ], + "score": 0.85, + "content": "r _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 385, + 477, + 400 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 477, + 388, + 487, + 398 + ], + "score": 0.85, + "content": "r _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 385, + 506, + 400 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 235, + 411 + ], + "score": 1.0, + "content": "enumerated all pairs of entities", + "type": "text" + }, + { + "bbox": [ + 235, + 400, + 260, + 409 + ], + "score": 0.42, + "content": "s _ { 1 } , s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "that can be their subjects and formulated the corresponding", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "query in natural language using question templates as in the same way as path queries. See Table 7", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 420, + 278, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 278, + 432 + ], + "score": 1.0, + "content": "for a list of sample questions and answers.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "As a result, we created 8003 question-and-answer pairs of path queries and 2208 pairs of conjunctive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 319, + 460 + ], + "score": 1.0, + "content": "queries which are partitioned into train / validation", + "type": "text" + }, + { + "bbox": [ + 320, + 448, + 325, + 457 + ], + "score": 0.33, + "content": "/", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "test subsets. We refer to Table 1 for more", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 459, + 447, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 447, + 471 + ], + "score": 1.0, + "content": "statistics about the dataset. Templates for generating the questions are list in Table 5.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 484, + 228, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 230, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 230, + 496 + ], + "score": 1.0, + "content": "4.2 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 516 + ], + "score": 1.0, + "content": "To perform question and answering under our proposed framework, we first train the TransGaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "model on WorldCup2014 dataset. In addition to the atomic triplets, we randomly sampled 50000", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 526, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 539 + ], + "score": 1.0, + "content": "paths with length 1 or 2 from the knowledge graph and trained a TransGaussian model composi-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "score": 1.0, + "content": "tionally as described in Set 2.2. An inverse relation is treated as a separate relation. Following", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 549, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 504, + 560 + ], + "score": 1.0, + "content": "the naming convention from Guu et al. (2015), we denote this trained embedding by TransGaus-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "sian (COMP). We found that the learned embedding possess some interesting properties. Some", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "dimensions of the embedding space dedicate to represent a particular relation. Players are clustered", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "by their attributes when entities’ embeddings are projected to the corresponding lower dimensional", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 592, + 393, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 393, + 605 + ], + "score": 1.0, + "content": "subspaces. We elaborate and illustrate such properties in the Appendix.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "Baseline methods We also trained a TransGaussian model only on the atomic triplets and denote", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "such a model by TransGaussian (SINGLE). Since no inverse relation was involved when Trans-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "Gaussian (SINGLE) was trained, to use this embedding in question answering tasks, we represent", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 309, + 661 + ], + "score": 1.0, + "content": "the inverse relations as follows: for each relation", + "type": "text" + }, + { + "bbox": [ + 310, + 651, + 316, + 659 + ], + "score": 0.68, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 649, + 363, + 661 + ], + "score": 1.0, + "content": "with mean", + "type": "text" + }, + { + "bbox": [ + 364, + 649, + 375, + 660 + ], + "score": 0.88, + "content": "\\delta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 649, + 431, + 661 + ], + "score": 1.0, + "content": "and variance", + "type": "text" + }, + { + "bbox": [ + 432, + 649, + 445, + 660 + ], + "score": 0.88, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 649, + 505, + 661 + ], + "score": 1.0, + "content": ", we model its", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 659, + 418, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 137, + 672 + ], + "score": 1.0, + "content": "inverse", + "type": "text" + }, + { + "bbox": [ + 137, + 659, + 154, + 670 + ], + "score": 0.9, + "content": "r ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 659, + 293, + 672 + ], + "score": 1.0, + "content": "as a Gaussian attention with mean", + "type": "text" + }, + { + "bbox": [ + 294, + 660, + 312, + 671 + ], + "score": 0.89, + "content": "- \\delta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 659, + 401, + 672 + ], + "score": 1.0, + "content": "and variance equal to", + "type": "text" + }, + { + "bbox": [ + 401, + 660, + 415, + 671 + ], + "score": 0.89, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 659, + 418, + 672 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "We also trained TransE models on WorldCup2014 dataset by using the code released by the authors", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "of Guu et al. (2015). Likewise, we use TransE (SINGLE) to denote the model trained with atomic", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "triplets only and use TransE (COMP) to denote the model trained with the union of triplets and", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "paths. Note that TransE can be considered as a special case of TransGaussian where the variance", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 474, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 474, + 732 + ], + "score": 1.0, + "content": "matrix is the identity and hence, the scoring formula Eq. (7) is applicable to TransE as well.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 111, + 80, + 318, + 114 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 111, + 80, + 319, + 115 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 329, + 81, + 519, + 114 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 329, + 80, + 521, + 115 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 108, + 114, + 506, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "where PLAYER, CLUB, NUMBER, etc, denote the type of entities that can appear as the left or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 124, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 139 + ], + "score": 1.0, + "content": "right argument for each relation. Some relations share the same type as the right argument, e.g.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 136, + 302, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 302, + 149 + ], + "score": 1.0, + "content": "plays for country and is in country.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 113, + 506, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "Given the entities and relations, we transformed the dataset into a set of 3977 triplets. A list of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "score": 1.0, + "content": "sample triplets can be found in the Appendix. Based on these triplets, we created two sets of question", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 174, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 188 + ], + "score": 1.0, + "content": "answering tasks which we call path query and conjunctive query respectively. The answer of every", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 185, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 200 + ], + "score": 1.0, + "content": "question is always an entity in the knowledge base and a question can involve one or two triplets.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 196, + 266, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 266, + 210 + ], + "score": 1.0, + "content": "The questions are generated as follows.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 152, + 505, + 210 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 104, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "Path queries. Among the paths on the knowledge graph, there are some natural composition of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 304, + 244 + ], + "score": 1.0, + "content": "relations, e.g., plays in country (PLAYER", + "type": "text" + }, + { + "bbox": [ + 304, + 232, + 318, + 242 + ], + "score": 0.78, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "COUNTRY) can be decomposed as the com-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 261, + 255 + ], + "score": 1.0, + "content": "position of plays in club (PLAYE", + "type": "text" + }, + { + "bbox": [ + 262, + 243, + 296, + 253 + ], + "score": 0.34, + "content": "\\mathbf { R } \\to \\mathbf { C L } ", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 242, + 406, + 255 + ], + "score": 1.0, + "content": "UB) and is in country", + "type": "text" + }, + { + "bbox": [ + 406, + 243, + 501, + 253 + ], + "score": 0.59, + "content": "( \\mathbf { C L U B } \\to \\mathbf { C O U N T R Y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 242, + 505, + 255 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "In addition to the atomic relations, we manually picked a few meaningful compositions of relations", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 264, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 334, + 277 + ], + "score": 1.0, + "content": "and formed query templates, which takes the form “find", + "type": "text" + }, + { + "bbox": [ + 334, + 264, + 360, + 275 + ], + "score": 0.9, + "content": "e \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 264, + 403, + 277 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 403, + 264, + 434, + 276 + ], + "score": 0.93, + "content": "( s , p , e )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 264, + 497, + 277 + ], + "score": 1.0, + "content": "is true”, where", + "type": "text" + }, + { + "bbox": [ + 498, + 266, + 504, + 274 + ], + "score": 0.48, + "content": "s", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 177, + 287 + ], + "score": 1.0, + "content": "is the subject and", + "type": "text" + }, + { + "bbox": [ + 177, + 277, + 184, + 287 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "can be an atomic relation or a path of relations. To formulate a set of path-based", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "question-answer pairs, we manually created one or more question templates for every query tem-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "plate (see Table 5) Then, for a particular instantiation of a query template with subject and object", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "score": 1.0, + "content": "entities, we randomly select a question template to generate a question given the subject; the object", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "score": 1.0, + "content": "entity becomes the answer of the question. See Table 6 for the list of composed relations, sample", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "questions, and answers. Note that all atomic relations in this dataset are many-to-one while these", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 341, + 372, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 372, + 353 + ], + "score": 1.0, + "content": "composed relations can be one-to-many or many-to-many as well.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 219, + 506, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "Conjunctive queries. To generate question-and-answer pairs of conjunctive queries, we first", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 474, + 388 + ], + "score": 1.0, + "content": "picked three pairs of relations and used them to create query templates of the form “Find", + "type": "text" + }, + { + "bbox": [ + 474, + 376, + 501, + 387 + ], + "score": 0.89, + "content": "e \\in { \\mathcal { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 376, + 505, + 388 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 385, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 385, + 165, + 400 + ], + "score": 1.0, + "content": "such that both", + "type": "text" + }, + { + "bbox": [ + 165, + 387, + 205, + 398 + ], + "score": 0.92, + "content": "( s _ { 1 } , r _ { 1 } , e )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 385, + 223, + 400 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 224, + 387, + 263, + 399 + ], + "score": 0.92, + "content": "( s _ { 2 } , r _ { 2 } , e )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 385, + 448, + 400 + ], + "score": 1.0, + "content": "are true.” (see Table 5). For a pair of relations", + "type": "text" + }, + { + "bbox": [ + 449, + 388, + 459, + 398 + ], + "score": 0.85, + "content": "r _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 385, + 477, + 400 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 477, + 388, + 487, + 398 + ], + "score": 0.85, + "content": "r _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 385, + 506, + 400 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 235, + 411 + ], + "score": 1.0, + "content": "enumerated all pairs of entities", + "type": "text" + }, + { + "bbox": [ + 235, + 400, + 260, + 409 + ], + "score": 0.42, + "content": "s _ { 1 } , s _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "that can be their subjects and formulated the corresponding", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "query in natural language using question templates as in the same way as path queries. See Table 7", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 420, + 278, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 278, + 432 + ], + "score": 1.0, + "content": "for a list of sample questions and answers.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 365, + 506, + 432 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "As a result, we created 8003 question-and-answer pairs of path queries and 2208 pairs of conjunctive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 319, + 460 + ], + "score": 1.0, + "content": "queries which are partitioned into train / validation", + "type": "text" + }, + { + "bbox": [ + 320, + 448, + 325, + 457 + ], + "score": 0.33, + "content": "/", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "test subsets. We refer to Table 1 for more", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 459, + 447, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 447, + 471 + ], + "score": 1.0, + "content": "statistics about the dataset. Templates for generating the questions are list in Table 5.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 437, + 506, + 471 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 484, + 228, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 483, + 230, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 230, + 496 + ], + "score": 1.0, + "content": "4.2 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 516 + ], + "score": 1.0, + "content": "To perform question and answering under our proposed framework, we first train the TransGaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "model on WorldCup2014 dataset. In addition to the atomic triplets, we randomly sampled 50000", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 526, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 539 + ], + "score": 1.0, + "content": "paths with length 1 or 2 from the knowledge graph and trained a TransGaussian model composi-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 505, + 551 + ], + "score": 1.0, + "content": "tionally as described in Set 2.2. An inverse relation is treated as a separate relation. Following", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 549, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 504, + 560 + ], + "score": 1.0, + "content": "the naming convention from Guu et al. (2015), we denote this trained embedding by TransGaus-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "sian (COMP). We found that the learned embedding possess some interesting properties. Some", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "dimensions of the embedding space dedicate to represent a particular relation. Players are clustered", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "by their attributes when entities’ embeddings are projected to the corresponding lower dimensional", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 592, + 393, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 393, + 605 + ], + "score": 1.0, + "content": "subspaces. We elaborate and illustrate such properties in the Appendix.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 505, + 506, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "Baseline methods We also trained a TransGaussian model only on the atomic triplets and denote", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "such a model by TransGaussian (SINGLE). Since no inverse relation was involved when Trans-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "Gaussian (SINGLE) was trained, to use this embedding in question answering tasks, we represent", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 309, + 661 + ], + "score": 1.0, + "content": "the inverse relations as follows: for each relation", + "type": "text" + }, + { + "bbox": [ + 310, + 651, + 316, + 659 + ], + "score": 0.68, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 649, + 363, + 661 + ], + "score": 1.0, + "content": "with mean", + "type": "text" + }, + { + "bbox": [ + 364, + 649, + 375, + 660 + ], + "score": 0.88, + "content": "\\delta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 649, + 431, + 661 + ], + "score": 1.0, + "content": "and variance", + "type": "text" + }, + { + "bbox": [ + 432, + 649, + 445, + 660 + ], + "score": 0.88, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 649, + 505, + 661 + ], + "score": 1.0, + "content": ", we model its", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 659, + 418, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 137, + 672 + ], + "score": 1.0, + "content": "inverse", + "type": "text" + }, + { + "bbox": [ + 137, + 659, + 154, + 670 + ], + "score": 0.9, + "content": "r ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 659, + 293, + 672 + ], + "score": 1.0, + "content": "as a Gaussian attention with mean", + "type": "text" + }, + { + "bbox": [ + 294, + 660, + 312, + 671 + ], + "score": 0.89, + "content": "- \\delta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 659, + 401, + 672 + ], + "score": 1.0, + "content": "and variance equal to", + "type": "text" + }, + { + "bbox": [ + 401, + 660, + 415, + 671 + ], + "score": 0.89, + "content": "\\Sigma _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 659, + 418, + 672 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 616, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "We also trained TransE models on WorldCup2014 dataset by using the code released by the authors", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "of Guu et al. (2015). Likewise, we use TransE (SINGLE) to denote the model trained with atomic", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "triplets only and use TransE (COMP) to denote the model trained with the union of triplets and", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "paths. Note that TransE can be considered as a special case of TransGaussian where the variance", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 474, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 474, + 732 + ], + "score": 1.0, + "content": "matrix is the identity and hence, the scoring formula Eq. (7) is applicable to TransE as well.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52, + "bbox_fs": [ + 105, + 676, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Training configurations For all models, dimension of entity embeddings was set to 30. The hid-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 505, + 108 + ], + "score": 1.0, + "content": "den size of LSTM was set to 80. Word embeddings were trained jointly with the question answering", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "model and dimension of word embedding was set to 40. We employed Adam (Kingma & Ba, 2014)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "as the optimizer. All parameters were tuned on the validation set. Under the same setting, we exper-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "imented with two cases: first, we trained models for path queries and conjunctive queries separately;", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "Furthermore, we trained a single model that addresses both types queries. We present the results of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 496, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 496, + 161 + ], + "score": 1.0, + "content": "the latter case in the next subsection while the results of the former are included in the Appendix.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 506, + 184 + ], + "score": 1.0, + "content": "Evaluation metrics During test time, our model receives a question in natural language and a list", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "of knowledge base entities contained in the question. Then it predicts the mean and variance of a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "Gaussian attention formulated in Eq. (7) which is expected to capture the distribution of all positive", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "score": 1.0, + "content": "answers. We rank all entities in the knowledge base by their scores under this Gaussian attention.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Next, for each entity which is a correct answer, we check its rank relative to all incorrect answers and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "call this rank the filtered rank. For example, if a correct entity is ranked above all negative answers", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "except for one, it has filtered rank two. We compute this rank for all true answers and report mean", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 249, + 458, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 174, + 261 + ], + "score": 1.0, + "content": "filtered rank and", + "type": "text" + }, + { + "bbox": [ + 174, + 249, + 197, + 259 + ], + "score": 0.71, + "content": "H @ l", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 249, + 458, + 261 + ], + "score": 1.0, + "content": "which is the percentage of true answers that have filtered rank 1.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 273, + 239, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 240, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 240, + 286 + ], + "score": 1.0, + "content": "4.3 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "We present the results of joint learning in Table 2. These results show that TransGaussian works", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "better than TransE in general. In fact, TransGaussian (COMP) achieved the best performance in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 335, + 329 + ], + "score": 1.0, + "content": "almost all aspects. Most notably, it achieved the highest", + "type": "text" + }, + { + "bbox": [ + 335, + 316, + 358, + 326 + ], + "score": 0.81, + "content": "\\mathrm { H @ 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "rates on challenging questions such", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "as “where is the club that edin dzeko plays for?” (#11, composition of two relations) and “who are", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 411, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 411, + 351 + ], + "score": 1.0, + "content": "the defenders on german national team?” (#14, conjunction of two queries).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "The same table shows that TransGaussian benefits remarkably from compositional training. For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 350, + 378 + ], + "score": 1.0, + "content": "example, compositional training improved TransGaussian’s", + "type": "text" + }, + { + "bbox": [ + 350, + 366, + 373, + 376 + ], + "score": 0.78, + "content": "\\mathrm { H @ 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 366, + 427, + 378 + ], + "score": 1.0, + "content": "rate by near", + "type": "text" + }, + { + "bbox": [ + 427, + 366, + 447, + 376 + ], + "score": 0.86, + "content": "60 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "in queries on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "score": 1.0, + "content": "players from a given countries (#8) and queries on players who play a particular position (#9). It", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 387, + 477, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 477, + 400 + ], + "score": 1.0, + "content": "also boosted TransGaussian’s performance on all conjunctive quries (#13–#15) significantly.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "To understand TransGaussian (COMP)’s weak performance on answering queries on the profes-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "sional football club located in a given country (#10) and queries on professional football club that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "has players from a particular country (#12), we tested its capability of modeling the composed re-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "lation by feeding the correct relations and subjects during test time. It turns out that these two", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "relations were not modeled well by TransGaussian (COMP) embedding, which limits its perfor-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "mance in question answering. (See Table 8 in the Appendix for quantitative evaluations.) The same", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 470, + 325, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 325, + 483 + ], + "score": 1.0, + "content": "limit was found in the other three embeddings as well.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "Note that all the models compared in Table 2 uses the proposed Gaussian attention model because", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "score": 1.0, + "content": "TransE is the special case of TransGaussian where the variance is fixed to one. Thus the main differ-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "ences are whether the variance is learned and whether the embedding was trained compositionally.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "Finally, we refer to Table 9 and 10 in the Appendix for experimental results of models trained on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 531, + 267, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 267, + 545 + ], + "score": 1.0, + "content": "path and conjunctive queries separately.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "table", + "bbox": [ + 107, + 572, + 535, + 609 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 196, + 552, + 414, + 564 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 550, + 415, + 566 + ], + "spans": [ + { + "bbox": [ + 195, + 550, + 415, + 566 + ], + "score": 1.0, + "content": "Table 1: Some statistics of the WorldCup2014 dataset.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "table_body", + "bbox": [ + 107, + 572, + 535, + 609 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 572, + 535, + 609 + ], + "spans": [ + { + "bbox": [ + 107, + 572, + 535, + 609 + ], + "score": 0.962, + "html": "
# entity
#atomic relations# atomic triplets
# path query Q&A(train/validation/test)# conjunctive query Q&A(train /validation /test)
1127639775620/804/15791564/224/420
", + "type": "table", + "image_path": "aad02463c0fedf6a70824602adf903d1fff0827b0c92885dcdc8d3417dc51591.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 107, + 572, + 535, + 584.3333333333334 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 107, + 584.3333333333334, + 535, + 596.6666666666667 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 107, + 596.6666666666667, + 535, + 609.0000000000001 + ], + "spans": [], + "index": 40 + } + ] + } + ], + "index": 38.0 + }, + { + "type": "title", + "bbox": [ + 108, + 630, + 209, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 211, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 211, + 644 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "The work of Vilnis & McCallum (2014) is similar to our Gaussian attention model. They discuss", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "many advantages of the Gaussian embedding; for example, it is arguably a better way of handling", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "asymmetric relations and entailment. However the work was presented in the word2vec (Mikolov", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 689, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 504, + 700 + ], + "score": 1.0, + "content": "et al., 2013)-style word embedding setting and the Gaussian embedding was used to capture the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "diversity in the meaning of a word. Our Gaussian attention model extends their work to a more", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 710, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 507, + 723 + ], + "score": 1.0, + "content": "general setting in which any memory item can be addressed through a concept represented as a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 290, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 290, + 733 + ], + "score": 1.0, + "content": "Gaussian distribution over the memory items.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Training configurations For all models, dimension of entity embeddings was set to 30. The hid-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 505, + 108 + ], + "score": 1.0, + "content": "den size of LSTM was set to 80. Word embeddings were trained jointly with the question answering", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "model and dimension of word embedding was set to 40. We employed Adam (Kingma & Ba, 2014)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "as the optimizer. All parameters were tuned on the validation set. Under the same setting, we exper-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "imented with two cases: first, we trained models for path queries and conjunctive queries separately;", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "Furthermore, we trained a single model that addresses both types queries. We present the results of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 496, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 496, + 161 + ], + "score": 1.0, + "content": "the latter case in the next subsection while the results of the former are included in the Appendix.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 82, + 506, + 161 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 506, + 184 + ], + "score": 1.0, + "content": "Evaluation metrics During test time, our model receives a question in natural language and a list", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "of knowledge base entities contained in the question. Then it predicts the mean and variance of a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "Gaussian attention formulated in Eq. (7) which is expected to capture the distribution of all positive", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "score": 1.0, + "content": "answers. We rank all entities in the knowledge base by their scores under this Gaussian attention.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Next, for each entity which is a correct answer, we check its rank relative to all incorrect answers and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "call this rank the filtered rank. For example, if a correct entity is ranked above all negative answers", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "except for one, it has filtered rank two. We compute this rank for all true answers and report mean", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 249, + 458, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 174, + 261 + ], + "score": 1.0, + "content": "filtered rank and", + "type": "text" + }, + { + "bbox": [ + 174, + 249, + 197, + 259 + ], + "score": 0.71, + "content": "H @ l", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 249, + 458, + 261 + ], + "score": 1.0, + "content": "which is the percentage of true answers that have filtered rank 1.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 172, + 506, + 261 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 273, + 239, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 240, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 240, + 286 + ], + "score": 1.0, + "content": "4.3 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "We present the results of joint learning in Table 2. These results show that TransGaussian works", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "better than TransE in general. In fact, TransGaussian (COMP) achieved the best performance in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 335, + 329 + ], + "score": 1.0, + "content": "almost all aspects. Most notably, it achieved the highest", + "type": "text" + }, + { + "bbox": [ + 335, + 316, + 358, + 326 + ], + "score": 0.81, + "content": "\\mathrm { H @ 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "rates on challenging questions such", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "as “where is the club that edin dzeko plays for?” (#11, composition of two relations) and “who are", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 411, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 411, + 351 + ], + "score": 1.0, + "content": "the defenders on german national team?” (#14, conjunction of two queries).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 294, + 506, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "The same table shows that TransGaussian benefits remarkably from compositional training. For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 350, + 378 + ], + "score": 1.0, + "content": "example, compositional training improved TransGaussian’s", + "type": "text" + }, + { + "bbox": [ + 350, + 366, + 373, + 376 + ], + "score": 0.78, + "content": "\\mathrm { H @ 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 366, + 427, + 378 + ], + "score": 1.0, + "content": "rate by near", + "type": "text" + }, + { + "bbox": [ + 427, + 366, + 447, + 376 + ], + "score": 0.86, + "content": "60 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "in queries on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "score": 1.0, + "content": "players from a given countries (#8) and queries on players who play a particular position (#9). It", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 387, + 477, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 477, + 400 + ], + "score": 1.0, + "content": "also boosted TransGaussian’s performance on all conjunctive quries (#13–#15) significantly.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 354, + 506, + 400 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "To understand TransGaussian (COMP)’s weak performance on answering queries on the profes-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "sional football club located in a given country (#10) and queries on professional football club that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "has players from a particular country (#12), we tested its capability of modeling the composed re-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "lation by feeding the correct relations and subjects during test time. It turns out that these two", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "relations were not modeled well by TransGaussian (COMP) embedding, which limits its perfor-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "mance in question answering. (See Table 8 in the Appendix for quantitative evaluations.) The same", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 470, + 325, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 325, + 483 + ], + "score": 1.0, + "content": "limit was found in the other three embeddings as well.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 403, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "Note that all the models compared in Table 2 uses the proposed Gaussian attention model because", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "score": 1.0, + "content": "TransE is the special case of TransGaussian where the variance is fixed to one. Thus the main differ-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "ences are whether the variance is learned and whether the embedding was trained compositionally.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "Finally, we refer to Table 9 and 10 in the Appendix for experimental results of models trained on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 531, + 267, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 267, + 545 + ], + "score": 1.0, + "content": "path and conjunctive queries separately.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 487, + 506, + 545 + ] + }, + { + "type": "table", + "bbox": [ + 107, + 572, + 535, + 609 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 196, + 552, + 414, + 564 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 550, + 415, + 566 + ], + "spans": [ + { + "bbox": [ + 195, + 550, + 415, + 566 + ], + "score": 1.0, + "content": "Table 1: Some statistics of the WorldCup2014 dataset.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "table_body", + "bbox": [ + 107, + 572, + 535, + 609 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 572, + 535, + 609 + ], + "spans": [ + { + "bbox": [ + 107, + 572, + 535, + 609 + ], + "score": 0.962, + "html": "
# entity
#atomic relations# atomic triplets
# path query Q&A(train/validation/test)# conjunctive query Q&A(train /validation /test)
1127639775620/804/15791564/224/420
", + "type": "table", + "image_path": "aad02463c0fedf6a70824602adf903d1fff0827b0c92885dcdc8d3417dc51591.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 107, + 572, + 535, + 584.3333333333334 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 107, + 584.3333333333334, + 535, + 596.6666666666667 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 107, + 596.6666666666667, + 535, + 609.0000000000001 + ], + "spans": [], + "index": 40 + } + ] + } + ], + "index": 38.0 + }, + { + "type": "title", + "bbox": [ + 108, + 630, + 209, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 211, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 211, + 644 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "The work of Vilnis & McCallum (2014) is similar to our Gaussian attention model. They discuss", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "many advantages of the Gaussian embedding; for example, it is arguably a better way of handling", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "asymmetric relations and entailment. However the work was presented in the word2vec (Mikolov", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 689, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 504, + 700 + ], + "score": 1.0, + "content": "et al., 2013)-style word embedding setting and the Gaussian embedding was used to capture the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "diversity in the meaning of a word. Our Gaussian attention model extends their work to a more", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 710, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 507, + 723 + ], + "score": 1.0, + "content": "general setting in which any memory item can be addressed through a concept represented as a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 290, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 290, + 733 + ], + "score": 1.0, + "content": "Gaussian distribution over the memory items.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 655, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 100, + 511, + 264 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 80, + 493, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 78, + 495, + 94 + ], + "spans": [ + { + "bbox": [ + 112, + 78, + 495, + 94 + ], + "score": 1.0, + "content": "Table 2: Results of joint learning with path queries and conjunction queries on WorldCup2014.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 106, + 100, + 511, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 100, + 511, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 511, + 264 + ], + "score": 0.983, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Sample questionH@1(%)FilteredMean RankH@1(%)FilteredMean RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1which club does alan pulido play for?88.591.1891.951.1196.641.0498.661.01
2what position does gonzalo higuain play?100.001.0098.111.0398.741.01100.001.00
3how old is samuel etoo?67.111.4490.791.1394.741.0897.371.04
4what is the jersey number of mario balotelli?45.001.8983.571.2297.141.0399.291.01
5which country is thomas mueller from ?94.401.0694.401.0696.801.0498.401.02
6which country is the soccer team fc porto based in ?98.481.0298.481.0293.941.0695.451.05
7who plays professionally at liverpool fc?95.121.1090.241.2098.371.0496.751.04
8which player is from iran?89.861.5176.812.0738.652.9699.521.00
9name a player who plays goalkeeper?98.961.0169.791.8242.715.52100.001.00
10which soccer club is based in mexico?22.0313.9430.518.846.7810.6616.9521.14
11where is the club that edin dzeko plays for ?52.633.8857.242.1047.372.2778.291.41
12name a soccer club that has a player from australia ?30.4312.0833.7011.4713.0411.6419.5717.57
Overall (Path Query)74.163.1177.392.5669.543.0285.943.52
13who plays forward for fc barcelona?97.551.0676.071.6693.251.2498.771.02
14who are the defenders on german national team?95.931.0669.922.3365.042.04100.001.00
15which player in ssc napoli is from argentina?88.811.1776.121.7688.811.3597.761.03
Overall(Conj. Query)94.291.0974.291.8983.571.5198.811.02
", + "type": "table", + "image_path": "7b655a2b41aad14dfeb2d35e01d31e0083bc112661b419140489d25d63616d5e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 100, + 511, + 154.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 154.66666666666666, + 511, + 209.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 209.33333333333331, + 511, + 264.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 291, + 505, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "Bordes et al. (2014; 2015) proposed a question-answering model that embeds both questions and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "their answers to a common continuous vector space. Their method in Bordes et al. (2015) can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "combine multiple knowledge bases and even generalize to a knowledge base that was not used", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "during training. However their method is limited to the simple question answering setting in which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 335, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 346 + ], + "score": 1.0, + "content": "the answer of each question associated with a triplet in the knowledge base. In contrast, our method", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 345, + 504, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 504, + 358 + ], + "score": 1.0, + "content": "can handle both composition of relations and conjunction of conditions, which are both naturally", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 357, + 313, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 313, + 369 + ], + "score": 1.0, + "content": "enabled by the proposed Gaussian attention model.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "Neelakantan et al. (2015a) proposed a method that combines relations to deal with compositional", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 385, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 396 + ], + "score": 1.0, + "content": "relations for knowledge base completion. Their key technical contribution is to use recurrent neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "networks (RNNs) to encode a chain of relations. When we restrict ourselves to path queries, question", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "answering can be seen as a sequence transduction task (Graves, 2012; Sutskever et al., 2014) in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "which the input is text and the output is a series of relations. If we use RNNs as a decoder, our model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "would be able to handle non-commutative composition of relations, which the current weighted", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "score": 1.0, + "content": "convolution cannot handle well. Another interesting connection to our work is that they take the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "maximum of the inner-product scores (see also Weston et al., 2013; Neelakantan et al., 2015b),", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "which are computed along multiple paths connecting a pair of entities. Representing a set as a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "collection of vectors and taking the maximum over the inner-product scores is a natural way to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "represent a set of memory items. The Gaussian attention model we propose in this paper, however,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 494, + 333, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 333, + 507 + ], + "score": 1.0, + "content": "has the advantage of differentiability and composability.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 528, + 195, + 540 + ], + "lines": [ + { + "bbox": [ + 104, + 525, + 197, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 197, + 543 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "In this paper, we have proposed the Gaussian attention model which can be used in a variety of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "contexts where we can assume that the distance between the memory items in the latent space is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 577, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 592 + ], + "score": 1.0, + "content": "compatible with some notion of semantics. We have shown that the proposed Gaussian scoring", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "function can be used for knowledge base embedding achieving competitive accuracy. We have also", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 613 + ], + "score": 1.0, + "content": "shown that our embedding model can naturally propagate uncertainty when we compose relations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "together. Our embedding model also benefits from compositional training proposed by Guu et al.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 623, + 504, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 504, + 634 + ], + "score": 1.0, + "content": "(2015). Furthermore, we have demonstrated the power of the Gaussian attention model in a chal-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "lenging question answering problem which involves both composition of relations and conjunction", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "of queries. Future work includes experiments on natural question answering datasets and end-to-end", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 655, + 260, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 260, + 668 + ], + "score": 1.0, + "content": "training including the entity extractor.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 687, + 200, + 697 + ], + "lines": [ + { + "bbox": [ + 107, + 688, + 200, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 688, + 200, + 698 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "The authors would like to thank Daniel Tarlow, Nate Kushman, and Kevin Gimpel for valuable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 157, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 157, + 733 + ], + "score": 1.0, + "content": "discussions.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 100, + 511, + 264 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 80, + 493, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 78, + 495, + 94 + ], + "spans": [ + { + "bbox": [ + 112, + 78, + 495, + 94 + ], + "score": 1.0, + "content": "Table 2: Results of joint learning with path queries and conjunction queries on WorldCup2014.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 106, + 100, + 511, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 100, + 511, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 511, + 264 + ], + "score": 0.983, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Sample questionH@1(%)FilteredMean RankH@1(%)FilteredMean RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1which club does alan pulido play for?88.591.1891.951.1196.641.0498.661.01
2what position does gonzalo higuain play?100.001.0098.111.0398.741.01100.001.00
3how old is samuel etoo?67.111.4490.791.1394.741.0897.371.04
4what is the jersey number of mario balotelli?45.001.8983.571.2297.141.0399.291.01
5which country is thomas mueller from ?94.401.0694.401.0696.801.0498.401.02
6which country is the soccer team fc porto based in ?98.481.0298.481.0293.941.0695.451.05
7who plays professionally at liverpool fc?95.121.1090.241.2098.371.0496.751.04
8which player is from iran?89.861.5176.812.0738.652.9699.521.00
9name a player who plays goalkeeper?98.961.0169.791.8242.715.52100.001.00
10which soccer club is based in mexico?22.0313.9430.518.846.7810.6616.9521.14
11where is the club that edin dzeko plays for ?52.633.8857.242.1047.372.2778.291.41
12name a soccer club that has a player from australia ?30.4312.0833.7011.4713.0411.6419.5717.57
Overall (Path Query)74.163.1177.392.5669.543.0285.943.52
13who plays forward for fc barcelona?97.551.0676.071.6693.251.2498.771.02
14who are the defenders on german national team?95.931.0669.922.3365.042.04100.001.00
15which player in ssc napoli is from argentina?88.811.1776.121.7688.811.3597.761.03
Overall(Conj. Query)94.291.0974.291.8983.571.5198.811.02
", + "type": "table", + "image_path": "7b655a2b41aad14dfeb2d35e01d31e0083bc112661b419140489d25d63616d5e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 100, + 511, + 154.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 154.66666666666666, + 511, + 209.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 209.33333333333331, + 511, + 264.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 291, + 505, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "Bordes et al. (2014; 2015) proposed a question-answering model that embeds both questions and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "their answers to a common continuous vector space. Their method in Bordes et al. (2015) can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "combine multiple knowledge bases and even generalize to a knowledge base that was not used", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "during training. However their method is limited to the simple question answering setting in which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 335, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 346 + ], + "score": 1.0, + "content": "the answer of each question associated with a triplet in the knowledge base. In contrast, our method", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 345, + 504, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 504, + 358 + ], + "score": 1.0, + "content": "can handle both composition of relations and conjunction of conditions, which are both naturally", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 357, + 313, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 313, + 369 + ], + "score": 1.0, + "content": "enabled by the proposed Gaussian attention model.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 291, + 505, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "Neelakantan et al. (2015a) proposed a method that combines relations to deal with compositional", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 385, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 396 + ], + "score": 1.0, + "content": "relations for knowledge base completion. Their key technical contribution is to use recurrent neural", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "networks (RNNs) to encode a chain of relations. When we restrict ourselves to path queries, question", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "answering can be seen as a sequence transduction task (Graves, 2012; Sutskever et al., 2014) in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "which the input is text and the output is a series of relations. If we use RNNs as a decoder, our model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "would be able to handle non-commutative composition of relations, which the current weighted", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "score": 1.0, + "content": "convolution cannot handle well. Another interesting connection to our work is that they take the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "maximum of the inner-product scores (see also Weston et al., 2013; Neelakantan et al., 2015b),", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "which are computed along multiple paths connecting a pair of entities. Representing a set as a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "collection of vectors and taking the maximum over the inner-product scores is a natural way to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "represent a set of memory items. The Gaussian attention model we propose in this paper, however,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 494, + 333, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 333, + 507 + ], + "score": 1.0, + "content": "has the advantage of differentiability and composability.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 374, + 506, + 507 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 528, + 195, + 540 + ], + "lines": [ + { + "bbox": [ + 104, + 525, + 197, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 197, + 543 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "In this paper, we have proposed the Gaussian attention model which can be used in a variety of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "contexts where we can assume that the distance between the memory items in the latent space is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 577, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 592 + ], + "score": 1.0, + "content": "compatible with some notion of semantics. We have shown that the proposed Gaussian scoring", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "function can be used for knowledge base embedding achieving competitive accuracy. We have also", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 613 + ], + "score": 1.0, + "content": "shown that our embedding model can naturally propagate uncertainty when we compose relations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "together. Our embedding model also benefits from compositional training proposed by Guu et al.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 623, + 504, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 504, + 634 + ], + "score": 1.0, + "content": "(2015). Furthermore, we have demonstrated the power of the Gaussian attention model in a chal-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "lenging question answering problem which involves both composition of relations and conjunction", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "of queries. Future work includes experiments on natural question answering datasets and end-to-end", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 655, + 260, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 260, + 668 + ], + "score": 1.0, + "content": "training including the entity extractor.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 556, + 506, + 668 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 687, + 200, + 697 + ], + "lines": [ + { + "bbox": [ + 107, + 688, + 200, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 688, + 200, + 698 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "The authors would like to thank Daniel Tarlow, Nate Kushman, and Kevin Gimpel for valuable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 157, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 157, + 733 + ], + "score": 1.0, + "content": "discussions.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 398, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 398, + 123 + ], + "score": 1.0, + "content": "learning to align and translate. arXiv preprint arXiv:1409.0473, 2014.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 108, + 129, + 503, + 163 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 505, + 142 + ], + "score": 1.0, + "content": "Antoine Bordes, Jason Weston, Ronan Collobert, and Yoshua Bengio. Learning structured embed-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "dings of knowledge bases. In Conference on Artificial Intelligence, number EPFL-CONF-192344,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 143, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 143, + 164 + ], + "score": 1.0, + "content": "2011.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 171, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "score": 1.0, + "content": "Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 116, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Translating embeddings for modeling multi-relational data. In Advances in Neural Information", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 289, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 289, + 206 + ], + "score": 1.0, + "content": "Processing Systems, pp. 2787–2795, 2013.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 212, + 504, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 211, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 505, + 226 + ], + "score": 1.0, + "content": "Antoine Bordes, Jason Weston, and Nicolas Usunier. Open question answering with weakly super-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "vised embedding models. In Joint European Conference on Machine Learning and Knowledge", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 235, + 335, + 247 + ], + "spans": [ + { + "bbox": [ + 116, + 235, + 335, + 247 + ], + "score": 1.0, + "content": "Discovery in Databases, pp. 165–180. Springer, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 503, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "Antoine Bordes, Nicolas Usunier, Sumit Chopra, and Jason Weston. Large-scale simple question", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 265, + 421, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 265, + 421, + 277 + ], + "score": 1.0, + "content": "answering with memory networks. arXiv preprint arXiv:1506.02075, 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 502, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "score": 1.0, + "content": "Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network´", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 451, + 307 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 451, + 307 + ], + "score": 1.0, + "content": "learning by exponential linear units (elus). arXiv preprint arXiv:1511.07289, 2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 168, + 326 + ], + "score": 1.0, + "content": "Alex Graves.", + "type": "text" + }, + { + "bbox": [ + 180, + 313, + 431, + 326 + ], + "score": 1.0, + "content": "Sequence transduction with recurrent neural networks.", + "type": "text" + }, + { + "bbox": [ + 438, + 313, + 505, + 328 + ], + "score": 1.0, + "content": "arXiv preprint", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 325, + 214, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 214, + 337 + ], + "score": 1.0, + "content": "arXiv:1211.3711, 2012.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 506, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "score": 1.0, + "content": "Alex Graves, Greg Wayne, and Ivo Danihelka. Neural turing machines. arXiv preprint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 214, + 366 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 214, + 366 + ], + "score": 1.0, + "content": "arXiv:1410.5401, 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. In EMNLP", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 167, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 167, + 397 + ], + "score": 1.0, + "content": "2015, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 504, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8):", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 416, + 191, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 191, + 427 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 446, + 214, + 458 + ], + "spans": [ + { + "bbox": [ + 115, + 446, + 214, + 458 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 504, + 488 + ], + "lines": [ + { + "bbox": [ + 107, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 107, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "Yujia Li, Daniel Tarlow, Marc Brockschmidt, and Richard Zemel. Gated graph sequence neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 477, + 321, + 488 + ], + "spans": [ + { + "bbox": [ + 115, + 477, + 321, + 488 + ], + "score": 1.0, + "content": "networks. arXiv preprint arXiv:1511.05493, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 504, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 504, + 509 + ], + "score": 1.0, + "content": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient estimation of word represen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 506, + 368, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 368, + 519 + ], + "score": 1.0, + "content": "tations in vector space. arXiv preprint arXiv:1301.3781, 2013.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 504, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Benjamin Roth, and Andrew McCallum. Compositional vector space models", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 536, + 415, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 415, + 549 + ], + "score": 1.0, + "content": "for knowledge base completion. arXiv preprint arXiv:1504.06662, 2015a.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 504, + 589 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Jeevan Shankar, Alexandre Passos, and Andrew McCallum. Efficient", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 115, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "non-parametric estimation of multiple embeddings per word in vector space. arXiv preprint", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 578, + 224, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 578, + 224, + 588 + ], + "score": 1.0, + "content": "arXiv:1504.06654, 2015b.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "score": 1.0, + "content": "Maximilian Nickel, Volker Tresp, and Hans-Peter Kriegel. A three-way model for collective learning", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "on multi-relational data. In Proceedings of the 28th international conference on machine learning", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 619, + 245, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 619, + 245, + 631 + ], + "score": 1.0, + "content": "(ICML-11), pp. 809–816, 2011.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 504, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "Richard Socher, Danqi Chen, Christopher D Manning, and Andrew Ng. Reasoning with neural", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "tensor networks for knowledge base completion. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 660, + 233, + 672 + ], + "spans": [ + { + "bbox": [ + 116, + 660, + 233, + 672 + ], + "score": 1.0, + "content": "Systems, pp. 926–934, 2013.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Jason Weston, Rob Fergus, et al. End-to-end memory networks. In Advances", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 690, + 375, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 375, + 703 + ], + "score": 1.0, + "content": "in neural information processing systems, pp. 2440–2448, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 719, + 427, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 427, + 733 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 398, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 398, + 123 + ], + "score": 1.0, + "content": "learning to align and translate. arXiv preprint arXiv:1409.0473, 2014.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 99, + 505, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 129, + 503, + 163 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 505, + 142 + ], + "score": 1.0, + "content": "Antoine Bordes, Jason Weston, Ronan Collobert, and Yoshua Bengio. Learning structured embed-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "dings of knowledge bases. In Conference on Artificial Intelligence, number EPFL-CONF-192344,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 151, + 143, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 151, + 143, + 164 + ], + "score": 1.0, + "content": "2011.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 130, + 505, + 164 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 171, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 504, + 184 + ], + "score": 1.0, + "content": "Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 116, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Translating embeddings for modeling multi-relational data. In Advances in Neural Information", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 289, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 289, + 206 + ], + "score": 1.0, + "content": "Processing Systems, pp. 2787–2795, 2013.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 171, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 212, + 504, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 211, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 505, + 226 + ], + "score": 1.0, + "content": "Antoine Bordes, Jason Weston, and Nicolas Usunier. Open question answering with weakly super-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 223, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 505, + 237 + ], + "score": 1.0, + "content": "vised embedding models. In Joint European Conference on Machine Learning and Knowledge", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 235, + 335, + 247 + ], + "spans": [ + { + "bbox": [ + 116, + 235, + 335, + 247 + ], + "score": 1.0, + "content": "Discovery in Databases, pp. 165–180. Springer, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 211, + 505, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 503, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "Antoine Bordes, Nicolas Usunier, Sumit Chopra, and Jason Weston. Large-scale simple question", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 265, + 421, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 265, + 421, + 277 + ], + "score": 1.0, + "content": "answering with memory networks. arXiv preprint arXiv:1506.02075, 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 253, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 502, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "score": 1.0, + "content": "Djork-Arne Clevert, Thomas Unterthiner, and Sepp Hochreiter. Fast and accurate deep network´", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 451, + 307 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 451, + 307 + ], + "score": 1.0, + "content": "learning by exponential linear units (elus). arXiv preprint arXiv:1511.07289, 2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 284, + 504, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 168, + 326 + ], + "score": 1.0, + "content": "Alex Graves.", + "type": "text" + }, + { + "bbox": [ + 180, + 313, + 431, + 326 + ], + "score": 1.0, + "content": "Sequence transduction with recurrent neural networks.", + "type": "text" + }, + { + "bbox": [ + 438, + 313, + 505, + 328 + ], + "score": 1.0, + "content": "arXiv preprint", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 325, + 214, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 214, + 337 + ], + "score": 1.0, + "content": "arXiv:1211.3711, 2012.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 313, + 505, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 506, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 358 + ], + "score": 1.0, + "content": "Alex Graves, Greg Wayne, and Ivo Danihelka. Neural turing machines. arXiv preprint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 214, + 366 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 214, + 366 + ], + "score": 1.0, + "content": "arXiv:1410.5401, 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 342, + 506, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. In EMNLP", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 167, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 167, + 397 + ], + "score": 1.0, + "content": "2015, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 374, + 506, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 504, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 418 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8):", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 416, + 191, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 191, + 427 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 403, + 505, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 446, + 214, + 458 + ], + "spans": [ + { + "bbox": [ + 115, + 446, + 214, + 458 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 433, + 506, + 458 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 504, + 488 + ], + "lines": [ + { + "bbox": [ + 107, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 107, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "Yujia Li, Daniel Tarlow, Marc Brockschmidt, and Richard Zemel. Gated graph sequence neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 477, + 321, + 488 + ], + "spans": [ + { + "bbox": [ + 115, + 477, + 321, + 488 + ], + "score": 1.0, + "content": "networks. arXiv preprint arXiv:1511.05493, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 107, + 465, + 505, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 504, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 504, + 509 + ], + "score": 1.0, + "content": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient estimation of word represen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 506, + 368, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 368, + 519 + ], + "score": 1.0, + "content": "tations in vector space. arXiv preprint arXiv:1301.3781, 2013.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 494, + 504, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 504, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Benjamin Roth, and Andrew McCallum. Compositional vector space models", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 536, + 415, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 415, + 549 + ], + "score": 1.0, + "content": "for knowledge base completion. arXiv preprint arXiv:1504.06662, 2015a.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 524, + 505, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 504, + 589 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Jeevan Shankar, Alexandre Passos, and Andrew McCallum. Efficient", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 115, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "non-parametric estimation of multiple embeddings per word in vector space. arXiv preprint", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 578, + 224, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 578, + 224, + 588 + ], + "score": 1.0, + "content": "arXiv:1504.06654, 2015b.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 555, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "score": 1.0, + "content": "Maximilian Nickel, Volker Tresp, and Hans-Peter Kriegel. A three-way model for collective learning", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "on multi-relational data. In Proceedings of the 28th international conference on machine learning", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 619, + 245, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 619, + 245, + 631 + ], + "score": 1.0, + "content": "(ICML-11), pp. 809–816, 2011.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 595, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 504, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "Richard Socher, Danqi Chen, Christopher D Manning, and Andrew Ng. Reasoning with neural", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "tensor networks for knowledge base completion. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 660, + 233, + 672 + ], + "spans": [ + { + "bbox": [ + 116, + 660, + 233, + 672 + ], + "score": 1.0, + "content": "Systems, pp. 926–934, 2013.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 638, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Jason Weston, Rob Fergus, et al. End-to-end memory networks. In Advances", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 690, + 375, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 375, + 703 + ], + "score": 1.0, + "content": "in neural information processing systems, pp. 2440–2448, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 678, + 505, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 719, + 427, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 427, + 733 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 709, + 504, + 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": "Alan Mathison Turing. On computable numbers, with an application to the entscheidungsproblem:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 438, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 438, + 106 + ], + "score": 1.0, + "content": "A correction. Proceedings of the London Mathematical Society, 2(1):544, 1938.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "score": 1.0, + "content": "Luke Vilnis and Andrew McCallum. Word representations via gaussian embedding. arXiv preprint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 214, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 214, + 135 + ], + "score": 1.0, + "content": "arXiv:1412.6623, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 503, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "Zhen Wang, Jianwen Zhang, Jianlin Feng, and Zheng Chen. Knowledge graph embedding by trans-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 373, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 373, + 165 + ], + "score": 1.0, + "content": "lating on hyperplanes. In AAAI, pp. 1112–1119. Citeseer, 2014.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "Jason Weston, Ron J Weiss, and Hector Yee. Nonlinear latent factorization by embedding multiple", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "user interests. In Proceedings of the 7th ACM conference on Recommender systems, pp. 65–68.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 169, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 169, + 205 + ], + "score": 1.0, + "content": "ACM, 2013.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 104, + 212, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 506, + 227 + ], + "score": 1.0, + "content": "Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 214, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 214, + 235 + ], + "score": 1.0, + "content": "arXiv:1410.3916, 2014.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 104, + 241, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 505, + 256 + ], + "score": 1.0, + "content": "Jason D Williams, Eslam Kamal, Hani Amr Mokhtar Ashour, Jessica Miller, and Geoff Zweig.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "Fast and easy language understanding for dialog systems with microsoft language understanding", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 264, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 116, + 264, + 505, + 278 + ], + "score": 1.0, + "content": "intelligent service (LUIS). In 16th Annual Meeting of the Special Interest Group on Discourse", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 276, + 236, + 288 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 236, + 288 + ], + "score": 1.0, + "content": "and Dialogue, pp. 159, 2015.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Alan Mathison Turing. On computable numbers, with an application to the entscheidungsproblem:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 438, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 438, + 106 + ], + "score": 1.0, + "content": "A correction. Proceedings of the London Mathematical Society, 2(1):544, 1938.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 125 + ], + "score": 1.0, + "content": "Luke Vilnis and Andrew McCallum. Word representations via gaussian embedding. arXiv preprint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 214, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 214, + 135 + ], + "score": 1.0, + "content": "arXiv:1412.6623, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 505, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 503, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "Zhen Wang, Jianwen Zhang, Jianlin Feng, and Zheng Chen. Knowledge graph embedding by trans-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 373, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 373, + 165 + ], + "score": 1.0, + "content": "lating on hyperplanes. In AAAI, pp. 1112–1119. Citeseer, 2014.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 141, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 171, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "Jason Weston, Ron J Weiss, and Hector Yee. Nonlinear latent factorization by embedding multiple", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "user interests. In Proceedings of the 7th ACM conference on Recommender systems, pp. 65–68.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 169, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 169, + 205 + ], + "score": 1.0, + "content": "ACM, 2013.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 171, + 505, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 212, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 506, + 227 + ], + "score": 1.0, + "content": "Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 214, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 214, + 235 + ], + "score": 1.0, + "content": "arXiv:1410.3916, 2014.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 210, + 506, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 104, + 241, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 505, + 256 + ], + "score": 1.0, + "content": "Jason D Williams, Eslam Kamal, Hani Amr Mokhtar Ashour, Jessica Miller, and Geoff Zweig.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "Fast and easy language understanding for dialog systems with microsoft language understanding", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 264, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 116, + 264, + 505, + 278 + ], + "score": 1.0, + "content": "intelligent service (LUIS). In 16th Annual Meeting of the Special Interest Group on Discourse", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 276, + 236, + 288 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 236, + 288 + ], + "score": 1.0, + "content": "and Dialogue, pp. 159, 2015.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 241, + 505, + 288 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 259, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 261, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 261, + 96 + ], + "score": 1.0, + "content": "A WORDCUP2014 DATASET", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 208, + 136, + 401, + 196 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 241, + 116, + 370, + 128 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 240, + 114, + 370, + 129 + ], + "spans": [ + { + "bbox": [ + 240, + 114, + 370, + 129 + ], + "score": 1.0, + "content": "Table 3: Sample atomic triplets.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 208, + 136, + 401, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 208, + 136, + 401, + 196 + ], + "spans": [ + { + "bbox": [ + 208, + 136, + 401, + 196 + ], + "score": 0.959, + "html": "
SubjectRelationObject
david_villaplays-for_countryspain
lionel_messiplays_in-clubfc_barcelona
antoine-griezmannplays-positionforward
cristiano_ronaldowears_number7
fulham_fcis_in_countryengland
lukas_podolskiis_aged29
", + "type": "table", + "image_path": "c76b54d069c446a577d193f3e4e7991307a9815e447eeaf69529984549fe539d.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 136, + 401, + 151.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 208, + 151.0, + 401, + 166.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 208, + 166.0, + 401, + 181.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 208, + 181.0, + 401, + 196.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 161, + 265, + 448, + 333 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 208, + 244, + 402, + 256 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 207, + 243, + 403, + 257 + ], + "spans": [ + { + "bbox": [ + 207, + 243, + 403, + 257 + ], + "score": 1.0, + "content": "Table 4: Statistics of the WorldCup2014 dataset.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "table_body", + "bbox": [ + 161, + 265, + 448, + 333 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 161, + 265, + 448, + 333 + ], + "spans": [ + { + "bbox": [ + 161, + 265, + 448, + 333 + ], + "score": 0.98, + "html": "
#entity# atomic relations# atomic triplets112763977
#relations (atomic and compositional) in path queries# question and answer pairs in path queries(train/validation/ test)125620/804/1579
# types of questions in conjunctive queries# question and answer pairs in conjunctive queries(train/validation/test )31564/224/420
size of vocabulary1781
", + "type": "table", + "image_path": "2745f1e997fc7c77d598f00975f60d1aef2225ce169b2b4d4728c20044684904.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 161, + 265, + 448, + 287.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 161, + 287.6666666666667, + 448, + 310.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 161, + 310.33333333333337, + 448, + 333.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 7.0 + }, + { + "type": "table", + "bbox": [ + 106, + 400, + 529, + 720 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 357, + 506, + 390 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 371 + ], + "score": 1.0, + "content": "Table 5: Templates of questions. In the table, (player), (club), (position) are placeholders of named", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "entities with associated type. (country 1) is a placeholder for a country name while (country 2) is a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 378, + 300, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 300, + 393 + ], + "score": 1.0, + "content": "placeholder for the adjectival form of a country.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "table_body", + "bbox": [ + 106, + 400, + 529, + 720 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 400, + 529, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 529, + 720 + ], + "score": 0.984, + "html": "
#Query templateQuestion template
1Finde ∈ε:((player),plays_in_club,e)is truewhich club does (player) play for ?which professional football team does (player) play for ?which football club does (player) play for ?
2Finde∈ε:(player),plays-position,e)is truewhat position does (player) play ?
3Find e ∈ε:(player),is-aged,e) is truehow old is (player) ?what is the age of (player) ?
4Finde∈ε:(player),wears_number,e) is truewhat is the jersey number of (player) ?what number does (player) wear ?
5Finde ∈ε:(player),plays_for_country,e) is truewhat is the nationality of (player) ?which national team does (player) play for ?which country is (player) from ?
6Finde∈ε:(club),is-in_country,e)is truewhich country is the soccer team (club) based in ?
7Finde ∈ε: (club),plays_in_club-1,e)is truename a player from (club) ?who plays at the soccer club (club) ?who is from the professional football team (club) ?who plays professionally at (club) ?
8Finde ∈ε:(country-1),plays_for-country-1,e)is truewhich player is from (country_1) ?name a player from (country-1) ?who is from (country-1) ?who plays for the (country_1) national football team ?
9Finde∈ε:(position),playsposition-,e)is truename a player who plays (position) ?who plays (position) ?
10Finde ∈ε:(cotry-1),sicountry-1,e)is truewhich soccer club is based in (country_1) ?name a soccer club in (country_1) ?
11Finde∈ε:(player),plays_in_club /is_in_country,e)is truewhich country does (player) play professionally in ?where is the football club that (player) plays for ?
12Finde ∈ε:(country-1),plays-for-country-1/plays_in_club,e)is truewhich professional football team do players from (country_1) play for ?name a soccer club that has a player from (country_1) ?which professional football team has a player from (country_1) ?
13Find e∈ ε:(position),plays-position-1,e) is true and((club),plays-in_club-1,e) is truewho plays (position) for (club)?who are the (position) at (club) ?name a (position) that plays for (club) ?
14Find e∈ε: (position),plays-position-1,e) is true and(country-l),plays-for-country-1,e)is truewho plays (position) for (country_1) ?who are the (position) on (country_1) national team ?name a (position) from (country-1) ?which (country_2) footballer plays (position) ?name a (country-2) (position) ?
15Find e∈ε:(club), plays_in_club-1,e) is true and(country_l),plays_for_country-1,e)is truewho are the (country_2) playersat (club)?which (country_2) footballer plays for (club) ?name a (country_2) player at (club) ?which player in (club) is from (country-1) ?
", + "type": "table", + "image_path": "5c8936e2f39543c1538d4f7c684c5e78d08c0646e6073693b5ca4bc83415e80b.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 106, + 400, + 529, + 506.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 506.6666666666667, + 529, + 613.3333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 613.3333333333334, + 529, + 720.0 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 12.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 259, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 261, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 261, + 96 + ], + "score": 1.0, + "content": "A WORDCUP2014 DATASET", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 208, + 136, + 401, + 196 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 241, + 116, + 370, + 128 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 240, + 114, + 370, + 129 + ], + "spans": [ + { + "bbox": [ + 240, + 114, + 370, + 129 + ], + "score": 1.0, + "content": "Table 3: Sample atomic triplets.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 208, + 136, + 401, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 208, + 136, + 401, + 196 + ], + "spans": [ + { + "bbox": [ + 208, + 136, + 401, + 196 + ], + "score": 0.959, + "html": "
SubjectRelationObject
david_villaplays-for_countryspain
lionel_messiplays_in-clubfc_barcelona
antoine-griezmannplays-positionforward
cristiano_ronaldowears_number7
fulham_fcis_in_countryengland
lukas_podolskiis_aged29
", + "type": "table", + "image_path": "c76b54d069c446a577d193f3e4e7991307a9815e447eeaf69529984549fe539d.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 136, + 401, + 151.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 208, + 151.0, + 401, + 166.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 208, + 166.0, + 401, + 181.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 208, + 181.0, + 401, + 196.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 161, + 265, + 448, + 333 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 208, + 244, + 402, + 256 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 207, + 243, + 403, + 257 + ], + "spans": [ + { + "bbox": [ + 207, + 243, + 403, + 257 + ], + "score": 1.0, + "content": "Table 4: Statistics of the WorldCup2014 dataset.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "table_body", + "bbox": [ + 161, + 265, + 448, + 333 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 161, + 265, + 448, + 333 + ], + "spans": [ + { + "bbox": [ + 161, + 265, + 448, + 333 + ], + "score": 0.98, + "html": "
#entity# atomic relations# atomic triplets112763977
#relations (atomic and compositional) in path queries# question and answer pairs in path queries(train/validation/ test)125620/804/1579
# types of questions in conjunctive queries# question and answer pairs in conjunctive queries(train/validation/test )31564/224/420
size of vocabulary1781
", + "type": "table", + "image_path": "2745f1e997fc7c77d598f00975f60d1aef2225ce169b2b4d4728c20044684904.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 161, + 265, + 448, + 287.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 161, + 287.6666666666667, + 448, + 310.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 161, + 310.33333333333337, + 448, + 333.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 7.0 + }, + { + "type": "table", + "bbox": [ + 106, + 400, + 529, + 720 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 357, + 506, + 390 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 356, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 371 + ], + "score": 1.0, + "content": "Table 5: Templates of questions. In the table, (player), (club), (position) are placeholders of named", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "entities with associated type. (country 1) is a placeholder for a country name while (country 2) is a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 378, + 300, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 300, + 393 + ], + "score": 1.0, + "content": "placeholder for the adjectival form of a country.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "table_body", + "bbox": [ + 106, + 400, + 529, + 720 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 400, + 529, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 529, + 720 + ], + "score": 0.984, + "html": "
#Query templateQuestion template
1Finde ∈ε:((player),plays_in_club,e)is truewhich club does (player) play for ?which professional football team does (player) play for ?which football club does (player) play for ?
2Finde∈ε:(player),plays-position,e)is truewhat position does (player) play ?
3Find e ∈ε:(player),is-aged,e) is truehow old is (player) ?what is the age of (player) ?
4Finde∈ε:(player),wears_number,e) is truewhat is the jersey number of (player) ?what number does (player) wear ?
5Finde ∈ε:(player),plays_for_country,e) is truewhat is the nationality of (player) ?which national team does (player) play for ?which country is (player) from ?
6Finde∈ε:(club),is-in_country,e)is truewhich country is the soccer team (club) based in ?
7Finde ∈ε: (club),plays_in_club-1,e)is truename a player from (club) ?who plays at the soccer club (club) ?who is from the professional football team (club) ?who plays professionally at (club) ?
8Finde ∈ε:(country-1),plays_for-country-1,e)is truewhich player is from (country_1) ?name a player from (country-1) ?who is from (country-1) ?who plays for the (country_1) national football team ?
9Finde∈ε:(position),playsposition-,e)is truename a player who plays (position) ?who plays (position) ?
10Finde ∈ε:(cotry-1),sicountry-1,e)is truewhich soccer club is based in (country_1) ?name a soccer club in (country_1) ?
11Finde∈ε:(player),plays_in_club /is_in_country,e)is truewhich country does (player) play professionally in ?where is the football club that (player) plays for ?
12Finde ∈ε:(country-1),plays-for-country-1/plays_in_club,e)is truewhich professional football team do players from (country_1) play for ?name a soccer club that has a player from (country_1) ?which professional football team has a player from (country_1) ?
13Find e∈ ε:(position),plays-position-1,e) is true and((club),plays-in_club-1,e) is truewho plays (position) for (club)?who are the (position) at (club) ?name a (position) that plays for (club) ?
14Find e∈ε: (position),plays-position-1,e) is true and(country-l),plays-for-country-1,e)is truewho plays (position) for (country_1) ?who are the (position) on (country_1) national team ?name a (position) from (country-1) ?which (country_2) footballer plays (position) ?name a (country-2) (position) ?
15Find e∈ε:(club), plays_in_club-1,e) is true and(country_l),plays_for_country-1,e)is truewho are the (country_2) playersat (club)?which (country_2) footballer plays for (club) ?name a (country_2) player at (club) ?which player in (club) is from (country-1) ?
", + "type": "table", + "image_path": "5c8936e2f39543c1538d4f7c684c5e78d08c0646e6073693b5ca4bc83415e80b.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 106, + 400, + 529, + 506.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 506.6666666666667, + 529, + 613.3333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 613.3333333333334, + 529, + 720.0 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 12.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 101, + 540, + 269 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 166, + 81, + 441, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 79, + 441, + 94 + ], + "spans": [ + { + "bbox": [ + 166, + 79, + 441, + 94 + ], + "score": 1.0, + "content": "Table 6: (Composed) relations and sample questions in path queries.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 106, + 101, + 540, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 101, + 540, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 540, + 269 + ], + "score": 0.983, + "html": "
#RelationTypeSample questionSample answer
1plays_in_clubmany-to-onewhich club doesalan pulido play for ?which professional footbal team does klaas jan huntelar play for ?tigres_uanlfc_schalke_04
2plays-positionmany-to-onewhat position does gonzalo higuain play ?ssc_napoli
3is_agedmany-to-onehow old is samuel etoo ?what is the age of luis suarez ?3
4wears-numbermany-to-onewhat is the jersey number of mario balotelli ?what number does shinji okazaki wear ?
5plays_for_countrymany-to-onewhich country is thomas mueller from ?what is the nationality of helder postiga ?germanyportugal
6is.in_countrymany-to-onewhich country is the soccer team fc porto based in ?portugal
7plays_in_club-1one-to-manywho playsprofessionally at liverpool fc ?name a player from as roma ?steven_gerrardmiralem_pjanic
8plays-for_country-1one-to-manywhich player is from iran ?name a player from italy ?masoud_shojaeidaniele_de_rossi
9plays-position-1one-to-manyname a player who plays goalkeeper ?who plays forward ?gianluiqi-buffonraul_jimenez
10is_in-country-1one-to-manywhich soccer club is based in mexico ?name a soccer club in australia ?cruz_azul.fcmelbourne_victory_fc
11plays_in_club /is_in_countrymany-to-onewhere is the club that edin dzeko plays for ?which country does sime vrsaljko play professionally in ?englanditaly
12plays-for_country-1/plays_in_clubmany-to-manyname a soccer club that has a player from australia?name a soccer club that has a player from spain ?crystal_palace_fcfc_barcelona
", + "type": "table", + "image_path": "1e08d92fcdcdcb4612cfc8a344544f32e1c03b71996f84931a70e6d731e7a783.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 101, + 540, + 157.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 157.0, + 540, + 213.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 213.0, + 540, + 269.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 107, + 300, + 573, + 374 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 201, + 280, + 405, + 292 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 199, + 279, + 407, + 294 + ], + "spans": [ + { + "bbox": [ + 199, + 279, + 407, + 294 + ], + "score": 1.0, + "content": "Table 7: Conjunctive queries and sample questions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 107, + 300, + 573, + 374 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 300, + 573, + 374 + ], + "spans": [ + { + "bbox": [ + 107, + 300, + 573, + 374 + ], + "score": 0.979, + "html": "
#RelationsSample questionsEntities in questionsSampleanswer
13plays_position-1 and plays_in_club-1who plays forward for fc barcelona ? who are the midfielders at fc bayern muenchen ?forward,fc_barcelona midfielder,fc_bayern_muenchenlionel_messi toni_kroos
14plays-position -1 andwho are the defenders on german national team ? which mexican footballer plays forward ?defender,germany defender,mexicoper_mertesacker raul-jimenez
15plays_in_club-1 and plays_for_country -1which player in paris saint-germain fc is from argentina ? who are the korean players at beijing guoan ?paris_saint-germain_fc,argentina beijing-guoan,koreaezequiel_lavezzi ha-daesung
", + "type": "table", + "image_path": "612204b4a493e4e6ad7548f7a46ce07e9418c499cd0449151d472e0148446f5f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 300, + 573, + 324.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 324.6666666666667, + 573, + 349.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 349.33333333333337, + 573, + 374.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 108, + 393, + 392, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 393, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 393, + 408 + ], + "score": 1.0, + "content": "B TRANSGAUSSIAN EMBEDDING OF WORLDCUP2014", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "We trained our TransGaussian model on triplets and paths from WorldCup2014 dataset and illus-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "trated the embeddings in Fig 3 and 4. Recall that we modeled every relation as a Gaussian with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "diagonal covariance matrix. Fig 3 shows the learned variance parameters of different relations. Each", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 452, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 504, + 464 + ], + "score": 1.0, + "content": "row corresponds to the variances of one relation. Columns are permuted to reveal the block struc-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "ture. From this figure, we can see that every relation has a small variance in two or more dimensions.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "This implies that the coordinates of the embedding space are partitioned into semantically coherent", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "clusters each of which represent a particular attribute of a player (or a football club). To verify this", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "further, we picked the two coordinates in which a relation (e.g. plays position) has the least", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "variance and projected the embedding of all valid subjects and objects (e.g. players and positions)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "of the relation to this 2 dimensional subspace. See Fig. 4. The relation between the subjects and the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "objects are simply translation in the projection when the corresponding subspace is two dimensional", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "(e.g., plays position relation in Fig. 4 (a)). The same is true for other relations that requires", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "larger dimension but it is more challenging to visualize in two dimensions. For relations that have", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "a large number of unique objects, we only plotted for the eight objects with the most subjects for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 572, + 194, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 194, + 585 + ], + "score": 1.0, + "content": "clarity of illustration.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "Furthermore, in order to elucidate whether we are limited by the capacity of the TransGaussian", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "embedding or the ability to decode question expressed in natural language, we evaluated the test", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "question-answer pairs using the TransGaussian embedding composed according to the ground-truth", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "relations and entities. The results were evaluated with the same metrics as in Sec. 4.3. This es-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "timation is conducted for TransE embeddings as well. See Table 8 for the results. Compared to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "Table 2, the accuracy of TransGaussian (COMP) is higher on the atomic relations and path queries", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "but lower on conjunctive queries. This is natural because when the query is simple there is not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "much room for the question-answering network to improve upon just combining the relations ac-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "score": 1.0, + "content": "cording to the ground truth relations, whereas when the query is complex the network could com-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "bine the embedding in a more creative way to overcome its limitation. In fact, the two queries", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "(#10 and #12) that TransGaussian (COMP) did not perform well in Table 2 pertain to a single re-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 486, + 723 + ], + "score": 1.0, + "content": "lation is in country−1 (#10) and a composition of two relations plays for country", + "type": "text" + }, + { + "bbox": [ + 486, + 709, + 505, + 721 + ], + "score": 0.31, + "content": "^ - 1 \\ /", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "plays in club (#12). The performance of the two queries were low even when the ground truth", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 101, + 540, + 269 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 166, + 81, + 441, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 79, + 441, + 94 + ], + "spans": [ + { + "bbox": [ + 166, + 79, + 441, + 94 + ], + "score": 1.0, + "content": "Table 6: (Composed) relations and sample questions in path queries.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 106, + 101, + 540, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 101, + 540, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 540, + 269 + ], + "score": 0.983, + "html": "
#RelationTypeSample questionSample answer
1plays_in_clubmany-to-onewhich club doesalan pulido play for ?which professional footbal team does klaas jan huntelar play for ?tigres_uanlfc_schalke_04
2plays-positionmany-to-onewhat position does gonzalo higuain play ?ssc_napoli
3is_agedmany-to-onehow old is samuel etoo ?what is the age of luis suarez ?3
4wears-numbermany-to-onewhat is the jersey number of mario balotelli ?what number does shinji okazaki wear ?
5plays_for_countrymany-to-onewhich country is thomas mueller from ?what is the nationality of helder postiga ?germanyportugal
6is.in_countrymany-to-onewhich country is the soccer team fc porto based in ?portugal
7plays_in_club-1one-to-manywho playsprofessionally at liverpool fc ?name a player from as roma ?steven_gerrardmiralem_pjanic
8plays-for_country-1one-to-manywhich player is from iran ?name a player from italy ?masoud_shojaeidaniele_de_rossi
9plays-position-1one-to-manyname a player who plays goalkeeper ?who plays forward ?gianluiqi-buffonraul_jimenez
10is_in-country-1one-to-manywhich soccer club is based in mexico ?name a soccer club in australia ?cruz_azul.fcmelbourne_victory_fc
11plays_in_club /is_in_countrymany-to-onewhere is the club that edin dzeko plays for ?which country does sime vrsaljko play professionally in ?englanditaly
12plays-for_country-1/plays_in_clubmany-to-manyname a soccer club that has a player from australia?name a soccer club that has a player from spain ?crystal_palace_fcfc_barcelona
", + "type": "table", + "image_path": "1e08d92fcdcdcb4612cfc8a344544f32e1c03b71996f84931a70e6d731e7a783.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 101, + 540, + 157.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 157.0, + 540, + 213.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 213.0, + 540, + 269.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 107, + 300, + 573, + 374 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 201, + 280, + 405, + 292 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 199, + 279, + 407, + 294 + ], + "spans": [ + { + "bbox": [ + 199, + 279, + 407, + 294 + ], + "score": 1.0, + "content": "Table 7: Conjunctive queries and sample questions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 107, + 300, + 573, + 374 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 300, + 573, + 374 + ], + "spans": [ + { + "bbox": [ + 107, + 300, + 573, + 374 + ], + "score": 0.979, + "html": "
#RelationsSample questionsEntities in questionsSampleanswer
13plays_position-1 and plays_in_club-1who plays forward for fc barcelona ? who are the midfielders at fc bayern muenchen ?forward,fc_barcelona midfielder,fc_bayern_muenchenlionel_messi toni_kroos
14plays-position -1 andwho are the defenders on german national team ? which mexican footballer plays forward ?defender,germany defender,mexicoper_mertesacker raul-jimenez
15plays_in_club-1 and plays_for_country -1which player in paris saint-germain fc is from argentina ? who are the korean players at beijing guoan ?paris_saint-germain_fc,argentina beijing-guoan,koreaezequiel_lavezzi ha-daesung
", + "type": "table", + "image_path": "612204b4a493e4e6ad7548f7a46ce07e9418c499cd0449151d472e0148446f5f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 300, + 573, + 324.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 324.6666666666667, + 573, + 349.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 349.33333333333337, + 573, + 374.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 108, + 393, + 392, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 393, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 393, + 408 + ], + "score": 1.0, + "content": "B TRANSGAUSSIAN EMBEDDING OF WORLDCUP2014", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "We trained our TransGaussian model on triplets and paths from WorldCup2014 dataset and illus-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "trated the embeddings in Fig 3 and 4. Recall that we modeled every relation as a Gaussian with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "diagonal covariance matrix. Fig 3 shows the learned variance parameters of different relations. Each", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 452, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 504, + 464 + ], + "score": 1.0, + "content": "row corresponds to the variances of one relation. Columns are permuted to reveal the block struc-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "ture. From this figure, we can see that every relation has a small variance in two or more dimensions.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "This implies that the coordinates of the embedding space are partitioned into semantically coherent", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "clusters each of which represent a particular attribute of a player (or a football club). To verify this", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "further, we picked the two coordinates in which a relation (e.g. plays position) has the least", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "variance and projected the embedding of all valid subjects and objects (e.g. players and positions)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "of the relation to this 2 dimensional subspace. See Fig. 4. The relation between the subjects and the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "objects are simply translation in the projection when the corresponding subspace is two dimensional", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "(e.g., plays position relation in Fig. 4 (a)). The same is true for other relations that requires", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "larger dimension but it is more challenging to visualize in two dimensions. For relations that have", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "a large number of unique objects, we only plotted for the eight objects with the most subjects for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 572, + 194, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 194, + 585 + ], + "score": 1.0, + "content": "clarity of illustration.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 418, + 506, + 585 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "Furthermore, in order to elucidate whether we are limited by the capacity of the TransGaussian", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "embedding or the ability to decode question expressed in natural language, we evaluated the test", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "question-answer pairs using the TransGaussian embedding composed according to the ground-truth", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "relations and entities. The results were evaluated with the same metrics as in Sec. 4.3. This es-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "timation is conducted for TransE embeddings as well. See Table 8 for the results. Compared to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "Table 2, the accuracy of TransGaussian (COMP) is higher on the atomic relations and path queries", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "but lower on conjunctive queries. This is natural because when the query is simple there is not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "much room for the question-answering network to improve upon just combining the relations ac-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "score": 1.0, + "content": "cording to the ground truth relations, whereas when the query is complex the network could com-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "bine the embedding in a more creative way to overcome its limitation. In fact, the two queries", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "(#10 and #12) that TransGaussian (COMP) did not perform well in Table 2 pertain to a single re-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 486, + 723 + ], + "score": 1.0, + "content": "lation is in country−1 (#10) and a composition of two relations plays for country", + "type": "text" + }, + { + "bbox": [ + 486, + 709, + 505, + 721 + ], + "score": 0.31, + "content": "^ - 1 \\ /", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "plays in club (#12). The performance of the two queries were low even when the ground truth", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 589, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 151, + 85, + 468, + 195 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 151, + 85, + 468, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 85, + 468, + 195 + ], + "spans": [ + { + "bbox": [ + 151, + 85, + 468, + 195 + ], + "score": 0.963, + "type": "image", + "image_path": "dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 151, + 85, + 468, + 121.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 151, + 121.66666666666666, + 468, + 158.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 151, + 158.33333333333331, + 468, + 194.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 504, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "Figure 3: Variance of each relation. Each row shows the diagonal values in the variance matrix", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 219, + 422, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 422, + 232 + ], + "score": 1.0, + "content": "associated with a relation. Columns are permuted to reveal the block structure.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 108, + 249, + 505, + 283 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "Table 8: Evaluation of embeddings. We evaluate the embeddings by feeding the correct entities and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "relations from a path or conjunctive query to an embedding model and using its scoring function to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 272, + 337, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 337, + 284 + ], + "score": 1.0, + "content": "retrieve the answers from the embedded knowledge base.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "table", + "bbox": [ + 106, + 290, + 527, + 521 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 290, + 527, + 521 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 290, + 527, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 527, + 521 + ], + "score": 0.984, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#RelationH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1plays.in.club75.541.3893.481.0999.861.0098.511.02
2plays-position96.331.0494.021.0998.371.02100.001.00
3is_aged55.031.6991.441.1296.881.03100.001.00
4wears_number38.862.0978.671.3295.921.04100.001.00
5plays_for_country71.601.3994.841.1099.321.01100.001.00
6is_in_country98.321.0399.661.0099.331.01100.001.00
7plays_in_club-187.501.4683.421.4594.701.0797.421.03
882.471.6868.213.3725.275.6698.781.02
9plays-position-1100.001.0075.541.6013.5924.3598.781.02
10is_in-country-123.1126.9223.4823.278.32130.5919.4183.61
11plays_in_club/is_in-country20.247.0558.291.9846.882.9980.161.38
12plays-for_country -1/plays-in_club25.3222.2727.7310.0419.0435.5920.1533.01
Overall(Path relations) plays-position-164.645.0975.023.5967.2214.8786.738.79
13and plays-in_club-1 plays-position91.851.2069.971.8277.451.8395.381.06
14and plays_in_club =T91.711.2366.712.8551.494.8897.831.05
15and is_in_country -188.591.2073.37 70.021.80 2.1683.421.3494.701.08
Overall (Conj.relations)90.721.2170.792.6895.971.06
", + "type": "table", + "image_path": "f2970bb498a60bf534378d87a96f1fde36b1c3928165c2aa77b7ca5bb4d95eef.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 106, + 290, + 527, + 367.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 367.0, + 527, + 444.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 444.0, + 527, + 521.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 504, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "relations were given, which indicates that the TransGaussian embedding rather than the question-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 554, + 270, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 270, + 567 + ], + "score": 1.0, + "content": "answering network is the limiting factor.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 584, + 295, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 298, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 298, + 599 + ], + "score": 1.0, + "content": "C KNOWLEDGE BASE COMPLETION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "Knowledge base completion has been a common task for testing knowledge base models on their", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "ability of generalizing to unseen facts. Here, we apply our TransGaussian model to a knowledge", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 631, + 359, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 359, + 646 + ], + "score": 1.0, + "content": "completion task and show that it has competitive performance.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "We tested on the subset of WordNet released by Guu et al. (2015). The atomic triplets in this dataset", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "was originally created by Socher et al. (2013) and Guu et al. (2015) added path queries that were", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 669, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 506, + 685 + ], + "score": 1.0, + "content": "randomly sampled from the knowledge graph. We build our TransGaussian model by training on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "these triplets and paths and tested our model on the same link prediction task as done by Socher", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 693, + 233, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 233, + 706 + ], + "score": 1.0, + "content": "et al. (2013); Guu et al. (2015).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "As done by Guu et al. (2015), we trained TransGaussian (SINGLE) with atomic triplets only and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "trained TransGaussian (COMP) with the union of atomic triplets and paths. We did not incorporate", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 151, + 85, + 468, + 195 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 151, + 85, + 468, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 85, + 468, + 195 + ], + "spans": [ + { + "bbox": [ + 151, + 85, + 468, + 195 + ], + "score": 0.963, + "type": "image", + "image_path": "dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 151, + 85, + 468, + 121.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 151, + 121.66666666666666, + 468, + 158.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 151, + 158.33333333333331, + 468, + 194.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 504, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "Figure 3: Variance of each relation. Each row shows the diagonal values in the variance matrix", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 219, + 422, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 422, + 232 + ], + "score": 1.0, + "content": "associated with a relation. Columns are permuted to reveal the block structure.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 108, + 249, + 505, + 283 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "Table 8: Evaluation of embeddings. We evaluate the embeddings by feeding the correct entities and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 273 + ], + "score": 1.0, + "content": "relations from a path or conjunctive query to an embedding model and using its scoring function to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 272, + 337, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 337, + 284 + ], + "score": 1.0, + "content": "retrieve the answers from the embedded knowledge base.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 249, + 505, + 284 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 290, + 527, + 521 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 290, + 527, + 521 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 290, + 527, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 527, + 521 + ], + "score": 0.984, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#RelationH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1plays.in.club75.541.3893.481.0999.861.0098.511.02
2plays-position96.331.0494.021.0998.371.02100.001.00
3is_aged55.031.6991.441.1296.881.03100.001.00
4wears_number38.862.0978.671.3295.921.04100.001.00
5plays_for_country71.601.3994.841.1099.321.01100.001.00
6is_in_country98.321.0399.661.0099.331.01100.001.00
7plays_in_club-187.501.4683.421.4594.701.0797.421.03
882.471.6868.213.3725.275.6698.781.02
9plays-position-1100.001.0075.541.6013.5924.3598.781.02
10is_in-country-123.1126.9223.4823.278.32130.5919.4183.61
11plays_in_club/is_in-country20.247.0558.291.9846.882.9980.161.38
12plays-for_country -1/plays-in_club25.3222.2727.7310.0419.0435.5920.1533.01
Overall(Path relations) plays-position-164.645.0975.023.5967.2214.8786.738.79
13and plays-in_club-1 plays-position91.851.2069.971.8277.451.8395.381.06
14and plays_in_club =T91.711.2366.712.8551.494.8897.831.05
15and is_in_country -188.591.2073.37 70.021.80 2.1683.421.3494.701.08
Overall (Conj.relations)90.721.2170.792.6895.971.06
", + "type": "table", + "image_path": "f2970bb498a60bf534378d87a96f1fde36b1c3928165c2aa77b7ca5bb4d95eef.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 106, + 290, + 527, + 367.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 367.0, + 527, + 444.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 444.0, + 527, + 521.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 504, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "relations were given, which indicates that the TransGaussian embedding rather than the question-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 554, + 270, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 270, + 567 + ], + "score": 1.0, + "content": "answering network is the limiting factor.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 543, + 505, + 567 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 584, + 295, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 298, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 298, + 599 + ], + "score": 1.0, + "content": "C KNOWLEDGE BASE COMPLETION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "Knowledge base completion has been a common task for testing knowledge base models on their", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "ability of generalizing to unseen facts. Here, we apply our TransGaussian model to a knowledge", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 631, + 359, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 359, + 646 + ], + "score": 1.0, + "content": "completion task and show that it has competitive performance.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 610, + 505, + 646 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "We tested on the subset of WordNet released by Guu et al. (2015). The atomic triplets in this dataset", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "was originally created by Socher et al. (2013) and Guu et al. (2015) added path queries that were", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 669, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 506, + 685 + ], + "score": 1.0, + "content": "randomly sampled from the knowledge graph. We build our TransGaussian model by training on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "these triplets and paths and tested our model on the same link prediction task as done by Socher", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 693, + 233, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 233, + 706 + ], + "score": 1.0, + "content": "et al. (2013); Guu et al. (2015).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 648, + 506, + 706 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "As done by Guu et al. (2015), we trained TransGaussian (SINGLE) with atomic triplets only and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "trained TransGaussian (COMP) with the union of atomic triplets and paths. We did not incorporate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "word embedding in this task and each entity is assigned its individual vector. Without getting param-", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "eters tuned too much, TransGaussian (COMP) obtained accuracy comparable to TransE (COMP).", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 637, + 163, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 163, + 647 + ], + "score": 1.0, + "content": "See Table 11.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 77, + 536, + 558 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 77, + 536, + 558 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 77, + 536, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 77, + 536, + 558 + ], + "score": 0.976, + "type": "image", + "image_path": "4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 77, + 536, + 237.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 237.33333333333334, + 536, + 397.6666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 397.6666666666667, + 536, + 558.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 565, + 509, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "Figure 4: TransGaussian entity embeddings. Crosses are the subjects and circles are the objects of a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 576, + 459, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 459, + 588 + ], + "score": 1.0, + "content": "relation. Specifically, crosses are players in (a)-(e) and professional football clubs in (f).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 506, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "word embedding in this task and each entity is assigned its individual vector. Without getting param-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "eters tuned too much, TransGaussian (COMP) obtained accuracy comparable to TransE (COMP).", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 637, + 163, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 163, + 647 + ], + "score": 1.0, + "content": "See Table 11.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 77, + 536, + 558 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 77, + 536, + 558 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 77, + 536, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 77, + 536, + 558 + ], + "score": 0.976, + "type": "image", + "image_path": "4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 77, + 536, + 237.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 237.33333333333334, + 536, + 397.6666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 397.6666666666667, + 536, + 558.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 565, + 509, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "Figure 4: TransGaussian entity embeddings. Crosses are the subjects and circles are the objects of a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 576, + 459, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 459, + 588 + ], + "score": 1.0, + "content": "relation. Specifically, crosses are players in (a)-(e) and professional football clubs in (f).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 506, + 648 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 105, + 613, + 505, + 647 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 140, + 516, + 345 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 174, + 119, + 433, + 131 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 173, + 119, + 434, + 133 + ], + "spans": [ + { + "bbox": [ + 173, + 119, + 434, + 133 + ], + "score": 1.0, + "content": "Table 9: Experimental results of path queries on WorldCup2014.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 106, + 140, + 516, + 345 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 140, + 516, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 516, + 345 + ], + "score": 0.98, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Relation and sample questionMean H@1(%)Filtered RankH@1(%)Mean Filtered RankMean H@1(%) Filtered RankH@1(%)Mean Filtered Rank
1plays.in_club (which club does alan pulido play for?)90.60 1.1292.621.1196.64 1.0397.991.03
2plays-position (what position does gonzalo higuain play?)100.00 1.0098.111.0298.74 1.01100.001.00
3is_aged (how old is samuel etoo?)81.58 1.3092.111.1096.05 1.04100.001.00
4wears_number (what is the jersey number of mario balotelli?)44.29 1.8885.711.1996.43 1.04100.001.00
5plays-for-country (which country is thomas mueller from ?)97.60 1.0294.401.1198.40 1.0299.201.01
6is_in.country (which country is the soccer team fc porto based in ?)98.48 1.0298.481.0293.94 1.0898.481.02
7plays_in_club-1 (who plays professionally at liverpool fc?)95.12 1.0886.991.3896.75 1.0396.751.03
8plays_for_country (which player is from iran?)81.16 1.6172.462.3640.58 3.1993.241.48
9plays-position (name a player who plays goalkeeper?)100.00 1.0030.212.3055.21 5.0985.421.15
10is.in_country (which soccer club is based in mexico?)24.58 11.4723.7310.075.08 9.1817.8020.10
11plays_in_club/is_in_country (where is the club that edin dzeko plays for ?)48.68 4.2462.502.0748.03 2.4176.971.50
12plays-for-country-1/plays-in-club (name a soccer club that hasaplayer from australia ?)34.78 9.4930.4311.266.52 9.8816.3020.27
Overall74.92 2.8074.352.7170.172.82 84.423.68
", + "type": "table", + "image_path": "5fbe82f533094c85145ea099106cb95991607d24b32e7ddd6a941002c8b6ab14.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 140, + 516, + 208.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 208.33333333333331, + 516, + 276.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 276.66666666666663, + 516, + 344.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 450, + 527, + 540 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 156, + 430, + 450, + 442 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 430, + 451, + 444 + ], + "spans": [ + { + "bbox": [ + 156, + 430, + 451, + 444 + ], + "score": 1.0, + "content": "Table 10: Experimental results of conjunctive queries on WorldCup2014.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 450, + 527, + 540 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 450, + 527, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 527, + 540 + ], + "score": 0.977, + "html": "
TransE(SINGLE)TransE(COMP)TransGaussian(SINGLE)TransGaussian(COMP)
#Relation and sample questionMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRank
13(who plays forward for fc barcelona?)94.48 1.1071.17 1.7787.12 1.3798.77 1.02
14plays-position-and plays-for-country-1(who are the defenders on german national team?)95.93 1.0876.42 2.5064.23 2.02100.00 1.00
15plays_in_club-1andis_in_country(which player in ssc napoli is from argentina?)91.79 1.1375.37 1.7588.06 1.3794.03 1.07
Overall94.05 1.1174.05 1.9780.71 1.5697.62 1.03
", + "type": "table", + "image_path": "7b7cb14ec66eecc7d5221dbaa3b070d4c63fcafe7839f8dbcf502bea0dd90dc7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 450, + 527, + 480.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 480.0, + 527, + 510.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 510.0, + 527, + 540.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "table", + "bbox": [ + 235, + 645, + 374, + 691 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 175, + 625, + 433, + 637 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 174, + 624, + 433, + 638 + ], + "spans": [ + { + "bbox": [ + 174, + 624, + 433, + 638 + ], + "score": 1.0, + "content": "Table 11: Accuracy of knowledge base completion on WordNet.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 235, + 645, + 374, + 691 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 235, + 645, + 374, + 691 + ], + "spans": [ + { + "bbox": [ + 235, + 645, + 374, + 691 + ], + "score": 0.968, + "html": "
ModelAccuracy (%)
TransE (SINGLE)68.5
TransE (COMP)80.3
TransGaussian (SINGLE)58.4
TransGaussian (COMP)76.4
", + "type": "table", + "image_path": "8c2970ab69ca1c6706d4e79cc365694d00042fea242c32f6fb606982bd74807e.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 645, + 374, + 668.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 235, + 668.0, + 374, + 691.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 8.75 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 140, + 516, + 345 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 174, + 119, + 433, + 131 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 173, + 119, + 434, + 133 + ], + "spans": [ + { + "bbox": [ + 173, + 119, + 434, + 133 + ], + "score": 1.0, + "content": "Table 9: Experimental results of path queries on WorldCup2014.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 106, + 140, + 516, + 345 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 140, + 516, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 516, + 345 + ], + "score": 0.98, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Relation and sample questionMean H@1(%)Filtered RankH@1(%)Mean Filtered RankMean H@1(%) Filtered RankH@1(%)Mean Filtered Rank
1plays.in_club (which club does alan pulido play for?)90.60 1.1292.621.1196.64 1.0397.991.03
2plays-position (what position does gonzalo higuain play?)100.00 1.0098.111.0298.74 1.01100.001.00
3is_aged (how old is samuel etoo?)81.58 1.3092.111.1096.05 1.04100.001.00
4wears_number (what is the jersey number of mario balotelli?)44.29 1.8885.711.1996.43 1.04100.001.00
5plays-for-country (which country is thomas mueller from ?)97.60 1.0294.401.1198.40 1.0299.201.01
6is_in.country (which country is the soccer team fc porto based in ?)98.48 1.0298.481.0293.94 1.0898.481.02
7plays_in_club-1 (who plays professionally at liverpool fc?)95.12 1.0886.991.3896.75 1.0396.751.03
8plays_for_country (which player is from iran?)81.16 1.6172.462.3640.58 3.1993.241.48
9plays-position (name a player who plays goalkeeper?)100.00 1.0030.212.3055.21 5.0985.421.15
10is.in_country (which soccer club is based in mexico?)24.58 11.4723.7310.075.08 9.1817.8020.10
11plays_in_club/is_in_country (where is the club that edin dzeko plays for ?)48.68 4.2462.502.0748.03 2.4176.971.50
12plays-for-country-1/plays-in-club (name a soccer club that hasaplayer from australia ?)34.78 9.4930.4311.266.52 9.8816.3020.27
Overall74.92 2.8074.352.7170.172.82 84.423.68
", + "type": "table", + "image_path": "5fbe82f533094c85145ea099106cb95991607d24b32e7ddd6a941002c8b6ab14.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 140, + 516, + 208.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 208.33333333333331, + 516, + 276.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 276.66666666666663, + 516, + 344.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 450, + 527, + 540 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 156, + 430, + 450, + 442 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 430, + 451, + 444 + ], + "spans": [ + { + "bbox": [ + 156, + 430, + 451, + 444 + ], + "score": 1.0, + "content": "Table 10: Experimental results of conjunctive queries on WorldCup2014.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 450, + 527, + 540 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 450, + 527, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 527, + 540 + ], + "score": 0.977, + "html": "
TransE(SINGLE)TransE(COMP)TransGaussian(SINGLE)TransGaussian(COMP)
#Relation and sample questionMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRank
13(who plays forward for fc barcelona?)94.48 1.1071.17 1.7787.12 1.3798.77 1.02
14plays-position-and plays-for-country-1(who are the defenders on german national team?)95.93 1.0876.42 2.5064.23 2.02100.00 1.00
15plays_in_club-1andis_in_country(which player in ssc napoli is from argentina?)91.79 1.1375.37 1.7588.06 1.3794.03 1.07
Overall94.05 1.1174.05 1.9780.71 1.5697.62 1.03
", + "type": "table", + "image_path": "7b7cb14ec66eecc7d5221dbaa3b070d4c63fcafe7839f8dbcf502bea0dd90dc7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 450, + 527, + 480.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 480.0, + 527, + 510.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 510.0, + 527, + 540.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "table", + "bbox": [ + 235, + 645, + 374, + 691 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 175, + 625, + 433, + 637 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 174, + 624, + 433, + 638 + ], + "spans": [ + { + "bbox": [ + 174, + 624, + 433, + 638 + ], + "score": 1.0, + "content": "Table 11: Accuracy of knowledge base completion on WordNet.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 235, + 645, + 374, + 691 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 235, + 645, + 374, + 691 + ], + "spans": [ + { + "bbox": [ + 235, + 645, + 374, + 691 + ], + "score": 0.968, + "html": "
ModelAccuracy (%)
TransE (SINGLE)68.5
TransE (COMP)80.3
TransGaussian (SINGLE)58.4
TransGaussian (COMP)76.4
", + "type": "table", + "image_path": "8c2970ab69ca1c6706d4e79cc365694d00042fea242c32f6fb606982bd74807e.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 645, + 374, + 668.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 235, + 668.0, + 374, + 691.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 8.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/ByC7ww9le/ByC7ww9le_model.json b/parse/train/ByC7ww9le/ByC7ww9le_model.json new file mode 100644 index 0000000000000000000000000000000000000000..e8f519e14bfe4fe3cee749737ebec05846abd93b --- /dev/null +++ b/parse/train/ByC7ww9le/ByC7ww9le_model.json @@ -0,0 +1,20052 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 747, + 1302, + 747, + 1302, + 1113, + 398, + 1113 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1452, + 1403, + 1452, + 1403, + 1727, + 298, + 1727 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2033, + 298, + 2033 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1283, + 1402, + 1283, + 1402, + 1435, + 299, + 1435 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 301, + 1742, + 1399, + 1742, + 1399, + 1835, + 301, + 1835 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 820, + 432, + 1286, + 432, + 1286, + 556, + 820, + 556 + ], + "score": 0.952 + }, + { + "category_id": 0, + "poly": [ + 299, + 219, + 1400, + 219, + 1400, + 378, + 299, + 378 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 313, + 432, + 688, + 432, + 688, + 585, + 313, + 585 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 302, + 1202, + 573, + 1202, + 573, + 1237, + 302, + 1237 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 773, + 666, + 927, + 666, + 927, + 699, + 773, + 699 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.642 + }, + { + "category_id": 0, + "poly": [ + 315, + 433, + 475, + 433, + 475, + 463, + 315, + 463 + ], + "score": 0.23 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 215.0, + 1405.0, + 215.0, + 1405.0, + 274.0, + 295.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 269.0, + 1405.0, + 269.0, + 1405.0, + 334.0, + 290.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 331.0, + 562.0, + 331.0, + 562.0, + 382.0, + 297.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1199.0, + 579.0, + 1199.0, + 579.0, + 1246.0, + 294.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 662.0, + 934.0, + 662.0, + 934.0, + 705.0, + 768.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 841.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 426.0, + 482.0, + 426.0, + 482.0, + 472.0, + 311.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 746.0, + 1305.0, + 746.0, + 1305.0, + 783.0, + 395.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 779.0, + 1305.0, + 779.0, + 1305.0, + 811.0, + 394.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 809.0, + 1305.0, + 809.0, + 1305.0, + 842.0, + 395.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 841.0, + 1305.0, + 841.0, + 1305.0, + 873.0, + 394.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 871.0, + 1305.0, + 871.0, + 1305.0, + 903.0, + 394.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 899.0, + 1306.0, + 899.0, + 1306.0, + 936.0, + 393.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 931.0, + 1306.0, + 931.0, + 1306.0, + 966.0, + 393.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 960.0, + 1306.0, + 960.0, + 1306.0, + 996.0, + 394.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 991.0, + 1306.0, + 991.0, + 1306.0, + 1027.0, + 394.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1022.0, + 1305.0, + 1022.0, + 1305.0, + 1057.0, + 393.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1052.0, + 1306.0, + 1052.0, + 1306.0, + 1087.0, + 393.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1083.0, + 1006.0, + 1083.0, + 1006.0, + 1118.0, + 393.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1450.0, + 1407.0, + 1450.0, + 1407.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1484.0, + 1402.0, + 1484.0, + 1402.0, + 1517.0, + 296.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1549.0, + 294.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1578.0, + 292.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1573.0, + 1409.0, + 1573.0, + 1409.0, + 1613.0, + 291.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1632.0, + 1404.0, + 1632.0, + 1404.0, + 1672.0, + 292.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1666.0, + 1404.0, + 1666.0, + 1404.0, + 1699.0, + 296.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1696.0, + 1048.0, + 1696.0, + 1048.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 712.0, + 2003.0, + 712.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1284.0, + 1403.0, + 1284.0, + 1403.0, + 1317.0, + 298.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 1404.0, + 1312.0, + 1404.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1343.0, + 1406.0, + 1343.0, + 1406.0, + 1380.0, + 294.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1404.0, + 1373.0, + 1404.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1405.0, + 695.0, + 1405.0, + 695.0, + 1439.0, + 294.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1740.0, + 1404.0, + 1740.0, + 1404.0, + 1778.0, + 296.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1808.0, + 297.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1804.0, + 890.0, + 1804.0, + 890.0, + 1838.0, + 297.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 432.0, + 1173.0, + 432.0, + 1173.0, + 465.0, + 818.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 458.0, + 1174.0, + 458.0, + 1174.0, + 497.0, + 816.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 494.0, + 1122.0, + 494.0, + 1122.0, + 525.0, + 819.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 524.0, + 1286.0, + 524.0, + 1286.0, + 559.0, + 821.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 427.0, + 481.0, + 427.0, + 481.0, + 468.0, + 310.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 460.0, + 691.0, + 460.0, + 691.0, + 498.0, + 310.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 492.0, + 568.0, + 492.0, + 568.0, + 528.0, + 311.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 523.0, + 598.0, + 523.0, + 598.0, + 556.0, + 311.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 554.0, + 686.0, + 554.0, + 686.0, + 590.0, + 312.0, + 590.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1404, + 1758, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 961, + 1404, + 961, + 1404, + 1208, + 297, + 1208 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1222, + 1404, + 1222, + 1404, + 1376, + 298, + 1376 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1391, + 1403, + 1391, + 1403, + 1575, + 297, + 1575 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1589, + 1403, + 1589, + 1403, + 1744, + 298, + 1744 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 301, + 853, + 1398, + 853, + 1398, + 947, + 301, + 947 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 411, + 703, + 1286, + 703, + 1286, + 811, + 411, + 811 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 298, + 594, + 1401, + 594, + 1401, + 659, + 298, + 659 + ], + "score": 0.952 + }, + { + "category_id": 3, + "poly": [ + 573, + 216, + 1125, + 216, + 1125, + 403, + 573, + 403 + ], + "score": 0.931 + }, + { + "category_id": 4, + "poly": [ + 294, + 428, + 1404, + 428, + 1404, + 490, + 294, + 490 + ], + "score": 0.924 + }, + { + "category_id": 9, + "poly": [ + 1366, + 764, + 1400, + 764, + 1400, + 794, + 1366, + 794 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.709 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 104, + 297, + 104 + ], + "score": 0.455 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 104, + 297, + 104 + ], + "score": 0.446 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.226 + }, + { + "category_id": 14, + "poly": [ + 406, + 700, + 1293, + 700, + 1293, + 815, + 406, + 815 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { \\mathrm { i t e m } } ) = \\log \\phi ( \\pmb { v } _ { \\mathrm { i t e m } } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) } \\\\ & { \\qquad = - \\frac { 1 } { 2 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ^ { - 1 } ( \\pmb { v } _ { \\mathrm { i t e m } } - \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } ) + \\mathrm { c o n s t . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 411, + 631, + 479, + 631, + 479, + 657, + 411, + 657 + ], + "score": 0.9, + "latex": "{ \\pmb { v } } _ { \\mathrm { i t e m } }" + }, + { + "category_id": 13, + "poly": [ + 482, + 885, + 534, + 885, + 534, + 914, + 482, + 914 + ], + "score": 0.25, + "latex": "1 8 \\mathrm { t h }" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 223.0, + 718.0, + 223.0, + 718.0, + 249.0, + 585.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 223.0, + 898.0, + 223.0, + 898.0, + 249.0, + 803.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 221.0, + 1097.0, + 221.0, + 1097.0, + 250.0, + 1000.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 463.0, + 296.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 458.0, + 1296.0, + 458.0, + 1296.0, + 492.0, + 294.0, + 492.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": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 1402.0, + 1819.0, + 1402.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1887.0, + 294.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1402.0, + 1912.0, + 1402.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1979.0, + 295.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 878.0, + 2004.0, + 878.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 963.0, + 1404.0, + 963.0, + 1404.0, + 997.0, + 296.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 993.0, + 1405.0, + 993.0, + 1405.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1023.0, + 1405.0, + 1023.0, + 1405.0, + 1059.0, + 291.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1054.0, + 1402.0, + 1054.0, + 1402.0, + 1088.0, + 295.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1116.0, + 1404.0, + 1116.0, + 1404.0, + 1150.0, + 295.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1146.0, + 1407.0, + 1146.0, + 1407.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1178.0, + 1034.0, + 1178.0, + 1034.0, + 1209.0, + 295.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1258.0, + 295.0, + 1258.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, + 1278.0, + 1406.0, + 1278.0, + 1406.0, + 1323.0, + 292.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1314.0, + 1404.0, + 1314.0, + 1404.0, + 1347.0, + 296.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1345.0, + 1335.0, + 1345.0, + 1335.0, + 1378.0, + 296.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1390.0, + 1407.0, + 1390.0, + 1407.0, + 1426.0, + 295.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1455.0, + 292.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1450.0, + 1403.0, + 1450.0, + 1403.0, + 1487.0, + 292.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1517.0, + 292.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1515.0, + 1404.0, + 1515.0, + 1404.0, + 1546.0, + 296.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1543.0, + 1080.0, + 1543.0, + 1080.0, + 1578.0, + 295.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1591.0, + 1407.0, + 1591.0, + 1407.0, + 1624.0, + 297.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1408.0, + 1651.0, + 1408.0, + 1688.0, + 292.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1680.0, + 1407.0, + 1680.0, + 1407.0, + 1718.0, + 292.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1713.0, + 823.0, + 1713.0, + 823.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 854.0, + 1403.0, + 854.0, + 1403.0, + 888.0, + 296.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 481.0, + 884.0, + 481.0, + 918.0, + 295.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 884.0, + 1404.0, + 884.0, + 1404.0, + 918.0, + 535.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 912.0, + 1273.0, + 912.0, + 1273.0, + 952.0, + 293.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 594.0, + 1405.0, + 594.0, + 1405.0, + 630.0, + 294.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 625.0, + 410.0, + 625.0, + 410.0, + 661.0, + 293.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 625.0, + 1383.0, + 625.0, + 1383.0, + 661.0, + 480.0, + 661.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 510, + 1404, + 510, + 1404, + 759, + 297, + 759 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 971, + 1405, + 971, + 1405, + 1158, + 297, + 1158 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 294, + 1404, + 294, + 1404, + 418, + 298, + 418 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1399, + 1404, + 1399, + 1404, + 1491, + 298, + 1491 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 426, + 1757, + 1269, + 1757, + 1269, + 1962, + 426, + 1962 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1189, + 1401, + 1189, + 1401, + 1283, + 297, + 1283 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 570, + 1292, + 1124, + 1292, + 1124, + 1391, + 570, + 1391 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 646, + 1501, + 1050, + 1501, + 1050, + 1578, + 646, + 1578 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 295, + 1688, + 1399, + 1688, + 1399, + 1751, + 295, + 1751 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 770, + 1399, + 770, + 1399, + 840, + 298, + 840 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 853, + 1401, + 853, + 1401, + 915, + 298, + 915 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 1605, + 1397, + 1605, + 1397, + 1676, + 296, + 1676 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1401, + 1971, + 1401, + 2037, + 296, + 2037 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 587, + 926, + 1113, + 926, + 1113, + 966, + 587, + 966 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 809, + 226, + 809, + 262, + 300, + 262 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 454, + 723, + 454, + 723, + 486, + 301, + 486 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 929, + 1400, + 929, + 1400, + 959, + 1366, + 959 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1893, + 1401, + 1893, + 1401, + 1923, + 1365, + 1923 + ], + "score": 0.706 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.674 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.452 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1892, + 1401, + 1892, + 1401, + 1922, + 1365, + 1922 + ], + "score": 0.262 + }, + { + "category_id": 14, + "poly": [ + 425, + 1754, + 1271, + 1754, + 1271, + 1964, + 425, + 1964 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\displaystyle \\underset { \\{ \\delta _ { r } , M _ { r } , : r \\in \\bar { \\mathcal { R } } \\} } { \\operatorname* { m i n } } \\frac { 1 } { N } \\sum _ { ( s , r , o ) \\in \\mathcal { T } } \\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) } \\left[ [ \\mu - \\mathrm { s c o r e } ( s , r , o ) + \\mathrm { s c o r e } ( s , r , t ^ { \\prime } ) ] _ { + } \\right] } \\\\ { + \\lambda \\left( \\displaystyle \\sum _ { e \\in \\mathcal { E } } \\| v _ { e } \\| _ { 2 } ^ { 2 } + \\displaystyle \\sum _ { r \\in \\bar { \\mathcal { R } } } \\big ( \\| \\delta _ { r } \\| _ { 2 } ^ { 2 } + \\| M _ { r } \\| _ { F } ^ { 2 } \\big ) \\right) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 646, + 1498, + 1050, + 1498, + 1050, + 1576, + 646, + 1576 + ], + "score": 0.94, + "latex": "{ \\mathrm { E L U } } ( x ) = { \\left\\{ \\begin{array} { l l } { x , } & { x \\geq 0 , } \\\\ { \\exp { ( x ) } - 1 , } & { x < 0 . } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 1169, + 802, + 1301, + 802, + 1301, + 843, + 1169, + 843 + ], + "score": 0.93, + "latex": "\\pmb { \\Sigma } _ { r } \\in \\mathbb { R } _ { + + } ^ { d \\times d }" + }, + { + "category_id": 14, + "poly": [ + 570, + 1291, + 1129, + 1291, + 1129, + 1391, + 570, + 1391 + ], + "score": 0.93, + "latex": "\\Sigma _ { r } = \\mathrm { d i a g } \\left( \\begin{array} { c } { { \\mathrm { E L U } ( m _ { r , 1 } ) + 1 + \\epsilon } } \\\\ { { } } \\\\ { { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot _ { \\cdot } \\cdot } } } } } } } } } } } } } } } \\end{array} \\right)" + }, + { + "category_id": 13, + "poly": [ + 692, + 769, + 792, + 769, + 792, + 803, + 692, + 803 + ], + "score": 0.93, + "latex": "\\pmb { v } _ { s } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 909, + 2003, + 1112, + 2003, + 1112, + 2036, + 909, + 2036 + ], + "score": 0.93, + "latex": "[ x ] _ { + } = \\operatorname* { m a x } ( 0 , x )" + }, + { + "category_id": 13, + "poly": [ + 1248, + 853, + 1333, + 853, + 1333, + 887, + 1248, + 887 + ], + "score": 0.93, + "latex": "( s , r , o )" + }, + { + "category_id": 13, + "poly": [ + 483, + 543, + 569, + 543, + 569, + 576, + 483, + 576 + ], + "score": 0.92, + "latex": "( s , r , o )" + }, + { + "category_id": 13, + "poly": [ + 341, + 1642, + 430, + 1642, + 430, + 1676, + 341, + 1676 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( s , r )" + }, + { + "category_id": 13, + "poly": [ + 614, + 805, + 712, + 805, + 712, + 837, + 614, + 837 + ], + "score": 0.92, + "latex": "\\pmb { \\delta } _ { r } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 584, + 925, + 1112, + 925, + 1112, + 964, + 584, + 964 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathrm { s c o r e } ( s , r , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 630, + 974, + 817, + 974, + 817, + 1005, + 630, + 1005 + ], + "score": 0.91, + "latex": "\\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } = \\pmb { \\Sigma } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1606, + 1101, + 1606, + 1101, + 1645, + 857, + 1645 + ], + "score": 0.91, + "latex": "\\mathcal { T } = \\{ ( s _ { i } , r _ { i } , o _ { i } ) \\} _ { i = 1 } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 298, + 2004, + 391, + 2004, + 391, + 2034, + 298, + 2034 + ], + "score": 0.91, + "latex": "1 , \\ldots , d" + }, + { + "category_id": 13, + "poly": [ + 975, + 974, + 1013, + 974, + 1013, + 1004, + 975, + 1004 + ], + "score": 0.9, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1252, + 1131, + 1252, + 1131, + 1282, + 1094, + 1282 + ], + "score": 0.9, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 981, + 773, + 1049, + 773, + 1049, + 802, + 981, + 802 + ], + "score": 0.9, + "latex": "s \\in { \\mathcal { E } }" + }, + { + "category_id": 13, + "poly": [ + 718, + 2004, + 761, + 2004, + 761, + 2037, + 718, + 2037 + ], + "score": 0.9, + "latex": "[ \\cdot ] _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1034, + 1080, + 1034, + 1080, + 1065, + 1041, + 1065 + ], + "score": 0.89, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 942, + 1221, + 979, + 1221, + 979, + 1251, + 942, + 1251 + ], + "score": 0.89, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 543, + 1150, + 543, + 1150, + 572, + 1056, + 572 + ], + "score": 0.89, + "latex": "\\textit { o } \\in \\textit { \\mathcal { E } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 806, + 372, + 806, + 372, + 835, + 297, + 835 + ], + "score": 0.89, + "latex": "r \\in \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 852, + 1974, + 900, + 1974, + 900, + 2003, + 852, + 2003 + ], + "score": 0.89, + "latex": "M _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1297, + 1192, + 1335, + 1192, + 1335, + 1221, + 1297, + 1221 + ], + "score": 0.88, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 972, + 1645, + 1051, + 1645, + 1051, + 1676, + 972, + 1676 + ], + "score": 0.88, + "latex": "( s , r , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1004, + 1131, + 1004, + 1131, + 1034, + 1101, + 1034 + ], + "score": 0.88, + "latex": "\\delta _ { r }" + }, + { + "category_id": 13, + "poly": [ + 880, + 1009, + 913, + 1009, + 913, + 1034, + 880, + 1034 + ], + "score": 0.87, + "latex": "{ \\pmb v } _ { o }" + }, + { + "category_id": 13, + "poly": [ + 373, + 975, + 615, + 975, + 615, + 1007, + 373, + 1007 + ], + "score": 0.86, + "latex": "\\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\pmb { \\delta } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 714, + 1009, + 746, + 1009, + 746, + 1034, + 714, + 1034 + ], + "score": 0.86, + "latex": "{ \\pmb v } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1400, + 597, + 1400, + 597, + 1435, + 373, + 1435 + ], + "score": 0.84, + "latex": "m _ { r , j } ~ ( j = 1 , \\ldots , d )" + }, + { + "category_id": 13, + "poly": [ + 695, + 514, + 723, + 514, + 723, + 541, + 695, + 541 + ], + "score": 0.82, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 381, + 1972, + 489, + 1972, + 489, + 2005, + 381, + 2005 + ], + "score": 0.82, + "latex": "N = | \\mathcal { T } |" + }, + { + "category_id": 13, + "poly": [ + 1066, + 860, + 1083, + 860, + 1083, + 881, + 1066, + 881 + ], + "score": 0.75, + "latex": "o" + }, + { + "category_id": 13, + "poly": [ + 770, + 543, + 864, + 543, + 864, + 573, + 770, + 573 + ], + "score": 0.75, + "latex": "\\textit { s } \\in \\textit { \\varepsilon }" + }, + { + "category_id": 13, + "poly": [ + 347, + 513, + 369, + 513, + 369, + 541, + 347, + 541 + ], + "score": 0.74, + "latex": "\\mathcal { E }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1976, + 1338, + 1976, + 1338, + 2008, + 1284, + 2008 + ], + "score": 0.72, + "latex": "m _ { r , j }" + }, + { + "category_id": 13, + "poly": [ + 883, + 543, + 983, + 543, + 983, + 572, + 883, + 572 + ], + "score": 0.72, + "latex": "r \\in \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1437, + 312, + 1437, + 312, + 1458, + 298, + 1458 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 455, + 859, + 472, + 859, + 472, + 881, + 455, + 881 + ], + "score": 0.71, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 612, + 861, + 628, + 861, + 628, + 881, + 612, + 881 + ], + "score": 0.71, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1975, + 1405, + 1975, + 1405, + 2006, + 1352, + 2006 + ], + "score": 0.64, + "latex": "j =" + }, + { + "category_id": 13, + "poly": [ + 502, + 1977, + 523, + 1977, + 523, + 2005, + 502, + 2005 + ], + "score": 0.49, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1974, + 1407, + 1974, + 1407, + 2008, + 1284, + 2008 + ], + "score": 0.38, + "latex": "m _ { r , j } , j =" + }, + { + "category_id": 13, + "poly": [ + 373, + 1403, + 427, + 1403, + 427, + 1435, + 373, + 1435 + ], + "score": 0.31, + "latex": "m _ { r , j }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 224.0, + 813.0, + 224.0, + 813.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 454.0, + 729.0, + 454.0, + 729.0, + 490.0, + 295.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 511.0, + 346.0, + 511.0, + 346.0, + 545.0, + 294.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 511.0, + 694.0, + 511.0, + 694.0, + 545.0, + 370.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 511.0, + 1404.0, + 511.0, + 1404.0, + 545.0, + 724.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 541.0, + 482.0, + 541.0, + 482.0, + 575.0, + 294.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 541.0, + 769.0, + 541.0, + 769.0, + 575.0, + 570.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 541.0, + 882.0, + 541.0, + 882.0, + 575.0, + 865.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 541.0, + 1055.0, + 541.0, + 1055.0, + 575.0, + 984.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 541.0, + 1402.0, + 541.0, + 1402.0, + 575.0, + 1151.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 1402.0, + 570.0, + 1402.0, + 609.0, + 292.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 638.0, + 296.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 633.0, + 1405.0, + 633.0, + 1405.0, + 667.0, + 295.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 662.0, + 1406.0, + 662.0, + 1406.0, + 699.0, + 292.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 693.0, + 1407.0, + 693.0, + 1407.0, + 730.0, + 292.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 725.0, + 804.0, + 725.0, + 804.0, + 759.0, + 295.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 968.0, + 372.0, + 968.0, + 372.0, + 1012.0, + 292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 968.0, + 629.0, + 968.0, + 629.0, + 1012.0, + 616.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 968.0, + 974.0, + 968.0, + 974.0, + 1012.0, + 818.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 968.0, + 1408.0, + 968.0, + 1408.0, + 1012.0, + 1014.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1003.0, + 713.0, + 1003.0, + 713.0, + 1039.0, + 292.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1003.0, + 879.0, + 1003.0, + 879.0, + 1039.0, + 747.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1003.0, + 1100.0, + 1003.0, + 1100.0, + 1039.0, + 914.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1003.0, + 1407.0, + 1003.0, + 1407.0, + 1039.0, + 1132.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1031.0, + 1040.0, + 1031.0, + 1040.0, + 1068.0, + 292.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1031.0, + 1407.0, + 1031.0, + 1407.0, + 1068.0, + 1081.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 1407.0, + 1061.0, + 1407.0, + 1102.0, + 292.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1091.0, + 1405.0, + 1091.0, + 1405.0, + 1129.0, + 292.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1126.0, + 923.0, + 1126.0, + 923.0, + 1158.0, + 295.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 295.0, + 1404.0, + 295.0, + 1404.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 1405.0, + 327.0, + 1405.0, + 360.0, + 294.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 357.0, + 1404.0, + 357.0, + 1404.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 389.0, + 1326.0, + 389.0, + 1326.0, + 421.0, + 294.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 372.0, + 1398.0, + 372.0, + 1435.0, + 294.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1398.0, + 1405.0, + 1398.0, + 1405.0, + 1435.0, + 598.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1429.0, + 297.0, + 1429.0, + 297.0, + 1465.0, + 291.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1429.0, + 1403.0, + 1429.0, + 1403.0, + 1465.0, + 313.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1458.0, + 552.0, + 1458.0, + 552.0, + 1492.0, + 295.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1190.0, + 1296.0, + 1190.0, + 1296.0, + 1224.0, + 295.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1190.0, + 1405.0, + 1190.0, + 1405.0, + 1224.0, + 1336.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1218.0, + 941.0, + 1218.0, + 941.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1218.0, + 1403.0, + 1218.0, + 1403.0, + 1258.0, + 980.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1251.0, + 1093.0, + 1251.0, + 1093.0, + 1285.0, + 296.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1251.0, + 1264.0, + 1251.0, + 1264.0, + 1285.0, + 1132.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1686.0, + 1403.0, + 1686.0, + 1403.0, + 1725.0, + 295.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1718.0, + 1025.0, + 1718.0, + 1025.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 769.0, + 296.0, + 769.0, + 296.0, + 862.0, + 281.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 769.0, + 613.0, + 769.0, + 613.0, + 862.0, + 373.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 769.0, + 980.0, + 769.0, + 980.0, + 862.0, + 793.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 769.0, + 1168.0, + 769.0, + 1168.0, + 862.0, + 1050.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 769.0, + 1405.0, + 769.0, + 1405.0, + 862.0, + 1302.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 847.0, + 454.0, + 847.0, + 454.0, + 892.0, + 293.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 847.0, + 611.0, + 847.0, + 611.0, + 892.0, + 473.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 847.0, + 1065.0, + 847.0, + 1065.0, + 892.0, + 629.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 847.0, + 1247.0, + 847.0, + 1247.0, + 892.0, + 1084.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 847.0, + 1406.0, + 847.0, + 1406.0, + 892.0, + 1334.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 883.0, + 750.0, + 883.0, + 750.0, + 914.0, + 294.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1595.0, + 856.0, + 1595.0, + 856.0, + 1658.0, + 290.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1595.0, + 1402.0, + 1595.0, + 1402.0, + 1658.0, + 1102.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 340.0, + 1638.0, + 340.0, + 1679.0, + 294.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1638.0, + 971.0, + 1638.0, + 971.0, + 1679.0, + 431.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1638.0, + 1064.0, + 1638.0, + 1064.0, + 1679.0, + 1052.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1966.0, + 380.0, + 1966.0, + 380.0, + 2012.0, + 294.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1966.0, + 501.0, + 1966.0, + 501.0, + 2012.0, + 490.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1966.0, + 851.0, + 1966.0, + 851.0, + 2012.0, + 524.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1966.0, + 1283.0, + 1966.0, + 1283.0, + 2012.0, + 901.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 2000.0, + 717.0, + 2000.0, + 717.0, + 2039.0, + 392.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 2000.0, + 908.0, + 2000.0, + 908.0, + 2039.0, + 762.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 2000.0, + 1406.0, + 2000.0, + 1406.0, + 2039.0, + 1113.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1235, + 1404, + 1235, + 1404, + 1602, + 298, + 1602 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 475, + 1404, + 475, + 1404, + 662, + 297, + 662 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1695, + 1404, + 1695, + 1404, + 1879, + 298, + 1879 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 949, + 1404, + 949, + 1404, + 1127, + 298, + 1127 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1403, + 227, + 1403, + 384, + 298, + 384 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 675, + 1403, + 675, + 1403, + 799, + 298, + 799 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1401, + 1971, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 847, + 1412, + 847, + 1412, + 913, + 297, + 913 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 509, + 804, + 1187, + 804, + 1187, + 842, + 509, + 842 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 300, + 1638, + 631, + 1638, + 631, + 1669, + 300, + 1669 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 302, + 1168, + 685, + 1168, + 685, + 1203, + 302, + 1203 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 301, + 420, + 707, + 420, + 707, + 449, + 301, + 449 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 856, + 75, + 856, + 104, + 298, + 104 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 808, + 1400, + 808, + 1400, + 837, + 1366, + 837 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 301, + 1915, + 663, + 1915, + 663, + 1946, + 301, + 1946 + ], + "score": 0.817 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.759 + }, + { + "category_id": 0, + "poly": [ + 300, + 1915, + 663, + 1915, + 663, + 1946, + 300, + 1946 + ], + "score": 0.324 + }, + { + "category_id": 13, + "poly": [ + 691, + 736, + 853, + 736, + 853, + 770, + 691, + 770 + ], + "score": 0.93, + "latex": "r _ { 1 } / r _ { 2 } / \\cdots / r _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 693, + 293, + 815, + 293, + 815, + 327, + 693, + 327 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( s , r ) }" + }, + { + "category_id": 13, + "poly": [ + 496, + 1094, + 658, + 1094, + 658, + 1128, + 496, + 1128 + ], + "score": 0.93, + "latex": "N ^ { \\prime } = | \\mathcal { T } \\cup \\mathcal { P } |" + }, + { + "category_id": 13, + "poly": [ + 1224, + 261, + 1311, + 261, + 1311, + 295, + 1224, + 295 + ], + "score": 0.92, + "latex": "( s , \\tilde { r } , o )" + }, + { + "category_id": 13, + "poly": [ + 785, + 228, + 951, + 228, + 951, + 259, + 785, + 259 + ], + "score": 0.92, + "latex": "\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 292, + 384, + 292, + 384, + 324, + 298, + 324 + ], + "score": 0.91, + "latex": "( o , r , s )" + }, + { + "category_id": 13, + "poly": [ + 356, + 846, + 680, + 846, + 680, + 883, + 356, + 883 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } = \\pmb { v } _ { s } + \\sum _ { t = 1 } ^ { \\tau } \\delta _ { r _ { t } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 299, + 766, + 530, + 766, + 530, + 802, + 299, + 802 + ], + "score": 0.91, + "latex": "( \\dot { s , } r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o )" + }, + { + "category_id": 13, + "poly": [ + 606, + 1032, + 662, + 1032, + 662, + 1062, + 606, + 1062 + ], + "score": 0.91, + "latex": "\\mathcal { R } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 827, + 942, + 1264, + 942, + 1264, + 1009, + 827, + 1009 + ], + "score": 0.91, + "latex": "\\mathcal { P } = \\Big \\{ \\Big ( s _ { i } , r _ { i _ { 1 } } / r _ { i _ { 2 } } / \\cdot \\cdot \\cdot / r _ { i _ { l _ { i } } } , o _ { i } \\Big ) \\Big \\} _ { i = 1 } ^ { N ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1064, + 1353, + 1064, + 1353, + 1092, + 1276, + 1092 + ], + "score": 0.9, + "latex": "\\mathcal { T } \\cup \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 410, + 2004, + 442, + 2004, + 442, + 2034, + 410, + 2034 + ], + "score": 0.88, + "latex": "\\boldsymbol { h } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 733, + 354, + 760, + 354, + 760, + 383, + 733, + 383 + ], + "score": 0.88, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 693, + 846, + 962, + 846, + 962, + 883, + 693, + 883 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\sum _ { \\mathrm { c o n t e x t } } = \\sum _ { t = 1 } ^ { \\tau } \\sum _ { r _ { t } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1010, + 1075, + 1010, + 1075, + 1037, + 1040, + 1037 + ], + "score": 0.84, + "latex": "r _ { i _ { k } }" + }, + { + "category_id": 14, + "poly": [ + 508, + 804, + 1186, + 804, + 1186, + 841, + 508, + 841 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\mathrm { s c o r e } ( s , r _ { 1 } / r _ { 2 } / \\cdot \\cdot \\cdot / r _ { \\tau } , o ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { \\mathrm { c o n t e x t } } , \\pmb { \\Sigma } _ { \\mathrm { c o n t e x t } } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1065, + 1216, + 1065, + 1216, + 1092, + 1189, + 1092 + ], + "score": 0.82, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 429, + 262, + 457, + 262, + 457, + 289, + 429, + 289 + ], + "score": 0.81, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 1242, + 570, + 1269, + 570, + 1269, + 597, + 1242, + 597 + ], + "score": 0.81, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1034, + 325, + 1034, + 325, + 1061, + 298, + 1061 + ], + "score": 0.81, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 407, + 1096, + 436, + 1096, + 436, + 1122, + 407, + 1122 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 878, + 263, + 895, + 263, + 895, + 289, + 878, + 289 + ], + "score": 0.8, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 515, + 742, + 534, + 742, + 534, + 764, + 515, + 764 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1176, + 266, + 1194, + 266, + 1194, + 289, + 1176, + 289 + ], + "score": 0.72, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1010, + 743, + 1027, + 743, + 1027, + 764, + 1010, + 764 + ], + "score": 0.7, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 345, + 743, + 363, + 743, + 363, + 764, + 345, + 764 + ], + "score": 0.7, + "latex": "o" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1638.0, + 635.0, + 1638.0, + 635.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1163.0, + 691.0, + 1163.0, + 691.0, + 1213.0, + 289.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 416.0, + 714.0, + 416.0, + 714.0, + 455.0, + 294.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 667.0, + 1914.0, + 667.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 666.0, + 1914.0, + 666.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1237.0, + 1404.0, + 1237.0, + 1404.0, + 1271.0, + 296.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1268.0, + 1404.0, + 1268.0, + 1404.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1336.0, + 292.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1330.0, + 1404.0, + 1330.0, + 1404.0, + 1360.0, + 296.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1358.0, + 1405.0, + 1358.0, + 1405.0, + 1395.0, + 293.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1387.0, + 1404.0, + 1387.0, + 1404.0, + 1423.0, + 292.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1418.0, + 1404.0, + 1418.0, + 1404.0, + 1454.0, + 293.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1487.0, + 293.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1510.0, + 1404.0, + 1510.0, + 1404.0, + 1547.0, + 293.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1405.0, + 1541.0, + 1405.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1573.0, + 1168.0, + 1573.0, + 1168.0, + 1607.0, + 296.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 474.0, + 1404.0, + 474.0, + 1404.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 506.0, + 1404.0, + 506.0, + 1404.0, + 543.0, + 291.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 534.0, + 1407.0, + 534.0, + 1407.0, + 575.0, + 290.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 1241.0, + 570.0, + 1241.0, + 602.0, + 292.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 570.0, + 1405.0, + 570.0, + 1405.0, + 602.0, + 1270.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 598.0, + 1406.0, + 598.0, + 1406.0, + 633.0, + 292.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 1311.0, + 629.0, + 1311.0, + 663.0, + 295.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1694.0, + 1405.0, + 1694.0, + 1405.0, + 1730.0, + 296.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1762.0, + 293.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1754.0, + 1405.0, + 1754.0, + 1405.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1786.0, + 1404.0, + 1786.0, + 1404.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1816.0, + 1405.0, + 1816.0, + 1405.0, + 1850.0, + 293.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 406.0, + 1848.0, + 406.0, + 1883.0, + 292.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 957.0, + 1408.0, + 957.0, + 1408.0, + 997.0, + 1266.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 1039.0, + 1002.0, + 1039.0, + 1037.0, + 294.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1002.0, + 1404.0, + 1002.0, + 1404.0, + 1037.0, + 1076.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1028.0, + 297.0, + 1028.0, + 297.0, + 1069.0, + 292.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1028.0, + 605.0, + 1028.0, + 605.0, + 1069.0, + 326.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1028.0, + 1405.0, + 1028.0, + 1405.0, + 1069.0, + 663.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1062.0, + 1188.0, + 1062.0, + 1188.0, + 1096.0, + 294.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1062.0, + 1275.0, + 1062.0, + 1275.0, + 1096.0, + 1217.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1062.0, + 1402.0, + 1062.0, + 1402.0, + 1096.0, + 1354.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1091.0, + 406.0, + 1091.0, + 406.0, + 1129.0, + 292.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1091.0, + 495.0, + 1091.0, + 495.0, + 1129.0, + 437.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1091.0, + 671.0, + 1091.0, + 671.0, + 1129.0, + 659.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 936.5, + 1270.0, + 936.5, + 1270.0, + 1021.5, + 279.0, + 1021.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 784.0, + 229.0, + 784.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 263.0, + 952.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 428.0, + 261.0, + 428.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 261.0, + 877.0, + 261.0, + 877.0, + 295.0, + 458.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 261.0, + 1175.0, + 261.0, + 1175.0, + 295.0, + 896.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 261.0, + 1223.0, + 261.0, + 1223.0, + 295.0, + 1195.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 295.0, + 1312.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 288.0, + 297.0, + 288.0, + 297.0, + 334.0, + 292.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 288.0, + 692.0, + 288.0, + 692.0, + 334.0, + 385.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 288.0, + 1409.0, + 288.0, + 1409.0, + 334.0, + 816.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 318.0, + 1405.0, + 318.0, + 1405.0, + 358.0, + 292.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 354.0, + 732.0, + 354.0, + 732.0, + 387.0, + 296.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 354.0, + 1338.0, + 354.0, + 1338.0, + 387.0, + 761.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 1408.0, + 675.0, + 1408.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 705.0, + 1405.0, + 705.0, + 1405.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 344.0, + 736.0, + 344.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 736.0, + 514.0, + 736.0, + 514.0, + 772.0, + 364.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 736.0, + 690.0, + 736.0, + 690.0, + 772.0, + 535.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 736.0, + 1009.0, + 736.0, + 1009.0, + 772.0, + 854.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 736.0, + 1405.0, + 736.0, + 1405.0, + 772.0, + 1028.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 767.0, + 668.0, + 767.0, + 668.0, + 803.0, + 531.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 409.0, + 2003.0, + 409.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2037.0, + 443.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 835.0, + 355.0, + 835.0, + 355.0, + 896.0, + 288.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 835.0, + 692.0, + 835.0, + 692.0, + 896.0, + 681.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 835.0, + 1411.0, + 835.0, + 1411.0, + 896.0, + 963.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 1152.0, + 879.0, + 1152.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1777, + 1404, + 1777, + 1404, + 1903, + 297, + 1903 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1602, + 1404, + 1602, + 1404, + 1764, + 297, + 1764 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 298, + 229, + 1420, + 229, + 1420, + 829, + 298, + 829 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 852, + 1407, + 852, + 1407, + 1101, + 296, + 1101 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 734, + 1515, + 962, + 1515, + 962, + 1578, + 734, + 1578 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1389, + 1399, + 1389, + 1399, + 1455, + 296, + 1455 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 1260, + 1403, + 1260, + 1403, + 1322, + 296, + 1322 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 303, + 1963, + 1403, + 1963, + 1403, + 2036, + 303, + 2036 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 593, + 1212, + 1106, + 1212, + 1106, + 1251, + 593, + 1251 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 618, + 1913, + 1082, + 1913, + 1082, + 1953, + 618, + 1953 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 531, + 1336, + 1167, + 1336, + 1167, + 1377, + 531, + 1377 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 300, + 1170, + 709, + 1170, + 709, + 1201, + 300, + 1201 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1532, + 1400, + 1532, + 1400, + 1562, + 1366, + 1562 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1917, + 1400, + 1917, + 1400, + 1946, + 1366, + 1946 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 296, + 1468, + 1273, + 1468, + 1273, + 1502, + 296, + 1502 + ], + "score": 0.783 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.767 + }, + { + "category_id": 13, + "poly": [ + 728, + 1810, + 816, + 1810, + 816, + 1842, + 728, + 1842 + ], + "score": 0.94, + "latex": "( e , p , o )" + }, + { + "category_id": 14, + "poly": [ + 734, + 1511, + 965, + 1511, + 965, + 1577, + 734, + 1577 + ], + "score": 0.93, + "latex": "o _ { e } = \\sum _ { t = 1 } ^ { T } p _ { t , e } h _ { t } ." + }, + { + "category_id": 14, + "poly": [ + 616, + 1912, + 1082, + 1912, + 1082, + 1953, + 616, + 1953 + ], + "score": 0.92, + "latex": "\\mathrm { s c o r e } _ { e } ( \\pmb { v } _ { o } ) = \\log \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } )" + }, + { + "category_id": 13, + "poly": [ + 491, + 2002, + 660, + 2002, + 660, + 2031, + 491, + 2031 + ], + "score": 0.9, + "latex": "\\bar { \\mathcal { R } } = \\mathcal { R } \\cup \\mathcal { R } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 813, + 979, + 863, + 979, + 863, + 1010, + 813, + 1010 + ], + "score": 0.9, + "latex": "\\alpha _ { r , e }" + }, + { + "category_id": 14, + "poly": [ + 593, + 1212, + 1102, + 1212, + 1102, + 1251, + 593, + 1251 + ], + "score": 0.9, + "latex": "p _ { t , e } = \\mathrm { s o f t m a x } \\left( f ( v _ { e } , h _ { t } ) \\right) \\quad ( t = 1 , . . . , T ) ," + }, + { + "category_id": 13, + "poly": [ + 1317, + 949, + 1362, + 949, + 1362, + 980, + 1317, + 980 + ], + "score": 0.89, + "latex": "\\mathit { p } _ { t , e }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1611, + 695, + 1611, + 695, + 1640, + 646, + 1640 + ], + "score": 0.89, + "latex": "\\alpha _ { r , e }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1845, + 626, + 1845, + 626, + 1874, + 577, + 1874 + ], + "score": 0.89, + "latex": "\\alpha _ { r , e }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1424, + 415, + 1424, + 415, + 1456, + 298, + 1456 + ], + "score": 0.89, + "latex": "\\operatorname* { m a x } ( 0 , x )" + }, + { + "category_id": 13, + "poly": [ + 1113, + 1042, + 1162, + 1042, + 1162, + 1070, + 1113, + 1070 + ], + "score": 0.88, + "latex": "\\alpha _ { r , e }" + }, + { + "category_id": 13, + "poly": [ + 581, + 1475, + 625, + 1475, + 625, + 1504, + 581, + 1504 + ], + "score": 0.88, + "latex": "\\mathit { p } _ { t , e }" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1471, + 1239, + 1471, + 1239, + 1501, + 1208, + 1501 + ], + "score": 0.88, + "latex": "\\boldsymbol { h } _ { t }" + }, + { + "category_id": 14, + "poly": [ + 533, + 1334, + 1165, + 1334, + 1165, + 1377, + 533, + 1377 + ], + "score": 0.88, + "latex": "f ( \\pmb { v } _ { e } , \\pmb { h } _ { t } ) = \\pmb { u } _ { f } ^ { \\top } \\mathrm { R e L U } \\left( \\pmb { W } _ { f , v } \\pmb { v } _ { e } + \\pmb { W } _ { f , h } \\pmb { h } _ { t } + \\pmb { b } _ { 1 } \\right) + b _ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 1101, + 1972, + 1132, + 1972, + 1132, + 1997, + 1101, + 1997 + ], + "score": 0.86, + "latex": "{ \\pmb v } _ { e }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1267, + 406, + 1267, + 406, + 1292, + 375, + 1292 + ], + "score": 0.86, + "latex": "{ \\pmb v } _ { e }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1263, + 1323, + 1263, + 1323, + 1294, + 1303, + 1294 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 297, + 1637, + 355, + 1637, + 355, + 1671, + 297, + 1671 + ], + "score": 0.84, + "latex": "\\mathcal { R } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1424, + 1205, + 1424, + 1205, + 1450, + 1181, + 1450 + ], + "score": 0.83, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1392, + 1407, + 1392, + 1407, + 1426, + 1266, + 1426 + ], + "score": 0.8, + "latex": "{ \\mathrm { R e L U } } ( x ) =" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1815, + 1172, + 1815, + 1172, + 1841, + 1153, + 1841 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 372, + 1389, + 529, + 1389, + 529, + 1426, + 372, + 1426 + ], + "score": 0.79, + "latex": "W _ { f , v } \\in \\mathbb { R } ^ { L \\times d }" + }, + { + "category_id": 13, + "poly": [ + 661, + 1178, + 677, + 1178, + 677, + 1198, + 661, + 1198 + ], + "score": 0.77, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 355, + 1965, + 1011, + 1965, + 1011, + 2003, + 355, + 2003 + ], + "score": 0.76, + "latex": "\\begin{array} { r } { \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } = \\pmb { v } _ { e } + \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } \\delta _ { r } , \\sum _ { e , \\alpha , \\mathrm { K B } } = \\sum _ { r \\in \\bar { \\mathcal { R } } } \\alpha _ { r , e } ^ { 2 } \\pmb { \\Sigma } _ { r } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 424, + 2009, + 440, + 2009, + 440, + 2030, + 424, + 2030 + ], + "score": 0.75, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 1273, + 1604, + 1404, + 1604, + 1404, + 1638, + 1273, + 1638 + ], + "score": 0.71, + "latex": "( \\forall r \\in \\mathcal { R } \\cup" + }, + { + "category_id": 13, + "poly": [ + 864, + 1269, + 879, + 1269, + 879, + 1289, + 864, + 1289 + ], + "score": 0.71, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 585, + 1787, + 601, + 1787, + 601, + 1807, + 585, + 1807 + ], + "score": 0.7, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 884, + 1013, + 901, + 1013, + 901, + 1034, + 884, + 1034 + ], + "score": 0.7, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 999, + 983, + 1017, + 983, + 1017, + 1004, + 999, + 1004 + ], + "score": 0.66, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 555, + 982, + 572, + 982, + 572, + 1004, + 555, + 1004 + ], + "score": 0.63, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 383, + 1877, + 400, + 1877, + 400, + 1898, + 383, + 1898 + ], + "score": 0.63, + "latex": "o" + }, + { + "category_id": 13, + "poly": [ + 973, + 1602, + 1390, + 1602, + 1390, + 1642, + 973, + 1642 + ], + "score": 0.61, + "latex": "\\alpha _ { r , e } = \\mathrm { R e L U } \\left( \\pmb { w } _ { r } ^ { \\top } \\pmb { o } _ { e } \\right) \\quad \\left( \\forall r \\in \\mathcal { R } \\cup \\right." + }, + { + "category_id": 13, + "poly": [ + 828, + 1389, + 934, + 1389, + 934, + 1426, + 828, + 1426 + ], + "score": 0.59, + "latex": "\\boldsymbol { u } _ { f } \\in \\mathbb { R } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 944, + 1391, + 1027, + 1391, + 1027, + 1423, + 944, + 1423 + ], + "score": 0.57, + "latex": "b _ { 2 } \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1269, + 983, + 1285, + 983, + 1285, + 1004, + 1269, + 1004 + ], + "score": 0.52, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 717, + 1389, + 817, + 1389, + 817, + 1424, + 717, + 1424 + ], + "score": 0.47, + "latex": "\\pmb { b } _ { 1 } \\in \\mathbb { R } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 542, + 1388, + 707, + 1388, + 707, + 1426, + 542, + 1426 + ], + "score": 0.45, + "latex": "W _ { f , h } \\in \\mathbb { R } ^ { L \\times H }" + }, + { + "category_id": 13, + "poly": [ + 403, + 1388, + 1107, + 1388, + 1107, + 1427, + 403, + 1427 + ], + "score": 0.26, + "latex": "\\mathbf { \\widetilde { \\Gamma } } _ { f , v } \\in \\mathbb { R } ^ { L \\times d } , W _ { f , h } \\in \\mathbb { R } ^ { L \\times H } , b _ { 1 } \\in \\mathbb { R } ^ { L } , { \\mathbf { u } } _ { f } \\in \\mathbb { R } ^ { L } , b _ { 2 } \\in \\mathbb { R } \\mathrm { a r e } \\mathrm { p a r }" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 227.0, + 1259.0, + 227.0, + 1259.0, + 267.0, + 1111.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 260.0, + 1310.0, + 260.0, + 1310.0, + 297.0, + 1126.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 305.0, + 458.0, + 305.0, + 458.0, + 331.0, + 429.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 314.0, + 528.0, + 314.0, + 528.0, + 327.0, + 506.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 306.0, + 569.0, + 306.0, + 569.0, + 330.0, + 547.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 304.0, + 634.0, + 304.0, + 634.0, + 328.0, + 603.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 314.0, + 744.0, + 314.0, + 744.0, + 348.0, + 727.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 309.0, + 887.0, + 309.0, + 887.0, + 323.0, + 864.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 331.0, + 393.0, + 331.0, + 393.0, + 360.0, + 321.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 351.0, + 406.0, + 351.0, + 406.0, + 385.0, + 307.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 359.0, + 453.0, + 359.0, + 453.0, + 380.0, + 431.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 360.0, + 513.0, + 360.0, + 513.0, + 377.0, + 495.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 359.0, + 578.0, + 359.0, + 578.0, + 380.0, + 556.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 359.0, + 639.0, + 359.0, + 639.0, + 380.0, + 618.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 359.0, + 701.0, + 359.0, + 701.0, + 381.0, + 680.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 363.0, + 760.0, + 363.0, + 760.0, + 377.0, + 743.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 366.0, + 882.0, + 366.0, + 882.0, + 376.0, + 869.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 373.0, + 468.0, + 373.0, + 468.0, + 389.0, + 452.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 377.0, + 529.0, + 377.0, + 529.0, + 394.0, + 511.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 378.0, + 588.0, + 378.0, + 588.0, + 395.0, + 570.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 381.0, + 644.0, + 381.0, + 644.0, + 396.0, + 629.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 384.0, + 695.0, + 384.0, + 695.0, + 399.0, + 678.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 381.0, + 756.0, + 381.0, + 756.0, + 395.0, + 738.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 387.0, + 1373.0, + 387.0, + 1373.0, + 420.0, + 1158.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 427.0, + 717.0, + 427.0, + 717.0, + 464.0, + 604.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 445.0, + 882.0, + 445.0, + 882.0, + 475.0, + 739.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 463.0, + 374.0, + 463.0, + 374.0, + 494.0, + 303.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 466.0, + 663.0, + 466.0, + 663.0, + 479.0, + 653.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 487.0, + 420.0, + 487.0, + 420.0, + 516.0, + 309.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 492.0, + 497.0, + 492.0, + 497.0, + 507.0, + 480.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 496.0, + 569.0, + 496.0, + 569.0, + 506.0, + 556.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 493.0, + 648.0, + 493.0, + 648.0, + 507.0, + 631.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 496.0, + 720.0, + 496.0, + 720.0, + 506.0, + 709.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 496.0, + 804.0, + 496.0, + 804.0, + 506.0, + 792.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 496.0, + 897.0, + 496.0, + 897.0, + 506.0, + 878.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 520.0, + 436.0, + 520.0, + 436.0, + 557.0, + 401.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 548.0, + 494.0, + 548.0, + 494.0, + 568.0, + 485.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 538.0, + 1284.0, + 538.0, + 1284.0, + 575.0, + 1051.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 568.0, + 495.0, + 568.0, + 495.0, + 578.0, + 482.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 569.0, + 566.0, + 569.0, + 566.0, + 578.0, + 556.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 568.0, + 646.0, + 568.0, + 646.0, + 578.0, + 632.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 566.0, + 725.0, + 566.0, + 725.0, + 580.0, + 708.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 568.0, + 800.0, + 568.0, + 800.0, + 578.0, + 792.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 565.0, + 888.0, + 565.0, + 888.0, + 577.0, + 877.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 609.0, + 546.0, + 609.0, + 546.0, + 620.0, + 534.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 609.0, + 622.0, + 609.0, + 622.0, + 620.0, + 612.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 606.0, + 700.0, + 606.0, + 700.0, + 624.0, + 685.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 607.0, + 781.0, + 607.0, + 781.0, + 623.0, + 766.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 607.0, + 1224.0, + 607.0, + 1224.0, + 620.0, + 1213.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 636.0, + 648.0, + 636.0, + 648.0, + 645.0, + 634.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 673.0, + 898.0, + 673.0, + 898.0, + 709.0, + 383.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 678.0, + 1033.0, + 678.0, + 1033.0, + 690.0, + 1021.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 696.0, + 1069.0, + 696.0, + 1069.0, + 707.0, + 1055.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 696.0, + 1289.0, + 696.0, + 1289.0, + 707.0, + 1274.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 740.0, + 844.0, + 740.0, + 844.0, + 781.0, + 409.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 743.0, + 1133.0, + 743.0, + 1133.0, + 780.0, + 1013.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 742.0, + 1418.0, + 742.0, + 1418.0, + 785.0, + 1152.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 776.0, + 1078.0, + 776.0, + 1078.0, + 801.0, + 1058.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 784.0, + 1294.0, + 784.0, + 1294.0, + 799.0, + 1279.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 790.0, + 555.0, + 790.0, + 555.0, + 820.0, + 410.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 521.0, + 508.0, + 521.0, + 508.0, + 558.5, + 479.0, + 558.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 528.5, + 895.0, + 528.5, + 895.0, + 556.5, + 878.0, + 556.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 855.0, + 1407.0, + 855.0, + 1407.0, + 889.0, + 295.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 887.0, + 1405.0, + 887.0, + 1405.0, + 917.0, + 295.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 915.0, + 1405.0, + 915.0, + 1405.0, + 951.0, + 293.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 945.0, + 1316.0, + 945.0, + 1316.0, + 981.0, + 294.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 945.0, + 1405.0, + 945.0, + 1405.0, + 981.0, + 1363.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 554.0, + 977.0, + 554.0, + 1010.0, + 294.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 977.0, + 812.0, + 977.0, + 812.0, + 1010.0, + 573.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 977.0, + 998.0, + 977.0, + 998.0, + 1010.0, + 864.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 977.0, + 1268.0, + 977.0, + 1268.0, + 1010.0, + 1018.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 977.0, + 1404.0, + 977.0, + 1404.0, + 1010.0, + 1286.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1004.0, + 883.0, + 1004.0, + 883.0, + 1042.0, + 291.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1004.0, + 1405.0, + 1004.0, + 1405.0, + 1042.0, + 902.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 1112.0, + 1037.0, + 1112.0, + 1073.0, + 294.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1073.0, + 1163.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1066.0, + 1359.0, + 1066.0, + 1359.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1778.0, + 584.0, + 1778.0, + 584.0, + 1814.0, + 294.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1778.0, + 1405.0, + 1778.0, + 1405.0, + 1814.0, + 602.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 727.0, + 1809.0, + 727.0, + 1846.0, + 294.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1809.0, + 1152.0, + 1809.0, + 1152.0, + 1846.0, + 817.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1809.0, + 1406.0, + 1809.0, + 1406.0, + 1846.0, + 1173.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1840.0, + 576.0, + 1840.0, + 576.0, + 1873.0, + 293.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1840.0, + 1405.0, + 1840.0, + 1405.0, + 1873.0, + 627.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1872.0, + 382.0, + 1872.0, + 382.0, + 1905.0, + 295.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1872.0, + 741.0, + 1872.0, + 741.0, + 1905.0, + 401.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1600.0, + 645.0, + 1600.0, + 645.0, + 1642.0, + 295.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1600.0, + 972.0, + 1600.0, + 972.0, + 1642.0, + 696.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1678.0, + 356.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1671.0, + 1404.0, + 1671.0, + 1404.0, + 1705.0, + 296.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1699.0, + 1405.0, + 1699.0, + 1405.0, + 1738.0, + 295.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1732.0, + 852.0, + 1732.0, + 852.0, + 1762.0, + 297.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1380.0, + 371.0, + 1380.0, + 371.0, + 1431.0, + 291.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1380.0, + 1265.0, + 1380.0, + 1265.0, + 1431.0, + 1108.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1418.0, + 297.0, + 1418.0, + 297.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1418.0, + 1180.0, + 1418.0, + 1180.0, + 1458.0, + 416.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1418.0, + 1295.0, + 1418.0, + 1295.0, + 1458.0, + 1206.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1257.0, + 374.0, + 1257.0, + 374.0, + 1299.0, + 295.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1257.0, + 863.0, + 1257.0, + 863.0, + 1299.0, + 407.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1257.0, + 1302.0, + 1257.0, + 1302.0, + 1299.0, + 880.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1257.0, + 1404.0, + 1257.0, + 1404.0, + 1299.0, + 1324.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1291.0, + 812.0, + 1291.0, + 812.0, + 1325.0, + 295.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1959.0, + 354.0, + 1959.0, + 354.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1959.0, + 1100.0, + 1959.0, + 1100.0, + 2010.0, + 1012.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1959.0, + 1409.0, + 1959.0, + 1409.0, + 2010.0, + 1133.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1994.0, + 423.0, + 1994.0, + 423.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1994.0, + 490.0, + 1994.0, + 490.0, + 2039.0, + 441.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1994.0, + 1313.0, + 1994.0, + 1313.0, + 2039.0, + 661.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 660.0, + 1165.0, + 660.0, + 1209.0, + 294.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1165.0, + 712.0, + 1165.0, + 712.0, + 1209.0, + 678.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1467.0, + 580.0, + 1467.0, + 580.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1467.0, + 1207.0, + 1467.0, + 1207.0, + 1506.0, + 626.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1467.0, + 1275.0, + 1467.0, + 1275.0, + 1506.0, + 1240.0, + 1506.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1463, + 1405, + 1463, + 1405, + 1740, + 298, + 1740 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 738, + 1405, + 738, + 1405, + 928, + 298, + 928 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1231, + 1408, + 1231, + 1408, + 1356, + 298, + 1356 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1832, + 1401, + 1832, + 1401, + 1986, + 299, + 1986 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 988, + 1411, + 988, + 1411, + 1084, + 298, + 1084 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 295, + 285, + 1405, + 285, + 1405, + 379, + 295, + 379 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 385, + 386, + 1314, + 386, + 1314, + 551, + 385, + 551 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 300, + 555, + 1404, + 555, + 1404, + 648, + 300, + 648 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 857, + 74, + 857, + 105, + 298, + 105 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 542, + 229, + 542, + 261, + 298, + 261 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 328, + 2005, + 1284, + 2005, + 1284, + 2033, + 328, + 2033 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 301, + 1096, + 1139, + 1096, + 1139, + 1130, + 301, + 1130 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 299, + 683, + 915, + 683, + 915, + 715, + 299, + 715 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 300, + 1398, + 558, + 1398, + 558, + 1432, + 300, + 1432 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 296, + 941, + 1422, + 941, + 1422, + 975, + 296, + 975 + ], + "score": 0.903 + }, + { + "category_id": 8, + "poly": [ + 300, + 1144, + 1425, + 1144, + 1425, + 1226, + 300, + 1226 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1775, + 686, + 1775, + 686, + 1806, + 300, + 1806 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 484, + 1400, + 484, + 1400, + 515, + 1366, + 515 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.79 + }, + { + "category_id": 14, + "poly": [ + 383, + 382, + 1314, + 382, + 1314, + 554, + 383, + 554 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathrm { s c o r e } ( \\pmb { v } _ { o } | \\mathcal { E } ( q ) , \\Theta ) = \\underset { e \\in \\mathcal { E } ( q ) } { \\log \\prod } \\phi ( \\pmb { v } _ { o } | \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } , \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ) } \\\\ & { \\qquad = - \\cfrac { 1 } { 2 } \\displaystyle \\sum _ { e \\in \\mathcal { E } ( q ) } \\left( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } \\right) ^ { \\top } \\pmb { \\Sigma } _ { e , \\alpha , \\mathrm { K B } } ^ { - 1 } ( \\pmb { v } _ { o } - \\pmb { \\mu } _ { e , \\alpha , \\mathrm { K B } } ) + \\mathrm { c o n s t . } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 807, + 1051, + 873, + 1051, + 873, + 1084, + 807, + 1084 + ], + "score": 0.93, + "latex": "A ( q _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1161, + 557, + 1252, + 557, + 1252, + 589, + 1161, + 589 + ], + "score": 0.92, + "latex": "\\Sigma _ { e , \\alpha , \\mathrm { K B } }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1021, + 1202, + 1021, + 1202, + 1054, + 1086, + 1054 + ], + "score": 0.92, + "latex": "\\left( q _ { i } , \\mathcal { E } ( q _ { i } ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 371, + 1232, + 483, + 1232, + 483, + 1268, + 371, + 1268 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) }" + }, + { + "category_id": 13, + "poly": [ + 805, + 740, + 916, + 740, + 916, + 774, + 805, + 774 + ], + "score": 0.92, + "latex": "( \\mathcal { E } , \\mathcal { R } , \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 1284, + 834, + 1401, + 834, + 1401, + 868, + 1284, + 868 + ], + "score": 0.92, + "latex": "\\bar { \\mathcal { E } } ( q _ { i } ) \\subset \\mathcal { E }" + }, + { + "category_id": 13, + "poly": [ + 298, + 834, + 675, + 834, + 675, + 868, + 298, + 868 + ], + "score": 0.92, + "latex": "\\{ ( q _ { i } , \\mathcal { E } ( q _ { i } ) , a _ { i } \\bar { ) } : i = 1 , 2 , . . . , m \\}" + }, + { + "category_id": 13, + "poly": [ + 1079, + 866, + 1167, + 866, + 1167, + 896, + 1079, + 896 + ], + "score": 0.92, + "latex": "a _ { i } ~ \\in { \\mathcal { E } }" + }, + { + "category_id": 13, + "poly": [ + 341, + 287, + 396, + 287, + 396, + 321, + 341, + 321 + ], + "score": 0.92, + "latex": "\\mathcal { E } ( q )" + }, + { + "category_id": 13, + "poly": [ + 300, + 771, + 605, + 771, + 605, + 811, + 300, + 811 + ], + "score": 0.91, + "latex": "\\big ( \\{ v _ { e } \\} _ { e \\in \\mathcal { E } } , \\{ ( \\delta _ { r } , \\Sigma _ { r } ) \\} _ { r \\in \\bar { \\mathcal { R } } } \\big )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1136, + 1426, + 1136, + 1426, + 1229, + 310, + 1229 + ], + "score": 0.9, + "latex": "\\frac { 1 } { n } \\sum _ { i = 1 } ^ { m } \\biggl ( \\underset { t ^ { \\prime } \\sim \\mathcal { N } ( q _ { i } ) } { \\mathbb { E } } \\left[ [ \\mu - \\mathrm { s c o r e } ( v _ { a _ { i } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) + \\mathrm { s c o r e } ( v _ { t ^ { \\prime } } | \\mathcal { E } ( q _ { i } ) , \\Theta ) ] _ { + } \\right] + \\nu \\sum _ { e \\in \\mathcal { E } ( q _ { i } ) } \\sum _ { r \\in \\mathcal { R } } | \\alpha _ { r , e } | \\biggr ) + \\lambda \\| \\Theta \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 560, + 1110, + 560, + 1110, + 591, + 1021, + 591 + ], + "score": 0.89, + "latex": "\\mu _ { e , \\alpha , \\mathrm { K B } }" + }, + { + "category_id": 13, + "poly": [ + 432, + 1328, + 480, + 1328, + 480, + 1357, + 432, + 1357 + ], + "score": 0.87, + "latex": "\\alpha _ { r , e }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1324, + 1117, + 1324, + 1117, + 1354, + 1090, + 1354 + ], + "score": 0.86, + "latex": "\\ell _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 996, + 1163, + 996, + 1163, + 1019, + 1136, + 1019 + ], + "score": 0.86, + "latex": "a _ { i }" + }, + { + "category_id": 13, + "poly": [ + 755, + 839, + 779, + 839, + 779, + 866, + 755, + 866 + ], + "score": 0.85, + "latex": "q _ { i }" + }, + { + "category_id": 13, + "poly": [ + 743, + 1054, + 768, + 1054, + 768, + 1083, + 743, + 1083 + ], + "score": 0.84, + "latex": "q _ { i }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1054, + 374, + 1054, + 374, + 1081, + 347, + 1081 + ], + "score": 0.84, + "latex": "a _ { i }" + }, + { + "category_id": 13, + "poly": [ + 712, + 771, + 741, + 771, + 741, + 802, + 712, + 802 + ], + "score": 0.83, + "latex": "\\bar { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 797, + 1329, + 822, + 1329, + 822, + 1355, + 797, + 1355 + ], + "score": 0.83, + "latex": "q _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1268, + 321, + 1268, + 321, + 1294, + 298, + 1294 + ], + "score": 0.8, + "latex": "q _ { i }" + }, + { + "category_id": 13, + "poly": [ + 923, + 293, + 940, + 293, + 940, + 320, + 923, + 320 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1006, + 588, + 1031, + 588, + 1031, + 613, + 1006, + 613 + ], + "score": 0.8, + "latex": "\\Theta" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 547.0, + 223.0, + 547.0, + 268.0, + 291.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1998.0, + 1289.0, + 1998.0, + 1289.0, + 2042.0, + 332.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 683.0, + 920.0, + 683.0, + 920.0, + 718.0, + 295.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1395.0, + 560.0, + 1395.0, + 560.0, + 1437.0, + 292.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 692.0, + 1772.0, + 692.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1465.0, + 1405.0, + 1465.0, + 1405.0, + 1498.0, + 297.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1497.0, + 1403.0, + 1497.0, + 1403.0, + 1530.0, + 296.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1553.0, + 1408.0, + 1553.0, + 1408.0, + 1595.0, + 291.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1616.0, + 1406.0, + 1616.0, + 1406.0, + 1654.0, + 293.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1681.0, + 296.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 1405.0, + 1677.0, + 1405.0, + 1714.0, + 293.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1709.0, + 460.0, + 1709.0, + 460.0, + 1743.0, + 296.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 804.0, + 736.0, + 804.0, + 776.0, + 295.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 776.0, + 917.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 768.0, + 299.0, + 768.0, + 299.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 768.0, + 711.0, + 768.0, + 711.0, + 816.0, + 606.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 768.0, + 1407.0, + 768.0, + 1407.0, + 816.0, + 742.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 802.0, + 1406.0, + 802.0, + 1406.0, + 842.0, + 292.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 833.0, + 754.0, + 833.0, + 754.0, + 869.0, + 676.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 833.0, + 1283.0, + 833.0, + 1283.0, + 869.0, + 780.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 833.0, + 1405.0, + 833.0, + 1405.0, + 869.0, + 1402.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 864.0, + 1078.0, + 864.0, + 1078.0, + 900.0, + 293.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 864.0, + 1406.0, + 864.0, + 1406.0, + 900.0, + 1168.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 895.0, + 1358.0, + 895.0, + 1358.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1229.0, + 370.0, + 1229.0, + 370.0, + 1272.0, + 292.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1229.0, + 1410.0, + 1229.0, + 1410.0, + 1272.0, + 484.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 297.0, + 1263.0, + 297.0, + 1296.0, + 293.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1263.0, + 1406.0, + 1263.0, + 1406.0, + 1296.0, + 322.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1325.0, + 431.0, + 1325.0, + 431.0, + 1358.0, + 296.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1325.0, + 796.0, + 1325.0, + 796.0, + 1358.0, + 481.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1325.0, + 1089.0, + 1325.0, + 1089.0, + 1358.0, + 823.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1325.0, + 1203.0, + 1325.0, + 1203.0, + 1358.0, + 1118.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1828.0, + 1405.0, + 1828.0, + 1405.0, + 1865.0, + 295.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1857.0, + 1403.0, + 1857.0, + 1403.0, + 1898.0, + 293.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1890.0, + 1405.0, + 1890.0, + 1405.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1959.0, + 293.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1951.0, + 1405.0, + 1951.0, + 1405.0, + 1990.0, + 293.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 989.0, + 1135.0, + 989.0, + 1135.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 989.0, + 1403.0, + 989.0, + 1403.0, + 1024.0, + 1164.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1020.0, + 1085.0, + 1020.0, + 1085.0, + 1054.0, + 293.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1020.0, + 1405.0, + 1020.0, + 1405.0, + 1054.0, + 1203.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1049.0, + 346.0, + 1049.0, + 346.0, + 1087.0, + 293.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1049.0, + 742.0, + 1049.0, + 742.0, + 1087.0, + 375.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1049.0, + 806.0, + 1049.0, + 806.0, + 1087.0, + 769.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1049.0, + 885.0, + 1049.0, + 885.0, + 1087.0, + 874.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 287.0, + 340.0, + 287.0, + 340.0, + 321.0, + 294.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 287.0, + 922.0, + 287.0, + 922.0, + 321.0, + 397.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 287.0, + 1403.0, + 287.0, + 1403.0, + 321.0, + 941.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 316.0, + 1405.0, + 316.0, + 1405.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 349.0, + 859.0, + 349.0, + 859.0, + 382.0, + 294.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 550.0, + 1020.0, + 550.0, + 1020.0, + 597.0, + 291.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 550.0, + 1160.0, + 550.0, + 1160.0, + 597.0, + 1111.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 550.0, + 1408.0, + 550.0, + 1408.0, + 597.0, + 1253.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 586.0, + 1005.0, + 586.0, + 1005.0, + 620.0, + 295.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 586.0, + 1404.0, + 586.0, + 1404.0, + 620.0, + 1032.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 619.0, + 603.0, + 619.0, + 603.0, + 650.0, + 295.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1094.0, + 1137.0, + 1094.0, + 1137.0, + 1134.0, + 296.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 937.0, + 1427.0, + 937.0, + 1427.0, + 980.0, + 295.0, + 980.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 614, + 1405, + 614, + 1405, + 979, + 297, + 979 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1401, + 1404, + 1401, + 1404, + 1677, + 298, + 1677 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1015, + 1403, + 1015, + 1403, + 1198, + 298, + 1198 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1711, + 1402, + 1711, + 1402, + 1865, + 299, + 1865 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1402, + 1880, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1214, + 1404, + 1214, + 1404, + 1307, + 298, + 1307 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 298, + 425, + 1404, + 425, + 1404, + 578, + 298, + 578 + ], + "score": 0.964 + }, + { + "category_id": 0, + "poly": [ + 300, + 1345, + 636, + 1345, + 636, + 1375, + 300, + 1375 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 856, + 76, + 856, + 104, + 298, + 104 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 302, + 319, + 1407, + 319, + 1407, + 410, + 302, + 410 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 916, + 225, + 1443, + 225, + 1443, + 318, + 916, + 318 + ], + "score": 0.822 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 311, + 224, + 885, + 224, + 885, + 319, + 311, + 319 + ], + "score": 0.594 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.321 + }, + { + "category_id": 13, + "poly": [ + 1121, + 736, + 1207, + 736, + 1207, + 768, + 1121, + 768 + ], + "score": 0.93, + "latex": "( s , p , e )" + }, + { + "category_id": 13, + "poly": [ + 461, + 1076, + 570, + 1076, + 570, + 1108, + 461, + 1108 + ], + "score": 0.92, + "latex": "( s _ { 1 } , r _ { 1 } , e )" + }, + { + "category_id": 13, + "poly": [ + 623, + 1076, + 733, + 1076, + 733, + 1109, + 623, + 1109 + ], + "score": 0.92, + "latex": "( s _ { 2 } , r _ { 2 } , e )" + }, + { + "category_id": 13, + "poly": [ + 930, + 736, + 1000, + 736, + 1000, + 765, + 930, + 765 + ], + "score": 0.9, + "latex": "e \\in { \\mathcal { E } }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1833, + 428, + 1833, + 428, + 1862, + 382, + 1862 + ], + "score": 0.9, + "latex": "r ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 817, + 1835, + 869, + 1835, + 869, + 1865, + 817, + 1865 + ], + "score": 0.89, + "latex": "- \\delta _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1835, + 1153, + 1835, + 1153, + 1865, + 1116, + 1865 + ], + "score": 0.89, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1046, + 1393, + 1046, + 1393, + 1075, + 1319, + 1075 + ], + "score": 0.89, + "latex": "e \\in { \\mathcal { E } }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 1804, + 1043, + 1804, + 1043, + 1834, + 1012, + 1834 + ], + "score": 0.88, + "latex": "\\delta _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1200, + 1804, + 1237, + 1804, + 1237, + 1834, + 1200, + 1834 + ], + "score": 0.88, + "latex": "\\Sigma _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1080, + 1277, + 1080, + 1277, + 1107, + 1248, + 1107 + ], + "score": 0.85, + "latex": "r _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1080, + 1354, + 1080, + 1354, + 1107, + 1326, + 1107 + ], + "score": 0.85, + "latex": "r _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1271, + 227, + 1307, + 227, + 1307, + 253, + 1271, + 253 + ], + "score": 0.83, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 1256, + 259, + 1291, + 259, + 1291, + 284, + 1256, + 284 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 550, + 259, + 586, + 259, + 586, + 285, + 550, + 285 + ], + "score": 0.82, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 709, + 290, + 746, + 290, + 746, + 316, + 709, + 316 + ], + "score": 0.8, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 1216, + 290, + 1253, + 290, + 1253, + 316, + 1216, + 316 + ], + "score": 0.8, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 494, + 771, + 513, + 771, + 513, + 798, + 494, + 798 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 847, + 646, + 886, + 646, + 886, + 673, + 847, + 673 + ], + "score": 0.78, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 642, + 227, + 679, + 227, + 679, + 253, + 642, + 253 + ], + "score": 0.78, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 748, + 677, + 779, + 677, + 779, + 703, + 748, + 703 + ], + "score": 0.75, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 862, + 1810, + 879, + 1810, + 879, + 1831, + 862, + 1831 + ], + "score": 0.68, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1130, + 675, + 1392, + 675, + 1392, + 705, + 1130, + 705 + ], + "score": 0.59, + "latex": "( \\mathbf { C L U B } \\to \\mathbf { C O U N T R Y } )" + }, + { + "category_id": 13, + "poly": [ + 654, + 1113, + 682, + 1113, + 682, + 1137, + 654, + 1137 + ], + "score": 0.51, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1384, + 741, + 1402, + 741, + 1402, + 763, + 1384, + 763 + ], + "score": 0.48, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 695, + 1113, + 724, + 1113, + 724, + 1137, + 695, + 1137 + ], + "score": 0.44, + "latex": "s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1112, + 724, + 1112, + 724, + 1138, + 654, + 1138 + ], + "score": 0.42, + "latex": "s _ { 1 } , s _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 728, + 677, + 824, + 677, + 824, + 703, + 728, + 703 + ], + "score": 0.34, + "latex": "\\mathbf { R } \\to \\mathbf { C L } " + }, + { + "category_id": 13, + "poly": [ + 889, + 1246, + 905, + 1246, + 905, + 1272, + 889, + 1272 + ], + "score": 0.33, + "latex": "/" + }, + { + "category_id": 13, + "poly": [ + 642, + 225, + 756, + 225, + 756, + 255, + 642, + 255 + ], + "score": 0.3, + "latex": " \\mathrm { C L U B }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1344.0, + 639.0, + 1344.0, + 639.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 610.0, + 1407.0, + 610.0, + 1407.0, + 649.0, + 291.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 645.0, + 846.0, + 645.0, + 846.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 645.0, + 1405.0, + 645.0, + 1405.0, + 679.0, + 887.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 727.0, + 673.0, + 727.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 673.0, + 1129.0, + 673.0, + 1129.0, + 711.0, + 825.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 711.0, + 1393.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 706.0, + 1403.0, + 706.0, + 1403.0, + 740.0, + 295.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 929.0, + 736.0, + 929.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 736.0, + 1120.0, + 736.0, + 1120.0, + 770.0, + 1001.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 736.0, + 1383.0, + 736.0, + 1383.0, + 770.0, + 1208.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 766.0, + 493.0, + 766.0, + 493.0, + 799.0, + 292.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 766.0, + 1405.0, + 766.0, + 1405.0, + 799.0, + 514.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 832.0, + 292.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 826.0, + 1407.0, + 826.0, + 1407.0, + 862.0, + 291.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 857.0, + 1406.0, + 857.0, + 1406.0, + 895.0, + 292.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 885.0, + 1406.0, + 885.0, + 1406.0, + 924.0, + 292.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 918.0, + 1405.0, + 918.0, + 1405.0, + 954.0, + 294.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 1036.0, + 949.0, + 1036.0, + 983.0, + 294.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1403.0, + 1405.0, + 1403.0, + 1405.0, + 1436.0, + 297.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1433.0, + 1404.0, + 1433.0, + 1404.0, + 1466.0, + 294.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1463.0, + 1404.0, + 1463.0, + 1404.0, + 1499.0, + 292.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1488.0, + 1405.0, + 1488.0, + 1405.0, + 1533.0, + 291.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 1402.0, + 1525.0, + 1402.0, + 1557.0, + 294.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1552.0, + 1405.0, + 1552.0, + 1405.0, + 1591.0, + 292.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1613.0, + 1406.0, + 1613.0, + 1406.0, + 1651.0, + 293.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1645.0, + 1092.0, + 1645.0, + 1092.0, + 1681.0, + 294.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1014.0, + 1407.0, + 1014.0, + 1407.0, + 1050.0, + 296.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1045.0, + 1318.0, + 1045.0, + 1318.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1045.0, + 1405.0, + 1045.0, + 1405.0, + 1080.0, + 1394.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1071.0, + 460.0, + 1071.0, + 460.0, + 1113.0, + 291.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1071.0, + 622.0, + 1071.0, + 622.0, + 1113.0, + 571.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1071.0, + 1247.0, + 1071.0, + 1247.0, + 1113.0, + 734.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1071.0, + 1325.0, + 1071.0, + 1325.0, + 1113.0, + 1278.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1071.0, + 1407.0, + 1071.0, + 1407.0, + 1113.0, + 1355.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1101.0, + 653.0, + 1101.0, + 653.0, + 1144.0, + 291.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1101.0, + 1407.0, + 1101.0, + 1407.0, + 1144.0, + 725.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1136.0, + 1406.0, + 1136.0, + 1406.0, + 1172.0, + 292.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1167.0, + 773.0, + 1167.0, + 773.0, + 1201.0, + 294.0, + 1201.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": [ + 295.0, + 1743.0, + 1404.0, + 1743.0, + 1404.0, + 1776.0, + 295.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 861.0, + 1804.0, + 861.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1804.0, + 1011.0, + 1804.0, + 1011.0, + 1837.0, + 880.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1804.0, + 1199.0, + 1804.0, + 1199.0, + 1837.0, + 1044.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1837.0, + 1238.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1832.0, + 381.0, + 1832.0, + 381.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1832.0, + 816.0, + 1832.0, + 816.0, + 1869.0, + 429.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1832.0, + 1115.0, + 1832.0, + 1115.0, + 1869.0, + 870.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1832.0, + 1163.0, + 1832.0, + 1163.0, + 1869.0, + 1154.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1408.0, + 1970.0, + 1408.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1318.0, + 2002.0, + 1318.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1215.0, + 1404.0, + 1215.0, + 1404.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1244.0, + 888.0, + 1244.0, + 888.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1244.0, + 1406.0, + 1244.0, + 1406.0, + 1280.0, + 906.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1276.0, + 1243.0, + 1276.0, + 1243.0, + 1310.0, + 294.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 424.0, + 1404.0, + 424.0, + 1404.0, + 457.0, + 297.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 455.0, + 1405.0, + 455.0, + 1405.0, + 491.0, + 293.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 486.0, + 1404.0, + 486.0, + 1404.0, + 524.0, + 293.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 516.0, + 1405.0, + 516.0, + 1405.0, + 556.0, + 292.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 546.0, + 740.0, + 546.0, + 740.0, + 585.0, + 295.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 314.0, + 1406.0, + 314.0, + 1406.0, + 353.0, + 295.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 345.0, + 1406.0, + 345.0, + 1406.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 379.0, + 839.0, + 379.0, + 839.0, + 416.0, + 296.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 223.0, + 1270.0, + 223.0, + 1270.0, + 257.0, + 914.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 223.0, + 1448.0, + 223.0, + 1448.0, + 257.0, + 1308.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 251.0, + 1255.0, + 251.0, + 1255.0, + 291.0, + 914.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 251.0, + 1428.0, + 251.0, + 1428.0, + 291.0, + 1292.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 287.0, + 1215.0, + 287.0, + 1215.0, + 321.0, + 917.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 287.0, + 1395.0, + 287.0, + 1395.0, + 321.0, + 1254.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 223.0, + 641.0, + 223.0, + 641.0, + 258.0, + 310.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 223.0, + 766.0, + 223.0, + 766.0, + 258.0, + 757.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 255.0, + 549.0, + 255.0, + 549.0, + 289.0, + 311.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 255.0, + 720.0, + 255.0, + 720.0, + 289.0, + 587.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 289.0, + 708.0, + 289.0, + 708.0, + 321.0, + 310.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 289.0, + 887.0, + 289.0, + 887.0, + 321.0, + 747.0, + 321.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 477, + 1405, + 477, + 1405, + 723, + 298, + 723 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1818, + 1404, + 1818, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1124, + 1403, + 1124, + 1403, + 1339, + 298, + 1339 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 444, + 298, + 444 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1354, + 1403, + 1354, + 1403, + 1509, + 298, + 1509 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 816, + 1403, + 816, + 1403, + 971, + 298, + 971 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 986, + 1403, + 986, + 1403, + 1108, + 298, + 1108 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 298, + 1589, + 1487, + 1589, + 1487, + 1692, + 298, + 1692 + ], + "score": 0.962, + "html": "
# entity
#atomic relations# atomic triplets
# path query Q&A(train/validation/test)# conjunctive query Q&A(train /validation /test)
1127639775620/804/15791564/224/420
" + }, + { + "category_id": 0, + "poly": [ + 300, + 1750, + 582, + 1750, + 582, + 1785, + 300, + 1785 + ], + "score": 0.907 + }, + { + "category_id": 6, + "poly": [ + 547, + 1534, + 1152, + 1534, + 1152, + 1568, + 547, + 1568 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 760, + 665, + 760, + 665, + 791, + 300, + 791 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 856, + 75, + 856, + 104, + 299, + 104 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.793 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.134 + }, + { + "category_id": 13, + "poly": [ + 1188, + 1017, + 1244, + 1017, + 1244, + 1046, + 1188, + 1046 + ], + "score": 0.86, + "latex": "60 \\%" + }, + { + "category_id": 13, + "poly": [ + 933, + 880, + 997, + 880, + 997, + 907, + 933, + 907 + ], + "score": 0.81, + "latex": "\\mathrm { H @ 1 }" + }, + { + "category_id": 13, + "poly": [ + 974, + 1017, + 1038, + 1017, + 1038, + 1046, + 974, + 1046 + ], + "score": 0.78, + "latex": "\\mathrm { H @ 1 }" + }, + { + "category_id": 13, + "poly": [ + 485, + 692, + 549, + 692, + 549, + 720, + 485, + 720 + ], + "score": 0.71, + "latex": "H @ l" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1747.0, + 587.0, + 1747.0, + 587.0, + 1791.0, + 293.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1530.0, + 1153.0, + 1530.0, + 1153.0, + 1573.0, + 542.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 669.0, + 757.0, + 669.0, + 795.0, + 294.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 479.0, + 1406.0, + 479.0, + 1406.0, + 512.0, + 295.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 509.0, + 1407.0, + 509.0, + 1407.0, + 542.0, + 295.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 540.0, + 1405.0, + 540.0, + 1405.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 571.0, + 1402.0, + 571.0, + 1402.0, + 601.0, + 296.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 600.0, + 1403.0, + 600.0, + 1403.0, + 634.0, + 295.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 631.0, + 1405.0, + 631.0, + 1405.0, + 665.0, + 295.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 661.0, + 1405.0, + 661.0, + 1405.0, + 696.0, + 292.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 693.0, + 484.0, + 693.0, + 484.0, + 726.0, + 295.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 693.0, + 1273.0, + 693.0, + 1273.0, + 726.0, + 550.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1404.0, + 1820.0, + 1404.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1888.0, + 292.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 292.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 1402.0, + 1914.0, + 1402.0, + 1945.0, + 295.0, + 1945.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": [ + 292.0, + 1973.0, + 1409.0, + 1973.0, + 1409.0, + 2009.0, + 292.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 808.0, + 2002.0, + 808.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1122.0, + 1403.0, + 1122.0, + 1403.0, + 1159.0, + 293.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1154.0, + 1407.0, + 1154.0, + 1407.0, + 1192.0, + 293.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 1403.0, + 1186.0, + 1403.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 1405.0, + 1217.0, + 1405.0, + 1251.0, + 293.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 1403.0, + 1246.0, + 1403.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1278.0, + 1404.0, + 1278.0, + 1404.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 904.0, + 1308.0, + 904.0, + 1342.0, + 294.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 255.0, + 1405.0, + 255.0, + 1405.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 293.0, + 1403.0, + 293.0, + 1403.0, + 324.0, + 296.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 319.0, + 1407.0, + 319.0, + 1407.0, + 359.0, + 292.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 1407.0, + 349.0, + 1407.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 381.0, + 1407.0, + 381.0, + 1407.0, + 418.0, + 292.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 412.0, + 1379.0, + 412.0, + 1379.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1407.0, + 1353.0, + 1407.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1386.0, + 1403.0, + 1386.0, + 1403.0, + 1416.0, + 297.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1413.0, + 1403.0, + 1413.0, + 1403.0, + 1451.0, + 293.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1442.0, + 1405.0, + 1442.0, + 1405.0, + 1481.0, + 292.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1477.0, + 744.0, + 1477.0, + 744.0, + 1514.0, + 293.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 851.0, + 297.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 847.0, + 1404.0, + 847.0, + 1404.0, + 883.0, + 293.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 876.0, + 932.0, + 876.0, + 932.0, + 915.0, + 293.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 876.0, + 1407.0, + 876.0, + 1407.0, + 915.0, + 998.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 907.0, + 1405.0, + 907.0, + 1405.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 939.0, + 1143.0, + 939.0, + 1143.0, + 976.0, + 293.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 985.0, + 1403.0, + 985.0, + 1403.0, + 1020.0, + 293.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 973.0, + 1018.0, + 973.0, + 1050.0, + 294.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1018.0, + 1187.0, + 1018.0, + 1187.0, + 1050.0, + 1039.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1018.0, + 1405.0, + 1018.0, + 1405.0, + 1050.0, + 1245.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1048.0, + 1407.0, + 1048.0, + 1407.0, + 1084.0, + 293.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1076.0, + 1326.0, + 1076.0, + 1326.0, + 1113.0, + 293.0, + 1113.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 278, + 1421, + 278, + 1421, + 736, + 297, + 736 + ], + "score": 0.983, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Sample questionH@1(%)FilteredMean RankH@1(%)FilteredMean RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1which club does alan pulido play for?88.591.1891.951.1196.641.0498.661.01
2what position does gonzalo higuain play?100.001.0098.111.0398.741.01100.001.00
3how old is samuel etoo?67.111.4490.791.1394.741.0897.371.04
4what is the jersey number of mario balotelli?45.001.8983.571.2297.141.0399.291.01
5which country is thomas mueller from ?94.401.0694.401.0696.801.0498.401.02
6which country is the soccer team fc porto based in ?98.481.0298.481.0293.941.0695.451.05
7who plays professionally at liverpool fc?95.121.1090.241.2098.371.0496.751.04
8which player is from iran?89.861.5176.812.0738.652.9699.521.00
9name a player who plays goalkeeper?98.961.0169.791.8242.715.52100.001.00
10which soccer club is based in mexico?22.0313.9430.518.846.7810.6616.9521.14
11where is the club that edin dzeko plays for ?52.633.8857.242.1047.372.2778.291.41
12name a soccer club that has a player from australia ?30.4312.0833.7011.4713.0411.6419.5717.57
Overall (Path Query)74.163.1177.392.5669.543.0285.943.52
13who plays forward for fc barcelona?97.551.0676.071.6693.251.2498.771.02
14who are the defenders on german national team?95.931.0669.922.3365.042.04100.001.00
15which player in ssc napoli is from argentina?88.811.1776.121.7688.811.3597.761.03
Overall(Conj. Query)94.291.0974.291.8983.571.5198.811.02
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1547, + 1404, + 1547, + 1404, + 1853, + 298, + 1853 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1039, + 1404, + 1039, + 1404, + 1406, + 298, + 1406 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 809, + 1404, + 809, + 1404, + 1024, + 298, + 1024 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1399, + 1972, + 1399, + 2033, + 299, + 2033 + ], + "score": 0.925 + }, + { + "category_id": 6, + "poly": [ + 308, + 224, + 1371, + 224, + 1371, + 258, + 308, + 258 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 1467, + 543, + 1467, + 543, + 1502, + 300, + 1502 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 301, + 1911, + 557, + 1911, + 557, + 1938, + 301, + 1938 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.777 + }, + { + "category_id": 15, + "poly": [ + 313.0, + 217.0, + 1376.0, + 217.0, + 1376.0, + 262.0, + 313.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1461.0, + 549.0, + 1461.0, + 549.0, + 1511.0, + 291.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1912.0, + 558.0, + 1912.0, + 558.0, + 1940.0, + 299.0, + 1940.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, + 1546.0, + 1406.0, + 1546.0, + 1406.0, + 1582.0, + 293.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1578.0, + 1405.0, + 1578.0, + 1405.0, + 1612.0, + 293.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1605.0, + 1406.0, + 1605.0, + 1406.0, + 1647.0, + 291.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1639.0, + 1405.0, + 1639.0, + 1405.0, + 1675.0, + 293.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1701.0, + 1404.0, + 1701.0, + 1404.0, + 1733.0, + 296.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1732.0, + 1402.0, + 1732.0, + 1402.0, + 1763.0, + 296.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1761.0, + 1404.0, + 1761.0, + 1404.0, + 1796.0, + 293.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 1406.0, + 1790.0, + 1406.0, + 1829.0, + 293.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 724.0, + 1822.0, + 724.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1040.0, + 1404.0, + 1040.0, + 1404.0, + 1074.0, + 294.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1072.0, + 1404.0, + 1072.0, + 1404.0, + 1102.0, + 296.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1404.0, + 1101.0, + 1404.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1164.0, + 293.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1160.0, + 1405.0, + 1160.0, + 1405.0, + 1195.0, + 294.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1254.0, + 296.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1253.0, + 1406.0, + 1253.0, + 1406.0, + 1287.0, + 294.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1282.0, + 1408.0, + 1282.0, + 1408.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1310.0, + 1408.0, + 1310.0, + 1408.0, + 1351.0, + 292.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1379.0, + 294.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1373.0, + 925.0, + 1373.0, + 925.0, + 1410.0, + 293.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 1405.0, + 809.0, + 1405.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 875.0, + 294.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 905.0, + 294.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 901.0, + 1405.0, + 901.0, + 1405.0, + 934.0, + 293.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1405.0, + 933.0, + 1405.0, + 963.0, + 293.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 1401.0, + 961.0, + 1401.0, + 995.0, + 294.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 994.0, + 870.0, + 994.0, + 870.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 438.0, + 2000.0, + 438.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 299, + 279, + 1400, + 279, + 1400, + 343, + 299, + 343 + ], + "score": 0.842 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.82 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 300, + 361, + 1399, + 361, + 1399, + 455, + 300, + 455 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 297, + 1040, + 1401, + 1040, + 1401, + 1106, + 297, + 1106 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 299, + 1292, + 1401, + 1292, + 1401, + 1358, + 299, + 1358 + ], + "score": 0.739 + }, + { + "category_id": 1, + "poly": [ + 297, + 1125, + 1402, + 1125, + 1402, + 1189, + 297, + 1189 + ], + "score": 0.737 + }, + { + "category_id": 1, + "poly": [ + 295, + 873, + 1403, + 873, + 1403, + 938, + 295, + 938 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 296, + 1657, + 1403, + 1657, + 1403, + 1753, + 296, + 1753 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 297, + 1209, + 1402, + 1209, + 1402, + 1273, + 297, + 1273 + ], + "score": 0.727 + }, + { + "category_id": 1, + "poly": [ + 301, + 476, + 1401, + 476, + 1401, + 572, + 301, + 572 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 298, + 1375, + 1400, + 1375, + 1400, + 1442, + 298, + 1442 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 298, + 788, + 1397, + 788, + 1397, + 855, + 298, + 855 + ], + "score": 0.676 + }, + { + "category_id": 1, + "poly": [ + 298, + 590, + 1400, + 590, + 1400, + 687, + 298, + 687 + ], + "score": 0.671 + }, + { + "category_id": 1, + "poly": [ + 297, + 704, + 1399, + 704, + 1399, + 770, + 297, + 770 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 296, + 1773, + 1401, + 1773, + 1401, + 1867, + 296, + 1867 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 296, + 956, + 1406, + 956, + 1406, + 1021, + 296, + 1021 + ], + "score": 0.652 + }, + { + "category_id": 1, + "poly": [ + 297, + 1543, + 1401, + 1543, + 1401, + 1638, + 297, + 1638 + ], + "score": 0.649 + }, + { + "category_id": 1, + "poly": [ + 295, + 1459, + 1402, + 1459, + 1402, + 1526, + 295, + 1526 + ], + "score": 0.637 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1397, + 1971, + 1397, + 2035, + 296, + 2035 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 295, + 1887, + 1399, + 1887, + 1399, + 1953, + 295, + 1953 + ], + "score": 0.62 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.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, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 275.0, + 1404.0, + 275.0, + 1404.0, + 316.0, + 295.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 310.0, + 1107.0, + 310.0, + 1107.0, + 344.0, + 322.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 363.0, + 1403.0, + 363.0, + 1403.0, + 397.0, + 296.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 392.0, + 1405.0, + 392.0, + 1405.0, + 429.0, + 320.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 421.0, + 399.0, + 421.0, + 399.0, + 458.0, + 320.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1079.0, + 293.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1072.0, + 464.0, + 1072.0, + 464.0, + 1105.0, + 322.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1293.0, + 1403.0, + 1293.0, + 1403.0, + 1329.0, + 298.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1325.0, + 894.0, + 1325.0, + 894.0, + 1357.0, + 322.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1122.0, + 1404.0, + 1122.0, + 1404.0, + 1163.0, + 293.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1156.0, + 533.0, + 1156.0, + 533.0, + 1188.0, + 324.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 871.0, + 469.0, + 871.0, + 469.0, + 908.0, + 295.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 872.0, + 1199.0, + 872.0, + 1199.0, + 908.0, + 502.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 912.0, + 1217.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 903.0, + 597.0, + 903.0, + 597.0, + 938.0, + 320.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1696.0, + 293.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1687.0, + 1404.0, + 1687.0, + 1404.0, + 1728.0, + 320.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1720.0, + 682.0, + 1720.0, + 682.0, + 1754.0, + 323.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1204.0, + 1406.0, + 1204.0, + 1406.0, + 1247.0, + 294.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1239.0, + 597.0, + 1239.0, + 597.0, + 1273.0, + 321.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 477.0, + 1402.0, + 477.0, + 1402.0, + 512.0, + 296.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 508.0, + 1405.0, + 508.0, + 1405.0, + 542.0, + 323.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 539.0, + 805.0, + 539.0, + 805.0, + 573.0, + 322.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1402.0, + 1373.0, + 1402.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1407.0, + 1024.0, + 1407.0, + 1024.0, + 1442.0, + 322.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 790.0, + 1401.0, + 790.0, + 1401.0, + 823.0, + 297.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 820.0, + 1253.0, + 820.0, + 1253.0, + 855.0, + 322.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 588.0, + 1404.0, + 588.0, + 1404.0, + 630.0, + 293.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 659.0, + 324.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 653.0, + 933.0, + 653.0, + 933.0, + 688.0, + 324.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 1403.0, + 703.0, + 1403.0, + 742.0, + 295.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 737.0, + 1172.0, + 737.0, + 1172.0, + 771.0, + 322.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1842.0, + 320.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1835.0, + 649.0, + 1835.0, + 649.0, + 1868.0, + 323.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 952.0, + 1406.0, + 952.0, + 1406.0, + 995.0, + 294.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 987.0, + 596.0, + 987.0, + 596.0, + 1018.0, + 323.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1544.0, + 1405.0, + 1544.0, + 1405.0, + 1578.0, + 296.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1576.0, + 1403.0, + 1576.0, + 1403.0, + 1610.0, + 322.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1606.0, + 623.0, + 1606.0, + 623.0, + 1636.0, + 322.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1457.0, + 1404.0, + 1457.0, + 1404.0, + 1496.0, + 295.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1491.0, + 1153.0, + 1491.0, + 1153.0, + 1526.0, + 322.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1401.0, + 1971.0, + 1401.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1999.0, + 1187.0, + 1999.0, + 1187.0, + 2038.0, + 320.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 1404.0, + 1885.0, + 1404.0, + 1925.0, + 295.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1919.0, + 1043.0, + 1919.0, + 1043.0, + 1954.0, + 321.0, + 1954.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 289, + 591, + 1405, + 591, + 1405, + 655, + 289, + 655 + ], + "score": 0.638 + }, + { + "category_id": 1, + "poly": [ + 295, + 477, + 1401, + 477, + 1401, + 572, + 295, + 572 + ], + "score": 0.565 + }, + { + "category_id": 1, + "poly": [ + 296, + 675, + 1405, + 675, + 1405, + 800, + 296, + 800 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1400, + 229, + 1400, + 294, + 295, + 294 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 295, + 312, + 1400, + 312, + 1400, + 376, + 295, + 376 + ], + "score": 0.498 + }, + { + "category_id": 1, + "poly": [ + 296, + 394, + 1399, + 394, + 1399, + 460, + 296, + 460 + ], + "score": 0.488 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 586.0, + 1406.0, + 586.0, + 1406.0, + 631.0, + 290.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 622.0, + 597.0, + 622.0, + 597.0, + 655.0, + 321.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 476.0, + 1405.0, + 476.0, + 1405.0, + 515.0, + 292.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 511.0, + 1403.0, + 511.0, + 1403.0, + 545.0, + 323.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 540.0, + 471.0, + 540.0, + 471.0, + 572.0, + 323.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 713.0, + 291.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 743.0, + 320.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 736.0, + 1405.0, + 736.0, + 1405.0, + 773.0, + 323.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 769.0, + 656.0, + 769.0, + 656.0, + 801.0, + 323.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 1404.0, + 225.0, + 1404.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1218.0, + 260.0, + 1218.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 308.0, + 1404.0, + 308.0, + 1404.0, + 349.0, + 293.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 344.0, + 596.0, + 344.0, + 596.0, + 375.0, + 323.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 393.0, + 1403.0, + 393.0, + 1403.0, + 432.0, + 294.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 427.0, + 1037.0, + 427.0, + 1037.0, + 461.0, + 321.0, + 461.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 1113, + 1472, + 1113, + 1472, + 2000, + 295, + 2000 + ], + "score": 0.984, + "html": "
#Query templateQuestion template
1Finde ∈ε:((player),plays_in_club,e)is truewhich club does (player) play for ?which professional football team does (player) play for ?which football club does (player) play for ?
2Finde∈ε:(player),plays-position,e)is truewhat position does (player) play ?
3Find e ∈ε:(player),is-aged,e) is truehow old is (player) ?what is the age of (player) ?
4Finde∈ε:(player),wears_number,e) is truewhat is the jersey number of (player) ?what number does (player) wear ?
5Finde ∈ε:(player),plays_for_country,e) is truewhat is the nationality of (player) ?which national team does (player) play for ?which country is (player) from ?
6Finde∈ε:(club),is-in_country,e)is truewhich country is the soccer team (club) based in ?
7Finde ∈ε: (club),plays_in_club-1,e)is truename a player from (club) ?who plays at the soccer club (club) ?who is from the professional football team (club) ?who plays professionally at (club) ?
8Finde ∈ε:(country-1),plays_for-country-1,e)is truewhich player is from (country_1) ?name a player from (country-1) ?who is from (country-1) ?who plays for the (country_1) national football team ?
9Finde∈ε:(position),playsposition-,e)is truename a player who plays (position) ?who plays (position) ?
10Finde ∈ε:(cotry-1),sicountry-1,e)is truewhich soccer club is based in (country_1) ?name a soccer club in (country_1) ?
11Finde∈ε:(player),plays_in_club /is_in_country,e)is truewhich country does (player) play professionally in ?where is the football club that (player) plays for ?
12Finde ∈ε:(country-1),plays-for-country-1/plays_in_club,e)is truewhich professional football team do players from (country_1) play for ?name a soccer club that has a player from (country_1) ?which professional football team has a player from (country_1) ?
13Find e∈ ε:(position),plays-position-1,e) is true and((club),plays-in_club-1,e) is truewho plays (position) for (club)?who are the (position) at (club) ?name a (position) that plays for (club) ?
14Find e∈ε: (position),plays-position-1,e) is true and(country-l),plays-for-country-1,e)is truewho plays (position) for (country_1) ?who are the (position) on (country_1) national team ?name a (position) from (country-1) ?which (country_2) footballer plays (position) ?name a (country-2) (position) ?
15Find e∈ε:(club), plays_in_club-1,e) is true and(country_l),plays_for_country-1,e)is truewho are the (country_2) playersat (club)?which (country_2) footballer plays for (club) ?name a (country_2) player at (club) ?which player in (club) is from (country-1) ?
" + }, + { + "category_id": 5, + "poly": [ + 448, + 737, + 1246, + 737, + 1246, + 926, + 448, + 926 + ], + "score": 0.98, + "html": "
#entity# atomic relations# atomic triplets112763977
#relations (atomic and compositional) in path queries# question and answer pairs in path queries(train/validation/ test)125620/804/1579
# types of questions in conjunctive queries# question and answer pairs in conjunctive queries(train/validation/test )31564/224/420
size of vocabulary1781
" + }, + { + "category_id": 5, + "poly": [ + 579, + 379, + 1116, + 379, + 1116, + 545, + 579, + 545 + ], + "score": 0.959, + "html": "
SubjectRelationObject
david_villaplays-for_countryspain
lionel_messiplays_in-clubfc_barcelona
antoine-griezmannplays-positionforward
cristiano_ronaldowears_number7
fulham_fcis_in_countryengland
lukas_podolskiis_aged29
" + }, + { + "category_id": 6, + "poly": [ + 670, + 324, + 1028, + 324, + 1028, + 356, + 670, + 356 + ], + "score": 0.914 + }, + { + "category_id": 6, + "poly": [ + 580, + 679, + 1117, + 679, + 1117, + 712, + 580, + 712 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 302, + 226, + 722, + 226, + 722, + 261, + 302, + 261 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.86 + }, + { + "category_id": 6, + "poly": [ + 302, + 993, + 1406, + 993, + 1406, + 1086, + 302, + 1086 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 302, + 993, + 1406, + 993, + 1406, + 1086, + 302, + 1086 + ], + "score": 0.22 + }, + { + "category_id": 13, + "poly": [ + 400, + 1153, + 453, + 1153, + 453, + 1174, + 400, + 1174 + ], + "score": 0.39, + "latex": "e \\in \\mathcal { E } \\colon" + }, + { + "category_id": 13, + "poly": [ + 401, + 1328, + 453, + 1328, + 453, + 1347, + 401, + 1347 + ], + "score": 0.29, + "latex": "e \\in \\mathcal { E } \\colon" + }, + { + "category_id": 13, + "poly": [ + 710, + 1505, + 736, + 1505, + 736, + 1526, + 710, + 1526 + ], + "score": 0.26, + "latex": "^ { - 1 }" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 318.0, + 1030.0, + 318.0, + 1030.0, + 361.0, + 667.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 675.0, + 1120.0, + 675.0, + 1120.0, + 715.0, + 576.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 726.0, + 223.0, + 726.0, + 267.0, + 295.0, + 267.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": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 989.0, + 1406.0, + 989.0, + 1406.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1058.0, + 297.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1051.0, + 834.0, + 1051.0, + 834.0, + 1093.0, + 295.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 989.0, + 1406.0, + 989.0, + 1406.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1058.0, + 297.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1051.0, + 834.0, + 1051.0, + 834.0, + 1093.0, + 295.0, + 1093.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1165, + 1404, + 1165, + 1404, + 1621, + 297, + 1621 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 296, + 283, + 1502, + 283, + 1502, + 748, + 296, + 748 + ], + "score": 0.983, + "html": "
#RelationTypeSample questionSample answer
1plays_in_clubmany-to-onewhich club doesalan pulido play for ?which professional footbal team does klaas jan huntelar play for ?tigres_uanlfc_schalke_04
2plays-positionmany-to-onewhat position does gonzalo higuain play ?ssc_napoli
3is_agedmany-to-onehow old is samuel etoo ?what is the age of luis suarez ?3
4wears-numbermany-to-onewhat is the jersey number of mario balotelli ?what number does shinji okazaki wear ?
5plays_for_countrymany-to-onewhich country is thomas mueller from ?what is the nationality of helder postiga ?germanyportugal
6is.in_countrymany-to-onewhich country is the soccer team fc porto based in ?portugal
7plays_in_club-1one-to-manywho playsprofessionally at liverpool fc ?name a player from as roma ?steven_gerrardmiralem_pjanic
8plays-for_country-1one-to-manywhich player is from iran ?name a player from italy ?masoud_shojaeidaniele_de_rossi
9plays-position-1one-to-manyname a player who plays goalkeeper ?who plays forward ?gianluiqi-buffonraul_jimenez
10is_in-country-1one-to-manywhich soccer club is based in mexico ?name a soccer club in australia ?cruz_azul.fcmelbourne_victory_fc
11plays_in_club /is_in_countrymany-to-onewhere is the club that edin dzeko plays for ?which country does sime vrsaljko play professionally in ?englanditaly
12plays-for_country-1/plays_in_clubmany-to-manyname a soccer club that has a player from australia?name a soccer club that has a player from spain ?crystal_palace_fcfc_barcelona
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1404, + 1638, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 298, + 836, + 1594, + 836, + 1594, + 1040, + 298, + 1040 + ], + "score": 0.979, + "html": "
#RelationsSample questionsEntities in questionsSampleanswer
13plays_position-1 and plays_in_club-1who plays forward for fc barcelona ? who are the midfielders at fc bayern muenchen ?forward,fc_barcelona midfielder,fc_bayern_muenchenlionel_messi toni_kroos
14plays-position -1 andwho are the defenders on german national team ? which mexican footballer plays forward ?defender,germany defender,mexicoper_mertesacker raul-jimenez
15plays_in_club-1 and plays_for_country -1which player in paris saint-germain fc is from argentina ? who are the korean players at beijing guoan ?paris_saint-germain_fc,argentina beijing-guoan,koreaezequiel_lavezzi ha-daesung
" + }, + { + "category_id": 0, + "poly": [ + 301, + 1094, + 1090, + 1094, + 1090, + 1130, + 301, + 1130 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.908 + }, + { + "category_id": 6, + "poly": [ + 462, + 225, + 1226, + 225, + 1226, + 257, + 462, + 257 + ], + "score": 0.889 + }, + { + "category_id": 6, + "poly": [ + 561, + 779, + 1127, + 779, + 1127, + 812, + 561, + 812 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.853 + }, + { + "category_id": 13, + "poly": [ + 1352, + 1970, + 1404, + 1970, + 1404, + 2003, + 1352, + 2003 + ], + "score": 0.31, + "latex": "^ - 1 \\ /" + }, + { + "category_id": 13, + "poly": [ + 367, + 711, + 691, + 711, + 691, + 738, + 367, + 738 + ], + "score": 0.29, + "latex": "\\mathtt { p l a y s \\_ f o r \\_ c o u n t r y } ^ { - 1 } / \\mathtt { p l a y s \\_ i n \\_ c l u b }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1092.0, + 1092.0, + 1092.0, + 1092.0, + 1135.0, + 293.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 222.0, + 1227.0, + 222.0, + 1227.0, + 262.0, + 463.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 775.0, + 1132.0, + 775.0, + 1132.0, + 817.0, + 555.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 1404.0, + 1162.0, + 1404.0, + 1198.0, + 295.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1404.0, + 1194.0, + 1404.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1225.0, + 1405.0, + 1225.0, + 1405.0, + 1260.0, + 295.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1258.0, + 1402.0, + 1258.0, + 1402.0, + 1289.0, + 295.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1286.0, + 1404.0, + 1286.0, + 1404.0, + 1321.0, + 294.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1347.0, + 1405.0, + 1347.0, + 1405.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1406.0, + 1376.0, + 1406.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1474.0, + 292.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1469.0, + 1405.0, + 1469.0, + 1405.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1500.0, + 1406.0, + 1500.0, + 1406.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1595.0, + 292.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1590.0, + 539.0, + 1590.0, + 539.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1638.0, + 1404.0, + 1638.0, + 1404.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1667.0, + 1406.0, + 1667.0, + 1406.0, + 1704.0, + 293.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 1404.0, + 1698.0, + 1404.0, + 1735.0, + 293.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1726.0, + 1405.0, + 1726.0, + 1405.0, + 1765.0, + 292.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1406.0, + 1758.0, + 1406.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1857.0, + 293.0, + 1857.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, + 1884.0, + 1402.0, + 1884.0, + 1402.0, + 1916.0, + 296.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1948.0, + 293.0, + 1948.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": [ + 291.0, + 1969.0, + 1351.0, + 1969.0, + 1351.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1969.0, + 1409.0, + 1969.0, + 1409.0, + 2010.0, + 1405.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2039.0, + 292.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 808, + 1465, + 808, + 1465, + 1448, + 295, + 1448 + ], + "score": 0.984, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#RelationH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered RankH@1(%)Mean Filtered Rank
1plays.in.club75.541.3893.481.0999.861.0098.511.02
2plays-position96.331.0494.021.0998.371.02100.001.00
3is_aged55.031.6991.441.1296.881.03100.001.00
4wears_number38.862.0978.671.3295.921.04100.001.00
5plays_for_country71.601.3994.841.1099.321.01100.001.00
6is_in_country98.321.0399.661.0099.331.01100.001.00
7plays_in_club-187.501.4683.421.4594.701.0797.421.03
882.471.6868.213.3725.275.6698.781.02
9plays-position-1100.001.0075.541.6013.5924.3598.781.02
10is_in-country-123.1126.9223.4823.278.32130.5919.4183.61
11plays_in_club/is_in-country20.247.0558.291.9846.882.9980.161.38
12plays-for_country -1/plays-in_club25.3222.2727.7310.0419.0435.5920.1533.01
Overall(Path relations) plays-position-164.645.0975.023.5967.2214.8786.738.79
13and plays-in_club-1 plays-position91.851.2069.971.8277.451.8395.381.06
14and plays_in_club =T91.711.2366.712.8551.494.8897.831.05
15and is_in_country -188.591.2073.37 70.021.80 2.1683.421.3494.701.08
Overall (Conj.relations)90.721.2170.792.6895.971.06
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1695, + 1404, + 1695, + 1404, + 1788, + 299, + 1788 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1802, + 1403, + 1802, + 1403, + 1957, + 299, + 1957 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 420, + 238, + 1300, + 238, + 1300, + 543, + 420, + 543 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 297, + 1510, + 1401, + 1510, + 1401, + 1572, + 297, + 1572 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1401, + 1972, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 4, + "poly": [ + 296, + 580, + 1402, + 580, + 1402, + 645, + 296, + 645 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 301, + 1623, + 822, + 1623, + 822, + 1658, + 301, + 1658 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 864, + 2088, + 864, + 2112, + 837, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 1, + "poly": [ + 300, + 693, + 1405, + 693, + 1405, + 787, + 300, + 787 + ], + "score": 0.819 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.78 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 854, + 76, + 854, + 104, + 299, + 104 + ], + "score": 0.346 + }, + { + "category_id": 6, + "poly": [ + 300, + 693, + 1405, + 693, + 1405, + 787, + 300, + 787 + ], + "score": 0.249 + }, + { + "category_id": 7, + "poly": [ + 406, + 1420, + 601, + 1420, + 601, + 1443, + 406, + 1443 + ], + "score": 0.22 + }, + { + "category_id": 15, + "poly": [ + 723.0, + 234.0, + 1106.0, + 234.0, + 1106.0, + 268.0, + 723.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 257.0, + 628.0, + 257.0, + 628.0, + 290.0, + 480.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 262.0, + 1295.0, + 262.0, + 1295.0, + 286.0, + 1262.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 281.0, + 629.0, + 281.0, + 629.0, + 328.0, + 442.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 287.0, + 1296.0, + 287.0, + 1296.0, + 316.0, + 1261.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 317.0, + 628.0, + 317.0, + 628.0, + 346.0, + 476.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 315.0, + 1297.0, + 315.0, + 1297.0, + 346.0, + 1259.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 346.0, + 442.0, + 346.0, + 442.0, + 416.0, + 419.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 337.0, + 630.0, + 337.0, + 630.0, + 385.0, + 517.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 342.0, + 1297.0, + 342.0, + 1297.0, + 374.0, + 1259.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 376.0, + 629.0, + 376.0, + 629.0, + 403.0, + 515.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 368.0, + 1299.0, + 368.0, + 1299.0, + 404.0, + 1259.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 395.0, + 629.0, + 395.0, + 629.0, + 422.0, + 474.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 398.0, + 1297.0, + 398.0, + 1297.0, + 430.0, + 1258.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 416.0, + 629.0, + 416.0, + 629.0, + 440.0, + 504.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 434.0, + 629.0, + 434.0, + 629.0, + 460.0, + 465.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 427.0, + 1296.0, + 427.0, + 1296.0, + 456.0, + 1260.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 454.0, + 629.0, + 454.0, + 629.0, + 479.0, + 507.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 456.0, + 1296.0, + 456.0, + 1296.0, + 483.0, + 1260.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 472.0, + 628.0, + 472.0, + 628.0, + 499.0, + 469.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 495.0, + 1204.0, + 495.0, + 1204.0, + 521.0, + 622.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 516.0, + 960.0, + 516.0, + 960.0, + 546.0, + 870.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 579.0, + 1406.0, + 579.0, + 1406.0, + 616.0, + 294.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 611.0, + 1174.0, + 611.0, + 1174.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 829.0, + 1620.0, + 829.0, + 1666.0, + 293.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 833.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 694.0, + 1405.0, + 694.0, + 1405.0, + 728.0, + 295.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 724.0, + 1404.0, + 724.0, + 1404.0, + 761.0, + 293.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 756.0, + 938.0, + 756.0, + 938.0, + 790.0, + 294.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1416.0, + 604.0, + 1416.0, + 604.0, + 1447.0, + 404.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1696.0, + 1404.0, + 1696.0, + 1404.0, + 1729.0, + 297.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1727.0, + 1403.0, + 1727.0, + 1403.0, + 1761.0, + 295.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1755.0, + 998.0, + 1755.0, + 998.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1802.0, + 1407.0, + 1802.0, + 1407.0, + 1840.0, + 297.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1833.0, + 1405.0, + 1833.0, + 1405.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1861.0, + 1407.0, + 1861.0, + 1407.0, + 1903.0, + 290.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1925.0, + 648.0, + 1925.0, + 648.0, + 1962.0, + 293.0, + 1962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1509.0, + 1403.0, + 1509.0, + 1403.0, + 1545.0, + 295.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1541.0, + 752.0, + 1541.0, + 752.0, + 1575.0, + 293.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 297.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 694.0, + 1405.0, + 694.0, + 1405.0, + 728.0, + 295.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 724.0, + 1404.0, + 724.0, + 1404.0, + 761.0, + 293.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 756.0, + 938.0, + 756.0, + 938.0, + 790.0, + 294.0, + 790.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 298, + 214, + 1490, + 214, + 1490, + 1552, + 298, + 1552 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1706, + 1406, + 1706, + 1406, + 1800, + 298, + 1800 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 294, + 1571, + 1416, + 1571, + 1416, + 1635, + 294, + 1635 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 853, + 76, + 853, + 104, + 299, + 104 + ], + "score": 0.741 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 856, + 76, + 856, + 104, + 298, + 104 + ], + "score": 0.119 + }, + { + "category_id": 15, + "poly": [ + 489.0, + 228.0, + 555.0, + 228.0, + 555.0, + 252.0, + 489.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 225.0, + 1215.0, + 225.0, + 1215.0, + 254.0, + 1149.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 273.0, + 356.0, + 273.0, + 356.0, + 291.0, + 330.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 263.0, + 484.0, + 263.0, + 484.0, + 282.0, + 468.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 257.0, + 821.0, + 257.0, + 821.0, + 302.0, + 712.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 267.0, + 1015.0, + 267.0, + 1015.0, + 285.0, + 990.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 257.0, + 1479.0, + 257.0, + 1479.0, + 300.0, + 1376.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 296.0, + 825.0, + 296.0, + 825.0, + 320.0, + 746.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 297.0, + 1446.0, + 297.0, + 1446.0, + 320.0, + 1376.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 318.0, + 354.0, + 318.0, + 354.0, + 336.0, + 330.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 324.0, + 586.0, + 324.0, + 586.0, + 359.0, + 558.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 315.0, + 836.0, + 315.0, + 836.0, + 339.0, + 746.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 320.0, + 1017.0, + 320.0, + 1017.0, + 342.0, + 988.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 342.0, + 1338.0, + 342.0, + 1338.0, + 360.0, + 1320.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 315.0, + 1483.0, + 315.0, + 1483.0, + 359.0, + 1373.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 365.0, + 321.0, + 365.0, + 321.0, + 462.0, + 302.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 365.0, + 354.0, + 365.0, + 354.0, + 383.0, + 330.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 366.0, + 985.0, + 366.0, + 985.0, + 465.0, + 961.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 374.0, + 1017.0, + 374.0, + 1017.0, + 396.0, + 988.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 356.0, + 1497.0, + 356.0, + 1497.0, + 398.0, + 1376.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 402.0, + 559.0, + 402.0, + 559.0, + 416.0, + 546.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 393.0, + 1099.0, + 393.0, + 1099.0, + 407.0, + 1084.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 396.0, + 1464.0, + 396.0, + 1464.0, + 417.0, + 1371.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 408.0, + 357.0, + 408.0, + 357.0, + 431.0, + 329.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 422.0, + 424.0, + 422.0, + 424.0, + 440.0, + 407.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 428.0, + 1017.0, + 428.0, + 1017.0, + 450.0, + 984.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 453.0, + 356.0, + 453.0, + 356.0, + 476.0, + 324.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 468.0, + 1274.0, + 468.0, + 1274.0, + 482.0, + 1262.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 482.0, + 1017.0, + 482.0, + 1017.0, + 504.0, + 982.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 500.0, + 356.0, + 500.0, + 356.0, + 521.0, + 320.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 544.0, + 357.0, + 544.0, + 357.0, + 567.0, + 321.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 553.0, + 486.0, + 553.0, + 486.0, + 564.0, + 474.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 537.0, + 1017.0, + 537.0, + 1017.0, + 558.0, + 984.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 582.0, + 404.0, + 582.0, + 404.0, + 598.0, + 372.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 582.0, + 450.0, + 582.0, + 450.0, + 598.0, + 415.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 582.0, + 495.0, + 582.0, + 495.0, + 598.0, + 462.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 582.0, + 540.0, + 582.0, + 540.0, + 598.0, + 508.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 580.0, + 583.0, + 580.0, + 583.0, + 601.0, + 553.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 579.0, + 628.0, + 579.0, + 628.0, + 601.0, + 598.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 582.0, + 671.0, + 582.0, + 671.0, + 600.0, + 646.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 579.0, + 1066.0, + 579.0, + 1066.0, + 600.0, + 1032.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 579.0, + 1120.0, + 579.0, + 1120.0, + 600.0, + 1085.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 579.0, + 1174.0, + 579.0, + 1174.0, + 600.0, + 1139.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 579.0, + 1224.0, + 579.0, + 1224.0, + 600.0, + 1193.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 579.0, + 1278.0, + 579.0, + 1278.0, + 601.0, + 1248.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 579.0, + 1332.0, + 579.0, + 1332.0, + 601.0, + 1302.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 594.0, + 568.0, + 594.0, + 568.0, + 618.0, + 477.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 592.0, + 1229.0, + 592.0, + 1229.0, + 616.0, + 1133.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 633.0, + 644.0, + 633.0, + 644.0, + 666.0, + 398.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 631.0, + 1323.0, + 631.0, + 1323.0, + 667.0, + 1035.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 679.0, + 357.0, + 679.0, + 357.0, + 702.0, + 329.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 667.0, + 538.0, + 667.0, + 538.0, + 694.0, + 498.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 669.0, + 1210.0, + 669.0, + 1210.0, + 693.0, + 1144.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 703.0, + 719.0, + 703.0, + 719.0, + 717.0, + 706.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 703.0, + 735.0, + 703.0, + 735.0, + 717.0, + 722.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 699.0, + 765.0, + 699.0, + 765.0, + 721.0, + 738.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 693.0, + 1018.0, + 693.0, + 1018.0, + 715.0, + 990.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 699.0, + 1423.0, + 699.0, + 1423.0, + 721.0, + 1364.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 721.0, + 357.0, + 721.0, + 357.0, + 742.0, + 327.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 715.0, + 767.0, + 715.0, + 767.0, + 744.0, + 703.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 717.0, + 1417.0, + 717.0, + 1417.0, + 741.0, + 1367.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 733.0, + 767.0, + 733.0, + 767.0, + 763.0, + 701.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 736.0, + 1426.0, + 736.0, + 1426.0, + 760.0, + 1364.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 762.0, + 357.0, + 762.0, + 357.0, + 784.0, + 327.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 751.0, + 767.0, + 751.0, + 767.0, + 801.0, + 701.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 750.0, + 1015.0, + 750.0, + 1015.0, + 768.0, + 990.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 754.0, + 1425.0, + 754.0, + 1425.0, + 780.0, + 1364.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 775.0, + 764.0, + 775.0, + 764.0, + 801.0, + 719.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 781.0, + 1378.0, + 781.0, + 1378.0, + 796.0, + 1367.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 775.0, + 1425.0, + 775.0, + 1425.0, + 801.0, + 1381.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 806.0, + 322.0, + 806.0, + 322.0, + 905.0, + 297.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 804.0, + 359.0, + 804.0, + 359.0, + 826.0, + 327.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 795.0, + 765.0, + 795.0, + 765.0, + 840.0, + 703.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 807.0, + 985.0, + 807.0, + 985.0, + 905.0, + 961.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 805.0, + 1015.0, + 805.0, + 1015.0, + 823.0, + 990.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 817.0, + 1332.0, + 817.0, + 1332.0, + 837.0, + 1314.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 820.0, + 1378.0, + 820.0, + 1378.0, + 834.0, + 1367.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 795.0, + 1425.0, + 795.0, + 1425.0, + 840.0, + 1380.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 828.0, + 374.0, + 828.0, + 374.0, + 867.0, + 324.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 835.0, + 765.0, + 835.0, + 765.0, + 859.0, + 706.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1387.0, + 841.0, + 1398.0, + 841.0, + 1398.0, + 853.0, + 1387.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 837.0, + 1417.0, + 837.0, + 1417.0, + 858.0, + 1399.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 859.0, + 652.0, + 859.0, + 652.0, + 876.0, + 640.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 859.0, + 1017.0, + 859.0, + 1017.0, + 880.0, + 985.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 886.0, + 357.0, + 886.0, + 357.0, + 907.0, + 321.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 873.0, + 1088.0, + 873.0, + 1088.0, + 914.0, + 1060.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 893.0, + 1262.0, + 893.0, + 1262.0, + 907.0, + 1250.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 926.0, + 357.0, + 926.0, + 357.0, + 949.0, + 321.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 919.0, + 496.0, + 919.0, + 496.0, + 943.0, + 472.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 913.0, + 1017.0, + 913.0, + 1017.0, + 934.0, + 984.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 934.0, + 1064.0, + 934.0, + 1064.0, + 952.0, + 1045.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 968.0, + 357.0, + 968.0, + 357.0, + 989.0, + 321.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 968.0, + 1017.0, + 968.0, + 1017.0, + 989.0, + 984.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 989.0, + 568.0, + 989.0, + 568.0, + 1012.0, + 550.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1000.0, + 1244.0, + 1000.0, + 1244.0, + 1018.0, + 1226.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1021.0, + 414.0, + 1021.0, + 414.0, + 1042.0, + 380.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1021.0, + 454.0, + 1021.0, + 454.0, + 1042.0, + 418.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1022.0, + 495.0, + 1022.0, + 495.0, + 1039.0, + 463.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1021.0, + 534.0, + 1021.0, + 534.0, + 1042.0, + 502.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1021.0, + 572.0, + 1021.0, + 572.0, + 1042.0, + 543.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1021.0, + 614.0, + 1021.0, + 614.0, + 1042.0, + 584.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1021.0, + 656.0, + 1021.0, + 656.0, + 1042.0, + 625.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1021.0, + 1087.0, + 1021.0, + 1087.0, + 1042.0, + 1053.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1021.0, + 1141.0, + 1021.0, + 1141.0, + 1042.0, + 1106.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1021.0, + 1193.0, + 1021.0, + 1193.0, + 1042.0, + 1163.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1021.0, + 1247.0, + 1021.0, + 1247.0, + 1042.0, + 1217.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1021.0, + 1302.0, + 1021.0, + 1302.0, + 1042.0, + 1272.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1036.0, + 564.0, + 1036.0, + 564.0, + 1055.0, + 469.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1037.0, + 1221.0, + 1037.0, + 1221.0, + 1057.0, + 1133.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1073.0, + 593.0, + 1073.0, + 593.0, + 1108.0, + 447.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1073.0, + 1290.0, + 1073.0, + 1290.0, + 1106.0, + 1070.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1109.0, + 544.0, + 1109.0, + 544.0, + 1135.0, + 499.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1107.0, + 1231.0, + 1107.0, + 1231.0, + 1135.0, + 1122.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1139.0, + 845.0, + 1139.0, + 845.0, + 1159.0, + 712.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1145.0, + 1377.0, + 1145.0, + 1377.0, + 1157.0, + 1365.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1144.0, + 1396.0, + 1144.0, + 1396.0, + 1157.0, + 1384.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1134.0, + 1460.0, + 1134.0, + 1460.0, + 1164.0, + 1398.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1160.0, + 354.0, + 1160.0, + 354.0, + 1178.0, + 329.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1154.0, + 481.0, + 1154.0, + 481.0, + 1178.0, + 456.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1157.0, + 907.0, + 1157.0, + 907.0, + 1204.0, + 715.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1166.0, + 1017.0, + 1166.0, + 1017.0, + 1189.0, + 988.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1163.0, + 1378.0, + 1163.0, + 1378.0, + 1195.0, + 1364.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1157.0, + 1465.0, + 1157.0, + 1465.0, + 1202.0, + 1380.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1204.0, + 727.0, + 1204.0, + 727.0, + 1216.0, + 716.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1204.0, + 746.0, + 1204.0, + 746.0, + 1214.0, + 734.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1196.0, + 833.0, + 1196.0, + 833.0, + 1222.0, + 747.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1195.0, + 1286.0, + 1195.0, + 1286.0, + 1205.0, + 1274.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1204.0, + 1378.0, + 1204.0, + 1378.0, + 1216.0, + 1367.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1191.0, + 1458.0, + 1191.0, + 1458.0, + 1225.0, + 1380.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1214.0, + 356.0, + 1214.0, + 356.0, + 1237.0, + 327.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1210.0, + 424.0, + 1210.0, + 424.0, + 1232.0, + 399.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1222.0, + 728.0, + 1222.0, + 728.0, + 1235.0, + 715.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1214.0, + 836.0, + 1214.0, + 836.0, + 1242.0, + 731.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1223.0, + 1015.0, + 1223.0, + 1015.0, + 1241.0, + 990.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1222.0, + 1378.0, + 1222.0, + 1378.0, + 1235.0, + 1367.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1217.0, + 1440.0, + 1217.0, + 1440.0, + 1242.0, + 1380.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1241.0, + 728.0, + 1241.0, + 728.0, + 1254.0, + 715.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1234.0, + 861.0, + 1234.0, + 861.0, + 1262.0, + 744.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1240.0, + 1187.0, + 1240.0, + 1187.0, + 1257.0, + 1169.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1235.0, + 1473.0, + 1235.0, + 1473.0, + 1264.0, + 1384.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1247.0, + 326.0, + 1247.0, + 326.0, + 1346.0, + 302.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1256.0, + 903.0, + 1256.0, + 903.0, + 1280.0, + 747.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1248.0, + 985.0, + 1248.0, + 985.0, + 1346.0, + 961.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1263.0, + 1377.0, + 1263.0, + 1377.0, + 1275.0, + 1367.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1256.0, + 1455.0, + 1256.0, + 1455.0, + 1281.0, + 1380.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1269.0, + 357.0, + 1269.0, + 357.0, + 1292.0, + 329.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1275.0, + 839.0, + 1275.0, + 839.0, + 1299.0, + 715.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1278.0, + 1015.0, + 1278.0, + 1015.0, + 1296.0, + 990.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1273.0, + 1457.0, + 1273.0, + 1457.0, + 1303.0, + 1362.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1305.0, + 420.0, + 1305.0, + 420.0, + 1322.0, + 398.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1326.0, + 356.0, + 1326.0, + 356.0, + 1347.0, + 320.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1341.0, + 475.0, + 1341.0, + 475.0, + 1355.0, + 460.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1332.0, + 1017.0, + 1332.0, + 1017.0, + 1353.0, + 984.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1352.0, + 420.0, + 1352.0, + 420.0, + 1370.0, + 401.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1374.0, + 617.0, + 1374.0, + 617.0, + 1394.0, + 598.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1382.0, + 357.0, + 1382.0, + 357.0, + 1404.0, + 320.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1386.0, + 1017.0, + 1386.0, + 1017.0, + 1409.0, + 982.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1439.0, + 357.0, + 1439.0, + 357.0, + 1460.0, + 321.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1442.0, + 1018.0, + 1442.0, + 1018.0, + 1463.0, + 984.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1461.0, + 387.0, + 1461.0, + 387.0, + 1482.0, + 354.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1461.0, + 442.0, + 1461.0, + 442.0, + 1482.0, + 408.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1461.0, + 499.0, + 1461.0, + 499.0, + 1482.0, + 465.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1461.0, + 552.0, + 1461.0, + 552.0, + 1482.0, + 520.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1461.0, + 607.0, + 1461.0, + 607.0, + 1482.0, + 577.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1463.0, + 661.0, + 1463.0, + 661.0, + 1481.0, + 635.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1461.0, + 1087.0, + 1461.0, + 1087.0, + 1482.0, + 1051.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1461.0, + 1142.0, + 1461.0, + 1142.0, + 1482.0, + 1105.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1463.0, + 1190.0, + 1463.0, + 1190.0, + 1481.0, + 1165.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1461.0, + 1247.0, + 1461.0, + 1247.0, + 1482.0, + 1217.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1463.0, + 1299.0, + 1463.0, + 1299.0, + 1481.0, + 1274.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1475.0, + 568.0, + 1475.0, + 568.0, + 1499.0, + 475.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1478.0, + 1224.0, + 1478.0, + 1224.0, + 1497.0, + 1130.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1515.0, + 634.0, + 1515.0, + 634.0, + 1548.0, + 407.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1512.0, + 1292.0, + 1512.0, + 1292.0, + 1551.0, + 1066.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 300.0, + 733.0, + 300.0, + 733.0, + 311.0, + 710.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 799.5, + 1374.0, + 799.5, + 1374.0, + 815.0, + 1368.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1423.5, + 481.0, + 1423.5, + 481.0, + 1445.0, + 470.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 1406.0, + 1570.0, + 1406.0, + 1606.0, + 295.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1600.0, + 1276.0, + 1600.0, + 1276.0, + 1636.0, + 295.0, + 1636.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": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1704.0, + 1404.0, + 1704.0, + 1404.0, + 1743.0, + 293.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1738.0, + 1404.0, + 1738.0, + 1404.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1770.0, + 454.0, + 1770.0, + 454.0, + 1798.0, + 296.0, + 1798.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 389, + 1436, + 389, + 1436, + 959, + 295, + 959 + ], + "score": 0.98, + "html": "
TransE (SINGLE)TransE (COMP)TransGaussian (SINGLE)TransGaussian (COMP)
#Relation and sample questionMean H@1(%)Filtered RankH@1(%)Mean Filtered RankMean H@1(%) Filtered RankH@1(%)Mean Filtered Rank
1plays.in_club (which club does alan pulido play for?)90.60 1.1292.621.1196.64 1.0397.991.03
2plays-position (what position does gonzalo higuain play?)100.00 1.0098.111.0298.74 1.01100.001.00
3is_aged (how old is samuel etoo?)81.58 1.3092.111.1096.05 1.04100.001.00
4wears_number (what is the jersey number of mario balotelli?)44.29 1.8885.711.1996.43 1.04100.001.00
5plays-for-country (which country is thomas mueller from ?)97.60 1.0294.401.1198.40 1.0299.201.01
6is_in.country (which country is the soccer team fc porto based in ?)98.48 1.0298.481.0293.94 1.0898.481.02
7plays_in_club-1 (who plays professionally at liverpool fc?)95.12 1.0886.991.3896.75 1.0396.751.03
8plays_for_country (which player is from iran?)81.16 1.6172.462.3640.58 3.1993.241.48
9plays-position (name a player who plays goalkeeper?)100.00 1.0030.212.3055.21 5.0985.421.15
10is.in_country (which soccer club is based in mexico?)24.58 11.4723.7310.075.08 9.1817.8020.10
11plays_in_club/is_in_country (where is the club that edin dzeko plays for ?)48.68 4.2462.502.0748.03 2.4176.971.50
12plays-for-country-1/plays-in-club (name a soccer club that hasaplayer from australia ?)34.78 9.4930.4311.266.52 9.8816.3020.27
Overall74.92 2.8074.352.7170.172.82 84.423.68
" + }, + { + "category_id": 5, + "poly": [ + 297, + 1251, + 1466, + 1251, + 1466, + 1502, + 297, + 1502 + ], + "score": 0.977, + "html": "
TransE(SINGLE)TransE(COMP)TransGaussian(SINGLE)TransGaussian(COMP)
#Relation and sample questionMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRankMeanH@1(%)FilteredRank
13(who plays forward for fc barcelona?)94.48 1.1071.17 1.7787.12 1.3798.77 1.02
14plays-position-and plays-for-country-1(who are the defenders on german national team?)95.93 1.0876.42 2.5064.23 2.02100.00 1.00
15plays_in_club-1andis_in_country(which player in ssc napoli is from argentina?)91.79 1.1375.37 1.7588.06 1.3794.03 1.07
Overall94.05 1.1174.05 1.9780.71 1.5697.62 1.03
" + }, + { + "category_id": 5, + "poly": [ + 654, + 1794, + 1039, + 1794, + 1039, + 1921, + 654, + 1921 + ], + "score": 0.968, + "html": "
ModelAccuracy (%)
TransE (SINGLE)68.5
TransE (COMP)80.3
TransGaussian (SINGLE)58.4
TransGaussian (COMP)76.4
" + }, + { + "category_id": 6, + "poly": [ + 435, + 1197, + 1252, + 1197, + 1252, + 1230, + 435, + 1230 + ], + "score": 0.935 + }, + { + "category_id": 6, + "poly": [ + 487, + 1737, + 1203, + 1737, + 1203, + 1770, + 487, + 1770 + ], + "score": 0.919 + }, + { + "category_id": 6, + "poly": [ + 484, + 333, + 1204, + 333, + 1204, + 366, + 484, + 366 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 104, + 297, + 104 + ], + "score": 0.578 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.401 + }, + { + "category_id": 7, + "poly": [ + 515, + 1478, + 569, + 1478, + 569, + 1496, + 515, + 1496 + ], + "score": 0.109 + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1195.0, + 1254.0, + 1195.0, + 1254.0, + 1234.0, + 435.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1735.0, + 1205.0, + 1735.0, + 1205.0, + 1774.0, + 486.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 331.0, + 1206.0, + 331.0, + 1206.0, + 370.0, + 483.0, + 370.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": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1476.0, + 570.0, + 1476.0, + 570.0, + 1496.0, + 513.0, + 1496.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/CGFN_nV1ql/CGFN_nV1ql.md b/parse/train/CGFN_nV1ql/CGFN_nV1ql.md new file mode 100644 index 0000000000000000000000000000000000000000..42fcb10c95953f5e126a151537ac960e583575b1 --- /dev/null +++ b/parse/train/CGFN_nV1ql/CGFN_nV1ql.md @@ -0,0 +1,326 @@ +# NON-ATTENTIVE TACOTRON: ROBUST AND CONTROLLABLE NEURAL TTS SYNTHESIS INCLUDING UNSUPERVISED DURATION MODELING + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +This paper presents Non-Attentive Tacotron based on the Tacotron 2 text-to-speech model, replacing the attention mechanism with an explicit duration predictor. This improves robustness significantly as measured by unaligned duration ratio and word deletion rate, two metrics introduced in this paper for large-scale robustness evaluation using a pre-trained speech recognition model. With the use of Gaussian upsampling, Non-Attentive Tacotron achieves a 5-scale mean opinion score for naturalness of 4.41, slightly outperforming Tacotron 2. The duration predictor enables both utterance-wide and per-phoneme control of duration at inference time. When accurate target durations are scarce or unavailable in the training data, we propose a method using a fine-grained variational auto-encoder to train the duration predictor in a semi-supervised or unsupervised manner, with results almost as good as supervised training. + +# 1 INTRODUCTION + +Autoregressive neural text-to-speech (TTS) models using an attention mechanism are known to be able to generate speech with naturalness on par with recorded human speech. However, these types of models are known to be less robust than traditional approaches (He et al., 2019; Zheng et al., 2019; Guo et al., 2019; Battenberg et al., 2020). These autoregressive networks that predict the output one frame at a time are trained to decide whether to stop at each frame, and thus a misprediction on a single frame can result in serious failures such as early cut-off. Meanwhile, there are little to no hard constraints imposed on the attention mechanism to prevent problems such as repetition, skipping, long pause or babbling. To exacerbate the issue, these failures are rare and are thus often not represented in small test sets, such as those used in subjective listening tests. However, in customer-facing products, even a one-in-a-million chance of such problems can severely degrade the user experience. + +There have been various works aimed at improving the robustness of autoregressive attention-based neural TTS models. Some of them investigated reducing the effect of the exposure bias on the autoregressive decoder, using adversarial training (Guo et al., 2019) or adding regularization to encourage the forward and backward attention to be consistent (Zheng et al., 2019). Others utilized or designed alternative attention mechanisms, such as Gaussian mixture model (GMM) attention (Graves, 2013; Skerry-Ryan et al., 2018), forward attention (Zhang et al., 2018), stepwise monotonic attention (He et al., 2019), or dynamic convolution attention (Battenberg et al., 2020). Nonetheless, these approaches do not fundamentally solve the robustness issue. + +Recently, there has been a surge in the use of non-autoregressive models for TTS. Rather than predicting whether to stop on each frame, non-autoregressive models need to determine the output length ahead of time, and one way to do so is with an explicit prediction of the duration for each input token. A side benefit of such a duration predictor is that it is significantly more resilient to the failures afflicting the attention mechanism. + +However, one-to-many regression problems like TTS can benefit from an autoregressive decoder as the previous mel-spectrogram frames provides context to disambiguate between multi-modal outputs. + +In this paper, we propose, Non-Attentive Tacotron1, a neural TTS model that combines the robust duration predictor with the autoregressive decoder of Tacotron 2 (Shen et al., 2018). + +Our work is similar to DurIAN (Yu et al., 2019; Zhang et al., 2020), which incorporates the duration predictor with an autoregressive decoder. But besides the differences in architecture, we also introduce a couple of novel features in our model. + +The key contributions of this paper are summarized as follows: + +1. Replacing the attention mechanism in Tacotron 2 with duration prediction and upsampling modules leading to better robustness with the naturalness matching recorded natural speech; +2. Introduction of Gaussian upsampling significantly improving the naturalness compared to vanilla upsampling through repetition; +3. Global and fine-grained controlling of durations at inference time; +4. Semi-supervised and unsupervised duration modeling of Non-Attentive Tacotron, allowing the model to be trained with few to no duration annotations; and +5. More reliable evaluation metrics for measuring robustness of TTS models, as well as comparing Non-Attentive Tacotron with Tacotron 2 with respect to those metrics. + +# 2 RELATED WORKS + +In the past decade, model-based TTS synthesis has evolved from hidden Markov model (HMM)-based approaches (Zen et al., 2009) to using deep neural networks. Over this period, the concept of using an explicit representation of token (phoneme) durations has not been foreign. Early neural parametric synthesis models (Zen et al., 2013) require explicit alignments between input and target and include durations as part of the bag of features used to generate vocoder parameters. Explicit durations continue to be used with the advent of the end-to-end neural vocoder WaveNet (Oord et al., 2016) in works such as Deep Voice (Arik et al., 2017; Gibiansky et al., 2017) and CHiVE (Kenter et al., 2019). + +As general focus turned towards end-to-end approaches, the autoregressive sequence-to-sequence model with attention mechanism used in neural machine translation (NMT) (Bahdanau et al., 2015) and automatic speech recognition (ASR) (Chan et al., 2016) became an attractive option, removing the need to represent durations explicitly. This led to works such as Char2Wav (Sotelo et al., 2017), Tacotron (Wang et al., 2017; Shen et al., 2018), Deep Voice 3 (Ping et al., 2018), and Transformer TTS (Li et al., 2019). Similar models have been used for more complicated problems, like direct speech-to-speech translation (Jia et al., 2019), speech conversion (Biadsy et al., 2019), and speech enhancement (Ding et al., 2020). + +Tacotron 2, on which our work is based, is one such model. It connects a character-level encoder and an autoregressive decoder producing mel spectrogram frames with the use of a location-sensitive attention mechanism (Chorowski et al., 2015). + +Recently, there has been a surge of non-autoregressive models, bringing back the use of explicit duration prediction. This approach initially surfaced in NMT (Gu et al., 2017), then made its way into TTS with models such as FastSpeech (Ren et al., 2019; 2020), AlignTTS (Zeng et al., 2020), TalkNet (Beliaev et al., 2020), and JDI-T (Lim et al., 2020). See Appendix C for a rough categorization of these models. + +To train the duration predictor, FastSpeech uses target durations extracted from a pre-trained autoregressive model in teacher forcing mode, while JDI-T also extracts target durations from a separate autoregressive model but co-trains it with the feed-forward model. TalkNet uses a CTC-based ASR model to extract target durations, while CHiVE, FastSpeech 2, and DurIAN use target durations from an external aligner module utilizing forced alignment. Finally, AlignTTS forgoes target durations completely and uses a specialized alignment loss inspired by the Baum-Welch algorithm to train a mixture density network for alignment. + +![](images/ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg) +Figure 1: Architecture of Non-Attentive Tacotron. + +# 3 MODEL + +Modern neural TTS models typically consist of two separate networks: (1) a feature generation network that transforms input tokens (e.g., grapheme or phoneme ids) into acoustic features (e.g., mel-spectrogram), and (2) a vocoder network that transforms the acoustic features into a time-domain audio waveform. This paper focuses on the feature generation network, and can be used with any vocoder network, e.g., WaveNet (Oord et al., 2016), WaveRNN (Kalchbrenner et al., 2018), WaveGlow (Prenger et al., 2019), MelGAN (Kumar et al., 2019), or WaveGrad (Chen et al., 2020). The architecture of Non-Attentive Tacotron is illustrated in Figure 1a. See Appendix A for specific parameter value settings. + +The model follows that of Tacotron 2 (Shen et al., 2018), transforming input ids $\pmb { X } = ( \pmb { x } _ { 1 } , \dots , \pmb { x } _ { N } )$ of length $N$ into mel-spectrogram predictions $\pmb { Y } = ( \pmb { y } _ { 1 } , \dots , \pmb { y } _ { T } )$ of size $T \times K$ . Phonemes are used as inputs, and include a silence token at word boundaries as well as an end-of-sequence token. The ids are used to index into a learned embedding and is then passed through an encoder consisting of 3 $\times$ (dropout, batch normalization, convolution) layers followed by a single bi-directional LSTM with ZoneOut to generate a 2-dimensional output of length $N$ . This output is concatenated with a speaker embedding vector to produce the final encoder output $\pmb { H } = ( h _ { 1 } , . . . , h _ { N } )$ . + +The autoregressive decoder also follows Tacotron 2, and predicts mel-spectrograms one frame at a time. At training time, teacher forcing (Williams & Zipser, 1989) is employed and the previous groundtruth mel-spectrogram frame is used as input, while at inference time the previous predicted mel-spectrogram frame is used. This previous frame is passed through a pre-net containing two fully-connected layers of ReLU units with dropout, then concatenated with an upsampled (aligned) encoder output corresponding to the current frame. The upsampled encoder outputs for future frames are not visible to the decoder at the current frame. In Tacotron 2, this upsampling or alignment is achieved using a location-sensitive attention mechanism (Chorowski et al., 2015), while in this work the attention mechanism is not used and a separate upsampling mechanism described later is used in its stead. The result is then passed through two uni-directional LSTM layers with ZoneOut. The LSTM output is concatenated with the upsampled encoder output yet again then projected to the mel-spectrogram dimension as frames of a preliminary predicted spectrogram $\mathbf { { \mathbf { { \mathbf { Y } } ^ { \prime } } } }$ . Once all the mel-spectrogram frames have been predicted, they are passed through a 5-layer batch normalized convolutional post-net with tanh activation on all except the last layer. The post-net predicts a residual to add to the prediction $\mathbf { { \mathbf { { \mathbf { Y } } ^ { \prime } } } }$ to obtain the final prediction $\mathbf { Y }$ . + +In place of the attention mechanism used in Tacotron 2, duration-based models upsample the encoder outputs using per-token duration information. This can be done by simply repeating each encoder output by its duration as in FastSpeech (Ren et al., 2019), but instead we adopt a different process we call Gaussian upsampling, which is described in subsection 3.1. Note that while durations in seconds are used for loss computation, they are converted to durations in integer frames for upsampling. + +For Gaussian upsampling, a duration and a range parameter must be predicted for each token. The range parameter is called thus because it controls the range of a token’s influence. The duration predictor passes the encoder output through two bi-directional LSTM layers followed by a projection layer to predict the numeric duration $\pmb { d } \overset { - } { = } ( d _ { 1 } , \ldots , d _ { N } )$ for each input token. During training, these predicted durations are only used for loss computation, and the target durations are used instead in the upcoming steps2. The range parameter predictor passes the encoder output concatenated with durations through two bi-directional LSTM layers followed by a projection layer and a SoftPlus activation to predict a positive range parameter $\sigma$ for each input token. + +After the encoder outputs are upsampled, a Transformer-style sinusoidal positional embedding (Vaswani et al., 2017) is concatenated. The positional embedding tracks the index of each upsampled frame within each token; if the duration values are [2, 1, 3], the indices for the positional embedding would be $[ 1 , 2 , 1 , 1 , 2 , 3 ]$ . + +The model is trained using a combination of duration prediction loss and mel-spectrogram reconstruction loss. The duration prediction loss is the $L ^ { 2 }$ loss between predicted and target durations in seconds, and the mel-spectrogram reconstruction loss is a $L ^ { 1 } + L ^ { 2 }$ loss between the predicted and the groundtruth mel-spectrogram both before and after the post-net (following Jia et al. (2018)). + +$$ +\begin{array} { r l r } { { \mathcal { L } = \mathcal { L } _ { \mathrm { s p e c } } + \lambda _ { \mathrm { d u r } } \mathcal { L } _ { \mathrm { d u r } } } } \\ & { } & { \mathcal { L } _ { \mathrm { d u r } } = \frac { 1 } { N } \| d - d ^ { * } \| _ { 2 } ^ { 2 } } \\ & { } & { \mathcal { L } _ { \mathrm { s p e c } } = \frac { 1 } { T K } \displaystyle \sum _ { t = 1 } ^ { T } \Big ( \| y _ { t } ^ { \prime } - y _ { t } ^ { * } \| _ { 1 } + \| y _ { t } ^ { \prime } - y _ { t } ^ { * } \| _ { 2 } ^ { 2 } + \| y _ { t } - y _ { t } ^ { * } \| _ { 1 } + \| y _ { t } - y _ { t } ^ { * } \| _ { 2 } ^ { 2 } \Big ) } \end{array} +$$ + +# 3.1 GAUSSIAN UPSAMPLING + +Given a sequence of vectors to be upsampled $\pmb { H } = ( h _ { 1 } , \ldots , h _ { N } )$ , integer duration values ${ \pmb d } =$ $( d _ { 1 } , \ldots , d _ { N } )$ , and range parameter values ${ \pmb \sigma } = ( \sigma _ { 1 } , \ldots , \sigma _ { N } )$ , we compute the upsampled vector sequence $U = ( \pmb { u } _ { 1 } , \dots , \pmb { u } _ { T } )$ as: + +$$ +c _ { i } = \frac { d _ { i } } { 2 } + \sum _ { j = 1 } ^ { i - 1 } d _ { j } , \qquad w _ { t i } = \frac { N \left( t ; c _ { i } , \sigma _ { i } ^ { 2 } \right) } { \sum _ { j = 1 } ^ { N } \mathcal { N } \left( t ; c _ { j } , \sigma _ { j } ^ { 2 } \right) } , \qquad \quad u _ { t } = \sum _ { i = 1 } ^ { N } w _ { t i } h _ { i } +$$ + +That is, we place a Gaussian distribution with standard deviation $\sigma _ { i }$ at the center of the output segment corresponding to the $i$ -th input token as determined by the duration values $^ d$ , and for each frame we take a weighted sum of the encoder outputs in accordance with the values of Gaussian distributions at that frame. This is similar to the softmax-based aligner in Donahue et al. (2020), except a learned $\pmb { \sigma }$ rather than a fixed temperature hyperparameter is used here. + +Compared with vanilla upsampling by repetition (as in Ren et al. (2019)), which can be seen as a case of learning a hard monotonic attention, Gaussian upsampling results in an alignment that is more akin to single-component GMM attention. Another benefit of Gaussian upsampling is that it is fully differentiable, which is critical to semi-supervised and unsupervised duration modeling (section 4) as it allows the gradients from the spectrogram losses to flow through to the duration predictor. + +# 3.2 TARGET DURATIONS + +Neural TTS models using duration need alignments between input tokens and output features. This can be accomplished by implementing an aligner module in the model or by using an external aligner. + +In our work, target durations are extracted by an external, flatstart trained, speaker-dependent HMMbased aligner with a lexicon (Talkin & Wightman, 1994). However, sometimes it is difficult to train a reliable aligner model and/or extract accurate alignments due to data sparsity, poor recording conditions, or unclear pronunciations. To address this problem, we introduce semi-supervised and unsupervised duration modeling. + +# 4 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING + +A na¨ıve approach to unsupervised duration modeling would be to simply train the model using the predicted durations (instead of the target durations) for upsampling, and use only mel-spectrogram reconstruction loss for optimization. To match the length between the predicted durations and the target mel-spectrogram frames, the predicted per-token durations can be scaled by $T / \sum _ { i } d _ { i }$ . In addition to that, an utterance-level duration loss $\begin{array} { r } { \mathcal { L } _ { \mathrm { u } } = \frac { 1 } { N } \left( T - \sum _ { i } d _ { i } \right) ^ { 2 } } \end{array}$ could be added to the total loss. However, experiments show that such an approach does not produce satisfying naturalness in the synthesized speech (subsection 6.3). + +The proposed unsupervised duration modeling is illustrated in Figure 1b. We instead utilize a fine-grained VAE (FVAE) similar to Sun et al. (2020) to model the alignment between the input tokens and the target mel-spectrogram frames, and extract per-token latent features from the target mel-spectrogram based on this alignment. The token encoder output $\pmb { H }$ is aligned to the target spectrogram $Y ^ { * }$ using an attention mechanism following Lee & Kim (2019): + +$$ +\begin{array} { r } { \pmb { c } _ { i } = \mathrm { A t t n } ( \pmb { h } _ { i } , f _ { \mathrm { s p e c } } ( \pmb { Y } ^ { * } ) ) , } \end{array} +$$ + +where $\boldsymbol { h } _ { i }$ is used as the query in the attention, and $f _ { \mathrm { s p e c } }$ is a spectrogram encoder whose output per frame is used as the values in the attention. A simple dot-product attention from Luong et al. (2015) was used in this work. A latent feature $z _ { i }$ is then computed from $c _ { i }$ and $\boldsymbol { h } _ { i }$ using a variational auto-encoder (VAE) (Kingma & Welling, 2014) with a Gaussian prior $\mathcal { N } ( \mathbf { 0 } , \mathbf { I } )$ , optimized through the evidence lower bound (ELBO): + +$$ +\log p \left( { Y } \mid { H } \right) \geq - \sum _ { i } D _ { \mathrm { K L } } \left( q \left( \boldsymbol { z } _ { i } \mid h _ { i } , \boldsymbol { c } _ { i } \right) \parallel p \left( \boldsymbol { z } _ { i } \right) \right) + \mathbb { E } _ { q \left( \boldsymbol { z } _ { i } \mid h _ { i } , \boldsymbol { c } _ { i } \right) } \left[ \log p \left( { Y } \mid { H } , \boldsymbol { Z } \right) \right] +$$ + +where the first term is the KL divergence between the prior and posterior, and the second term can be approximated by drawing samples from the posterior. + +Because these latent features are extracted from the target spectrogram with an alignment, they are capable of carrying duration related information. At training time, the per-token duration $^ d$ is predicted from the concatenation of the token encoder output $\pmb { H }$ and the posterior latent $z$ ; while at inference time, the prior latent is used for $z$ (either sampled from the distribution or using the distribution mode), and the internal attention mechanism of the FVAE is not used. + +Unlike Sun et al. (2020), scheduled sampling was not utilized for factorizing latent dimensions. These latent features are only used for duration prediction, and are not used for range parameter prediction or mel-spectrogram reconstruction. We also cap the range parameters for each token to twice its predicted duration in this setup for better training stability. As in section 3, durations predicted in seconds are used for loss computation, but are converted to durations in integer frames for upsampling. + +The overall loss used for semi-supervised and unsupervised training is thus + +$$ +\mathcal { L } = \mathcal { L } _ { \mathrm { s p e c } } + \lambda _ { \mathrm { d u r } } \mathcal { L } _ { \mathrm { d u r } } + \lambda _ { \mathrm { u } } \mathcal { L } _ { \mathrm { u } } + \lambda _ { \mathrm { K L } } D _ { \mathrm { K L } } , +$$ + +where $D _ { \mathrm { K L } }$ and $\mathcal { L } _ { \mathrm { s p e c } }$ correspond to the first and second terms in Equation 4, respectively, and ${ \mathcal { L } } _ { \mathrm { d u r } }$ is only counted for examples with target duration labels (i.e. supervised examples). The last three terms are all weighted per valid token. + +# 5 ROBUSTNESS EVALUATION + +Previous work typically evaluated the robustness of TTS systems on a small set of handpicked “hard cases” (He et al., 2019; Zheng et al., 2019; Guo et al., 2019). Although such evaluation is helpful for guiding improvements, it is not reflective of the overall robustness of the system. The handpicked samples may be biased to the weaknesses of a certain system, and is prone to lead further optimization to overfit to the specific evaluation set. + +In this work, we evaluate the robustness of TTS systems on large evaluation sets in an automated way by leveraging existing ASR systems. We run ASR and forced alignment evaluations on the synthesized speech against the verbalized text, and report two metrics measuring over- and under-generation: + +1. Unaligned duration ratio (UDR): The synthesized speech is forced aligned with the verbalized input text using an ASR system. Each token in the input text is aligned to a segment in the synthesized audio. Any long audio segments $> 1$ second) not aligned to any input token are typically due to over-generation from the TTS system, such as long pauses, babbling, word repetitions, or failures to stop after finishing the utterance. The total duration of such long unaligned segments divided by the total output duration is the UDR. Note that short unaligned segments are ignored. If the synthesized speech is unable to be aligned with the input text, it is considered as having a UDR of $100 \%$ . +2. ASR word deletion rate (WDR): This is the deletion error portion in a standard ASR word error rate (WER) evaluation. Under-generation in the synthesized speech, such as early cutoff and word skipping, is reflected by a higher WDR. + +As the ASR system will make mistakes, the metrics above are just an upper-bound on the actual failures of the TTS system. + +# 6 EXPERIMENTS + +All models were trained on a proprietary dataset with 66 speakers with 4 different English accents (US, British, Australian, and Nigerian). The amount of data per speaker varied from merely 5 seconds to 47 hours, totaling 354 hours. + +A preliminary experiment comparing different attention mechanisms (including monotonic, stepwise monotonic, dynamic convolution and GMM attention (GMMA)) showed that GMMA performed the best. We therefore compared our non-attentive Tacotron not only with Tacotron 2 with locationsensitive attention (LSA) which was used in the original Tacotron 2 paper but also with Tacotron 2 with GMMA. The Tacotron 2 models used reduction factor 2 and $L ^ { 1 } + L ^ { 2 }$ loss. + +Following Shen et al. (2018), predicted features were obtained in teacher-forcing mode from a Tacotron 2 model and used to train a WaveRNN vocoder which was then used for all experiments. + +# 6.1 NATURALNESS + +The naturalness of the synthesized speech was evaluated through subjective listening tests, including 5-scale Mean Opinion Score (MOS) tests and side-by-side preference tests. The sentences were synthesized using 10 US English speakers (5 male / 5 female) in a round-robin fashion. The amount of training data for the evaluated speakers varied from 3 hours to 47 hours. + +Table 1 contains MOS results. Non-Attentive Tacotron with Gaussian upsampling matched Tacotron 2 (GMMA) in naturalness, and both were close to the groundtruth audio. A preference test between + +Table 1: MOS with $9 5 \%$ confidence intervals. + +
ModelMOS
Tacotron 2
w/LSA4.35 ± 0.05
w/ GMMA4.37 ± 0.04
Non-Attentive Tacotron w/ Gauss. upsampling
w/ vanilla upsampling4.41 ± 0.04
4.13 ± 0.05
Ground truth4.42 ± 0.04
+ +![](images/298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg) +Figure 2: Preference test result with Non-Attentive Tacotron with Gaussian upsampling compared against Tacotron 2 (GMMA). + +Non-Attentive Tacotron and Tacotron 2 (GMMA) further confirmed this result, as shown in Figure 2. Non-Attentive Tacotron with vanilla (repeating) upsampling was rated as significantly less natural than with Gaussian upsampling. + +The effectiveness of a learned range parameter versus a fixed temperature hyperparameter set at 10.0 as per Donahue et al. (2020) is compared using a preference test in Table 2. While there is only a slight perceived benefit in using a learned range parameter, it reduces the need to tune another dataset-dependent hyperparameter. Additionally, in multi-speaker setups it is possible that the optimal $\sigma$ may be speaker-dependent. + +Table 2: Preference test between a learned $\sigma$ versus a fixed $\sigma$ set at 10.0. Pace is defined as in subsection 6.2. A negative preference value means that the learned $\sigma$ is preferred over the fixed $\sigma$ . + +
Pace0.8×1.0×1.25×
Preference -0.017 ±0.057 -0.055±0.054 -0.017±0.055
+ +# 6.2 PACE CONTROL + +Table 3 shows WER and MOS results after modifying the utterance-wide pace by dividing the predicted durations by various factors. The WER is computed on speech synthesized on transcripts from the LibriTTS test-clean subset with the same 10 speakers in subsection 6.1, and then transcribed by an ASR model described in Park et al. (2020) with a WER of $2 . 3 \%$ on the ground truth audio. + +With pace between $0 . 8 \times - 1 . 2 5 \times$ , the WERs were hardly impacted. The WER was significantly worse when the pace was increased to $1 . 5 \times$ normal, partially because the ASR model used was not optimized for speech so fast. In contrast, the subjective MOS decreased rapidly when the pace was sped up or slowed down significantly. However, most of the comments from raters were simply complaining about the pace, such as “too slow to be natural” $\mathbf { \eta } ^ { ( 0 . 8 \mathbf { x } ) }$ or “way too fast” $( 1 . 2 5 \mathrm { x } )$ . + +Non-Attentive Tacotron is also able to control the pace of the synthesized speech at a finer granularity, such as per-word or per-phoneme, while still maintain the naturalness of the synthesized speech. Figure 3 shows examples of controlling the pace for specific words in a sentence. + +![](images/258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg) +Figure 3: Single word pace control with sentence “I’m so saddened about the devastation in Big Basin.” The top spectrogram is with regular pace. The rest slow down the words “saddened”, “devastation”, and “Big Basin” respectively to $0 . 6 7 \times$ the regular pace by scaling the predicted duration by $1 . 5 \times$ . + +Table 3: Performance of controlling the utterance-wide pace of the synthesized speech. + +
Pace0.67×0.8×0.9×1.0×1.11×1.25×1.5×
WER3.3%2.8%2.6%2.6%2.5%2.7%6.1%
MOS3.28 ± 0.063.87 ± 0.054.24 ± 0.044.41 ± 0.044.28 ± 0.043.79 ± 0.063.18± 0.06
+ +# 6.3 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING + +Ten different US English speakers (5 male / 5 female) each with about 4 hours of training data were used for evaluating the performance of the unsupervised and semi-supervised duration modeling. + +![](images/26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg) +Figure 4: Alignment on text “What time do I need to show up to my sky diving lesson?” from the unsupervised model. The predicted alignments are from Gaussian upsampling. + +Table 4: Performance of unsupervised and semi-supervised duration modeling. Zero vectors are used as FVAE latents for inference. MAE denotes the mean absolute error. + +
TrainingModelDur. MAE (ms)MOS
Unsupervisedw/o FVAE124.42.91± 0.09
w/ FVAE41.34.31 ± 0.04
Semi-supervisedw/o FVAE21.54.19 ± 0.05
Supervisedw/FVAE18.34.35 ± 0.04
Non-Attentive Tacotron15.44.37 ± 0.04
Tacotron2 w/ GMMA-4.35 ± 0.04
Ground truth=4.52 ± 0.03
+ +The duration labels for these 10 speakers (i.e. about $11 \%$ of the training data) were withheld for the semi-supervised models, and all duration labels were withheld for the unsupervised models. + +Figure 4 shows predicted alignment after Gaussian upsampling and the internal alignment from the attention module in the FVAE compared with the alignment computed from the target durations, for the unsupervised model. Despite not having access to any target durations, both the FVAE and duration predictor were able to produce an alignment close to that computed from the target durations. + +As shown in Table 4, with the use of the FVAE, the naturalness of both semi-supervised and unsupervised models were very close to that of the supervised models, even though duration prediction errors were higher. The autoregressive decoder trained with teacher forcing may have been powerful enough to correct the duration prediction errors to some degree. However, the naturalness degraded significantly without the use of the FVAE. Although the duration error from the semi-supervised model without FVAE was lower than that from the unsupervised model with FVAE, the former was significantly less natural than the latter. This may be due to a lower consistency between supervised and unsupervised speakers without FVAE. + +Although these models were close to the supervised model in MOS, manual investigation found that samples from both semi-supervised models and unsupervised models had a small chance of containing slight errors that do not occur in the supervised model, such as unclear pronunciations, phoneme repetitions, or extra pauses. However, they are significantly less severe than similar errors from Tacotron 2, mostly impacting just one or a few phonemes. These errors are further confirmed in the large scale robustness evaluation (subsection 6.4). + +The utterance-wide or fine-grained pace control (subsection 6.2) can be applied to the semi-supervised and unsupervised models as well. However, as the alignments are not as accurate, the synthesized speech with fine-grained pace control are not as natural as from the supervised model. The duration may be extended by simply inserting more silence, and the extended portion may include phoneme repetitions or unclear pronunciations. + +Table 5: Robustness measured by UDR and WDR on two large evaluation sets. The evaluation speakers are unsupervised ones in the semi-supervised and unsupervised models. + +
SystemLibriTTSweb-long
UDR (%)WDR (%)UDR (%)WDR (%)
Tacotron 2
w/LSA16.960.446.044.4
w/ GMMA3.8120.16.1571.3
Non-Attentive Tacotron
Supervised0.0050.10.0111.1
Semi-supervised0.2660.90.6953.5
Unsupervised0.2230.70.5273.2
+ +# 6.4 ROBUSTNESS + +We evaluated the robustness of the neural TTS models by measuring UDR and WDR on two large evaluation sets: LibriTTS: 354K sentences from all train subsets from the LibriTTS corpus (Zen et al., 2019); and web-long: 100K long sentences mined from the web, which included a small amount of irregular text such as programming code. The median text lengths of the two sets were 74 and 224 characters, respectively. The input was synthesized using the same 10 speakers in subsection 6.3 in a round-robin fashion. All model outputs were capped at 120 seconds. + +We used the ASR model trained on the LibriSpeech (Panayotov et al., 2015) and LibriLight (Kahn et al., 2020) corpora from Park et al. (2020) for measuring WDR, and a confidence islands-based forced alignment model (Chiu et al., 2018) for measuring UDR. + +Table 5 shows the robustness metrics for Tacotron 2 and Non-Attentive Tacotron. Tacotron 2 (LSA) suffered from severe over-generation as measured by UDR, especially on long inputs. Manual investigation uncovered that they were typically long babbling or long silence, often at the end (failure to stop). It also had a high level of under-generation as measured by WDR, typically due to early cutoff. Tacotron 2 (GMMA) performed almost as well as the supervised Non-Attentive Tacotron in WDR because of its soft monotonic nature, which made end-of-sentence prediction easier. However, it still had significantly higher level of over-generation compared to Non-Attentive Tacotron, even when unsupervised or semi-supervised duration modeling is used for the latter. The robustness of semi-supervised and unsupervised Non-Attentive Tacotron is significantly worse than the supervised one. Manual investigation uncovered that the typical failure pattern is that part of the spectrogram is not correctly synthesized (often as silence, but sometimes as babbling), despite that the duration prediction seems reasonable. Such failure pattern contributes to both UDR and WDR. This indicates further improvements to be made. Even then, the semi-supervised and unsupervised Non-Attentive Tacotron still performs significantly better on over-generation compared to Tacotron 2. + +In practice, we also observed that Tacotron 2 required significantly more care in data preprocessing to achieve this level of robustness, including consistent trimming of leading and trailing silences and filtering out utterances with long pauses. On the other hand, Non-Attentive Tacotron is significantly less sensitive to the data preprocessing steps. + +# 7 CONCLUSIONS + +This paper presented Non-Attentive Tacotron, showing a significant improvement in robustness compared to Tacotron 2 as measured by unaligned duration ratio and word deletion rate, while also slightly outperforming it in naturalness. This was achieved by replacing the attention mechanism in Tacotron 2 with an explicit duration predictor and Gaussian upsampling. We demonstrated the ability to control the pacing of the entire utterance as well as individual words using the duration predictor. We also described a method of modeling duration in a semi-supervised or unsupervised manner using Non-Attentive Tacotron when accurate target duration are scarce or unavailable by using a fine-grained variational auto-encoder, with results almost as good as supervised training. + +# REFERENCES + +Sercan O Arik, Mike Chrzanowski, Adam Coates, Gregory Diamos, Andrew Gibiansky, Yongguo Kang, Xian Li, John Miller, Andrew Ng, Jonathan Raiman, Shubho Sengupta, and Mohammad Shoeybi. Deep Voice: Real-Time Neural Text-to-Speech. In Proc. ICML, pp. 195–204, 2017. + +Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly Learning to Align and Translate. In Proc. ICLR, 2015. + +Eric Battenberg, RJ Skerry-Ryan, Soroosh Mariooryad, Daisy Stanton, David Kao, Matt Shannon, and Tom Bagby. Location-Relative Attention Mechanisms For Robust Long-Form Speech Synthesis. In Proc. ICASSP, 2020. + +Stanislav Beliaev, Yurii Rebryk, and Boris Ginsburg. TalkNet: Fully-Convolutional NonAutoregressive Speech Synthesis Model. arXiv preprint arXiv:2005.05514, 2020. + +Fadi Biadsy, Ron J. Weiss, Pedro J. Moreno, Dimitri Kanvesky, and Ye. Jia. Parrotron: An End-to-End Speech-to-Speech Conversion Model and its Applications Hearing-Impaired Speech and Speech Separation. In Proc. Interspeech, pp. 4115–4119, 2019. + +W. Chan, N. Jaitly, Q. Le, and O. Vinyals. Listen, Attend and Spell: A Neural Network for Large Vocabulary Conversational Speech Recognition. In Proc. ICASSP, pp. 4960–4964, 2016. + +Nanxin Chen, Yu Zhang, Heiga Zen, Ron J Weiss, Mohammad Norouzi, and William Chan. WaveGrad: Estimating Gradients for Waveform Generation. arXiv preprint arXiv:2009.00713, 2020. + +Chung-Cheng Chiu, Anshuman Tripathi, Katherine Chou, Chris Co, Navdeep Jaitly, Diana Jaunzeikare, Anjuli Kannan, Patrick Nguyen, Hasim Sak, Ananth Sankar, Justin Tansuwan, Nathan Wan, Yonghui Wu, and Xuedong Zhang. Speech Recognition for Medical Conversations. In Proc. Interspeech, pp. 2972–2976, 2018. + +Jan K Chorowski, Dzmitry Bahdanau, Dmitriy Serdyuk, Kyunghyun Cho, and Yoshua Bengio. Attention-based models for speech recognition. In Proc. NeurIPS, 2015. + +Shaojin Ding, Ye Jia, Ke Hu, and Quan Wang. Textual Echo Cancellation. arXiv preprint arXiv:2008.06006, 2020. + +Jeff Donahue, Sander Dieleman, Mikołaj Binkowski, Erich Elsen, and Karen Simonyan. End-to-End ´ Adversarial Text-to-Speech. arXiv preprint arXiv:2006.03575, 2020. + +Andrew Gibiansky, Sercan Arik, Gregory Diamos, John Miller, Kainan Peng, Wei Ping, Jonathan Raiman, and Yanqi Zhou. Deep voice 2: Multi-speaker neural text-to-speech. In Advances in neural information processing systems, pp. 2962–2970, 2017. + +Alex Graves. Generating Sequences with Recurrent Neural Networks. arXiv preprint arXiv:1308.0850, 2013. + +Jiatao Gu, James Bradbury, Caiming Xiong, Victor OK Li, and Richard Socher. Non-autoregressive neural machine translation. arXiv preprint arXiv:1711.02281, 2017. + +Haohan Guo, Frank K Soong, Lei He, and Lei Xie. A New GAN-based End-to-End TTS Training Algorithm. In Proc. Interspeech, pp. 1288–1292, 2019. + +Mutian He, Yan Deng, and Lei He. Robust Sequence-to-Sequence Acoustic Modeling with Stepwise Monotonic Attention for Neural TTS. In Proc. Interspeech, pp. 1293–1297, 2019. + +Ye Jia, Yu Zhang, Ron J. Weiss, Quan Wang, Jonathan Shen, Fei Ren, Zhifeng Chen, Patrick Nguyen, Ruoming Pang, Ignacio Lopez-Moreno, and Yonghui Wu. Transfer Learning from Speaker Verification to Multispeaker Text-To-Speech Synthesis. In Proc. NeurIPS, 2018. + +Ye Jia, Ron J Weiss, Fadi Biadsy, Wolfgang Macherey, Melvin Johnson, Zhifeng Chen, and Yonghui Wu. Direct Speech-to-Speech Translation with a Sequence-to-Sequence Model. In Proc. Interspeech, pp. 1123–1127, 2019. + +Jacob Kahn, Morgane Riviere, Weiyi Zheng, Evgeny Kharitonov, Qiantong Xu, Pierre-Emmanuel \` Mazare, Julien Karadayi, Vitaliy Liptchinsky, Ronan Collobert, Christian Fuegen, Tatiana Likhoma- ´ nenko, Gabriel Synnaeve, Armand Joulin, Abdelrahman Mohamed, and Emmanuel Dupoux. Librilight: A Benchmark for ASR with Limited or No Supervision. In Proc. ICASSP, pp. 7669–7673, 2020. + +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. In Proc. ICML, pp. 2410–2419, 2018. + +Tom Kenter, Vincent Wan, Chun-An Chan, Rob Clark, and Jakub Vit. CHiVE: Varying Prosody in Speech Synthesis with a Linguistically Driven Dynamic Hierarchical Conditional Variational Network. In Proc. ICML, pp. 3331–3340, 2019. + +Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proc. ICLR, 2014. + +Kundan Kumar, Rithesh Kumar, Thibault de Boissiere, Lucas Gestin, Wei Zhen Teoh, Jose Sotelo, Alexandre de Brebisson, Yoshua Bengio, and Aaron Courville. MelGAN: Generative Adversarial Networks for Conditional Waveform Synthesis. In Proc. NeurIPS, 2019. + +Younggun Lee and Taesu Kim. Robust and fine-grained prosody control of end-to-end speech synthesis. In Proc. ICASSP, pp. 5911–5915, 2019. + +Naihan Li, Shujie Liu, Yanqing Liu, Sheng Zhao, and Ming Liu. Neural Speech Synthesis with Transformer Network. In Proc. AAAI, volume 33, pp. 6706–6713, 2019. + +Dan Lim, Won Jang, Hyeyeong Park, Bongwan Kim, and Jesam Yoon. JDI-T: Jointly Trained Duration Informed Transformer for Text-To-Speech without Explicit Alignment. arXiv preprint arXiv:2005.07799, 2020. + +Minh-Thang Luong, Hieu Pham, and Christopher D Manning. Effective approaches to attention-based neural machine translation. arXiv preprint arXiv:1508.04025, 2015. + +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. + +Vassil Panayotov, Guoguo Chen, Daniel Povey, and Sanjeev Khudanpur. Librispeech: An ASR Corpus Based on Public Domain Audio Books. In Proc. ICASSP, pp. 5206–5210, 2015. + +Daniel S Park, Yu Zhang, Ye Jia, Wei Han, Chung-Cheng Chiu, Bo Li, Yonghui Wu, and Quoc V Le. Improved Noisy Student Training for Automatic Speech Recognition. In Proc. Interspeech, 2020. to appear. + +Wei Ping, Kainan Peng, Andrew Gibiansky, Sercan O Arik, Ajay Kannan, Sharan Narang, Jonathan Raiman, and John Miller. Deep Voice 3: Scaling text-to-speech with convolutional sequence learning. In Proc. ICLR, 2018. + +Ryan Prenger, Rafael Valle, and Bryan Catanzaro. WaveGlow: A Flow-based Generative Network for Speech Synthesis. In Proc. ICASSP, 2019. + +Yi Ren, Yangjun Ruan, Xu Tan, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech: Fast, Robust and Controllable Text to Speech. In Proc. NeurIPS, 2019. + +Yi Ren, Chenxu Hu, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech 2: Fast and High-Quality End-to-End Text-to-Speech. arXiv preprint arXiv:2006.04558, 2020. + +Jonathan Shen, Ruoming Pang, Ron J. Weiss, Mike Schuster, Navdeep Jaitly, Zongheng Yang, Zhifeng Chen, Yu Zhang, Yuxuan Wang, RJ Skerrv-Ryan, Rif A. Saurous, Yannis Agiomyrgiannakis, and Yonghui Wu. Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions. In Proc. ICASSP, pp. 4779–4783, 2018. + +RJ Skerry-Ryan, Eric Battenberg, Ying Xiao, Yuxuan Wang, Daisy Stanton, Joel Shor, Ron Weiss, Rob Clark, and Rif A Saurous. Towards End-to-End Prosody Transfer for Expressive Speech Synthesis with Tacotron. In Proc. ICML, pp. 4700–4709, 2018. + +Jose Sotelo, Soroush Mehri, Kundan Kumar, Joao Felipe Santos, Kyle Kastner, Aaron C. Courville, and Yoshua Bengio. Char2Wav: End-to-End speech synthesis. In Proc. ICLR workshop, 2017. + +Guangzhi Sun, Yu Zhang, Ron J Weiss, Yuan Cao, Heiga Zen, and Yonghui Wu. Fully-Hierarchical Fine-Grained Prosody Modeling for Interpretable Speech Synthesis. In Proc. ICASSP, pp. 6264– 6268, 2020. + +David Talkin and Colin W Wightman. The aligner: Text to speech alignment using markov models and a pronunciation dictionary. In The Second ESCA/IEEE Workshop on Speech Synthesis, 1994. + +Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention Is All You Need. In Proc. NIPS, 2017. + +Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly, Zongheng Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, Q. Le, Y. Agiomyrgiannakis, R. Clark, and R. Saurous. Tacotron: Towards End-to-End Speech Synthesis. In Proc. Interspeech, pp. 4006– 4010, 2017. + +Ronald J. Williams and David Zipser. A Learning Algorithm for Continually Running Fully Recurrent Neural Networks. Neural Computation, 1(2):270–280, 1989. + +Chengzhu Yu, Heng Lu, Na Hu, Meng Yu, Chao Weng, Kun Xu, Peng Liu, Deyi Tuo, Shiyin Kang, Guangzhi Lei, Dan Su, and Dong Yu. DurIAN: Duration informed attention network for multimodal synthesis. arXiv:1909.01700, 2019. + +H. Zen, K. Tokuda, and A. Black. Statistical Parametric Speech Synthesis. Speech Communication, 51(11):1039–1064, 2009. + +Heiga Zen, Andrew Senior, and Mike Schuster. Statistical Parametric Speech Synthesis Using Deep Neural Networks. In Proc. ICASSP, pp. 7962–7966, 2013. + +Heiga Zen, Viet Dang, Rob Clark, Yu Zhang, Ron J Weiss, Ye Jia, Zhifeng Chen, and Yonghui Wu. LibriTTS: A Corpus Derived from LibriSpeech for Text-to-Speech. In Proc. Interspeech, pp. 1526–1530, 2019. + +Zhen Zeng, Jianzong Wang, Ning Cheng, Tian Xia, and Jing Xiao. AlignTTS: Efficient Feed-Forward Text-to-Speech System without Explicit Alignment. In Proc. ICASSP, pp. 6714–6718, 2020. + +Jing-Xuan Zhang, Zhen-Hua Ling, and Li-Rong Dai. Forward attention in sequence-to-sequence acoustic modeling for speech synthesis. In Proc. ICASSP, pp. 4789–4793, 2018. + +Zewang Zhang, Qiao Tian, Heng Lu, Ling-Hui Chen, and Shan Liu. Adadurian: Few-shot adaptation for neural text-to-speech with durian. arXiv preprint arXiv:2005.05642, 2020. + +Yibin Zheng, Jianhua Tao, Wen. Zhengqi, and Jiangyan Yi. Forward–backward decoding sequence for regularizing end-to-end tts. IEEE/ACM Trans. Audio Speech & Lang. Process., 27(12):2067–2079, 2019. + +A MODEL PARAMETERS + +Table 6: Model parameters. + +
CommonTraining modeSynchronous 32
Batch size (per replica) Replicas Parameter init L² regularization Learning rate Learning rate scheduleXavier 1 ×10-6 0.001
Inputs and TargetsOptimizer LSTM zone-out prob LSTM cell abs value cap Sampling rate (Hz) Normalize waveform Pre-emphasis Frame size (ms) Frame hop (ms)decay half every 50K steps. Adam(0.9,0.999,1 × 10-6) 0.1 10.0 24,000 No No 50
EncoderMel channels K Mel frequency lower bound (Hz) Mel frequency upper bound (Hz)128 20 12,000
FVAE
Yes
512×2
5×1
512 64
Mel spectrogram dynamic range compressionlog(x +0.001)
Token embedding dim
Speaker embedding dim
Conv kernel
Conv dim[512, 512, 512]
Conv activation[None,None,None]
Conv batch norm decay0.999
Bi-LSTM dim
Segment encoder conv kernel3×1
Segment encoder conv dim[512,512,512]
Segment encoder Bi-LSTM dim256×2
Layer norm attention inputs
Latent dim8 projected to 16
Duration PredictorBi-LSTM dim512×2
Projection activationNone
Xdur supervised2.0
Xdur semi-supervised100.0
100.0
Au semi-supervised1×10-3
XKL semi-supervised
Xu unsupervised1.0
Range Parameter Predictor入KL unsupervised1 ×10-4
Bi-LSTM dim512×2
Positional EmbeddingProjection activationSoftPlus
Embedding dim32
Timestep denominator10.000
Decoder[256,256]
Pre-net dim supervised
Pre-net dim semi/unsupervised[128,128]
Pre-net activation[ReLU,ReLU]
[0.5,0.5]
Pre-net dropout prob
LSTM dim^1,024
LSTM inituniform(0.1)
Projection inituniform(0.1)
Post-net conv kernel5×1
Post-net conv dim
[512,512,512,512,128]
Post-net conv activation
[tanh,tanh,tanh,tanh,None]
Post-net conv init
+ +# B WER BREAKDOWNS IN THE ROBUSTNESS EVALUATION + +Table 7: WER breakdowns in the robustness evaluation. Deletion rate (del) is the WDR in Table 5. + +
SystemLibriTTSweb-long
WERdelinssubWERdelinssub
Tacotron 2
w/LSA1.80.40.31.113.04.42.06.7
w/ GMMA1.70.10.11.510.11.31.37.4
Non-Attentive Tacotron
Supervised1.40.10.11.29.31.11.36.9
Semi-supervised3.30.90.22.214.13.51.69.0
Unsupervised3.50.70.32.615.33.22.010.1
+ +# C CLASSIFICATION OF SOME TTS MODELS + +Table 8: Classification of some TTS models into autoregressive (AR)/feed-forward (FF), RNN/Transformer/fully convolutional, and attention-based/duration-based. + +
ModelYearARFFRNNTransformerFull ConvAttentionDuration
Deep Voice2017
Char2Wav2017
Tacotron2017
Deep Voice 22017
Tacotron 22018
Deep Voice 32018
Transformer TTS2019
CHiVE2019
DurIAN2019
Fastspeech2019
TalkNet2020
AlignTTS2020
JDI-T2020
Non-Attentive Tacotron2020
\ No newline at end of file diff --git a/parse/train/CGFN_nV1ql/CGFN_nV1ql_content_list.json b/parse/train/CGFN_nV1ql/CGFN_nV1ql_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..fa2d4eaedbdc1029298426de7c4fecba586c8863 --- /dev/null +++ b/parse/train/CGFN_nV1ql/CGFN_nV1ql_content_list.json @@ -0,0 +1,1714 @@ +[ + { + "type": "text", + "text": "NON-ATTENTIVE TACOTRON: ROBUST AND CONTROLLABLE NEURAL TTS SYNTHESIS INCLUDING UNSUPERVISED DURATION MODELING ", + "text_level": 1, + "bbox": [ + 176, + 98, + 790, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 184, + 195, + 398, + 223 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 260, + 544, + 275 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This paper presents Non-Attentive Tacotron based on the Tacotron 2 text-to-speech model, replacing the attention mechanism with an explicit duration predictor. This improves robustness significantly as measured by unaligned duration ratio and word deletion rate, two metrics introduced in this paper for large-scale robustness evaluation using a pre-trained speech recognition model. With the use of Gaussian upsampling, Non-Attentive Tacotron achieves a 5-scale mean opinion score for naturalness of 4.41, slightly outperforming Tacotron 2. The duration predictor enables both utterance-wide and per-phoneme control of duration at inference time. When accurate target durations are scarce or unavailable in the training data, we propose a method using a fine-grained variational auto-encoder to train the duration predictor in a semi-supervised or unsupervised manner, with results almost as good as supervised training. ", + "bbox": [ + 233, + 300, + 766, + 467 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 515, + 336, + 531 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Autoregressive neural text-to-speech (TTS) models using an attention mechanism are known to be able to generate speech with naturalness on par with recorded human speech. However, these types of models are known to be less robust than traditional approaches (He et al., 2019; Zheng et al., 2019; Guo et al., 2019; Battenberg et al., 2020). These autoregressive networks that predict the output one frame at a time are trained to decide whether to stop at each frame, and thus a misprediction on a single frame can result in serious failures such as early cut-off. Meanwhile, there are little to no hard constraints imposed on the attention mechanism to prevent problems such as repetition, skipping, long pause or babbling. To exacerbate the issue, these failures are rare and are thus often not represented in small test sets, such as those used in subjective listening tests. However, in customer-facing products, even a one-in-a-million chance of such problems can severely degrade the user experience. ", + "bbox": [ + 174, + 554, + 825, + 693 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "There have been various works aimed at improving the robustness of autoregressive attention-based neural TTS models. Some of them investigated reducing the effect of the exposure bias on the autoregressive decoder, using adversarial training (Guo et al., 2019) or adding regularization to encourage the forward and backward attention to be consistent (Zheng et al., 2019). Others utilized or designed alternative attention mechanisms, such as Gaussian mixture model (GMM) attention (Graves, 2013; Skerry-Ryan et al., 2018), forward attention (Zhang et al., 2018), stepwise monotonic attention (He et al., 2019), or dynamic convolution attention (Battenberg et al., 2020). Nonetheless, these approaches do not fundamentally solve the robustness issue. ", + "bbox": [ + 174, + 700, + 825, + 811 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recently, there has been a surge in the use of non-autoregressive models for TTS. Rather than predicting whether to stop on each frame, non-autoregressive models need to determine the output length ahead of time, and one way to do so is with an explicit prediction of the duration for each input token. A side benefit of such a duration predictor is that it is significantly more resilient to the failures afflicting the attention mechanism. ", + "bbox": [ + 176, + 819, + 823, + 888 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "However, one-to-many regression problems like TTS can benefit from an autoregressive decoder as the previous mel-spectrogram frames provides context to disambiguate between multi-modal outputs. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we propose, Non-Attentive Tacotron1, a neural TTS model that combines the robust duration predictor with the autoregressive decoder of Tacotron 2 (Shen et al., 2018). ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our work is similar to DurIAN (Yu et al., 2019; Zhang et al., 2020), which incorporates the duration predictor with an autoregressive decoder. But besides the differences in architecture, we also introduce a couple of novel features in our model. ", + "bbox": [ + 176, + 138, + 823, + 180 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The key contributions of this paper are summarized as follows: ", + "bbox": [ + 173, + 188, + 584, + 202 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. Replacing the attention mechanism in Tacotron 2 with duration prediction and upsampling modules leading to better robustness with the naturalness matching recorded natural speech; \n2. Introduction of Gaussian upsampling significantly improving the naturalness compared to vanilla upsampling through repetition; \n3. Global and fine-grained controlling of durations at inference time; \n4. Semi-supervised and unsupervised duration modeling of Non-Attentive Tacotron, allowing the model to be trained with few to no duration annotations; and \n5. More reliable evaluation metrics for measuring robustness of TTS models, as well as comparing Non-Attentive Tacotron with Tacotron 2 with respect to those metrics. ", + "bbox": [ + 210, + 215, + 825, + 382 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORKS ", + "text_level": 1, + "bbox": [ + 176, + 409, + 354, + 424 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the past decade, model-based TTS synthesis has evolved from hidden Markov model (HMM)-based approaches (Zen et al., 2009) to using deep neural networks. Over this period, the concept of using an explicit representation of token (phoneme) durations has not been foreign. Early neural parametric synthesis models (Zen et al., 2013) require explicit alignments between input and target and include durations as part of the bag of features used to generate vocoder parameters. Explicit durations continue to be used with the advent of the end-to-end neural vocoder WaveNet (Oord et al., 2016) in works such as Deep Voice (Arik et al., 2017; Gibiansky et al., 2017) and CHiVE (Kenter et al., 2019). ", + "bbox": [ + 174, + 443, + 825, + 541 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "As general focus turned towards end-to-end approaches, the autoregressive sequence-to-sequence model with attention mechanism used in neural machine translation (NMT) (Bahdanau et al., 2015) and automatic speech recognition (ASR) (Chan et al., 2016) became an attractive option, removing the need to represent durations explicitly. This led to works such as Char2Wav (Sotelo et al., 2017), Tacotron (Wang et al., 2017; Shen et al., 2018), Deep Voice 3 (Ping et al., 2018), and Transformer TTS (Li et al., 2019). Similar models have been used for more complicated problems, like direct speech-to-speech translation (Jia et al., 2019), speech conversion (Biadsy et al., 2019), and speech enhancement (Ding et al., 2020). ", + "bbox": [ + 174, + 547, + 825, + 660 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Tacotron 2, on which our work is based, is one such model. It connects a character-level encoder and an autoregressive decoder producing mel spectrogram frames with the use of a location-sensitive attention mechanism (Chorowski et al., 2015). ", + "bbox": [ + 176, + 666, + 821, + 708 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Recently, there has been a surge of non-autoregressive models, bringing back the use of explicit duration prediction. This approach initially surfaced in NMT (Gu et al., 2017), then made its way into TTS with models such as FastSpeech (Ren et al., 2019; 2020), AlignTTS (Zeng et al., 2020), TalkNet (Beliaev et al., 2020), and JDI-T (Lim et al., 2020). See Appendix C for a rough categorization of these models. ", + "bbox": [ + 174, + 715, + 825, + 785 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To train the duration predictor, FastSpeech uses target durations extracted from a pre-trained autoregressive model in teacher forcing mode, while JDI-T also extracts target durations from a separate autoregressive model but co-trains it with the feed-forward model. TalkNet uses a CTC-based ASR model to extract target durations, while CHiVE, FastSpeech 2, and DurIAN use target durations from an external aligner module utilizing forced alignment. Finally, AlignTTS forgoes target durations completely and uses a specialized alignment loss inspired by the Baum-Welch algorithm to train a mixture density network for alignment. ", + "bbox": [ + 174, + 792, + 825, + 890 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg", + "image_caption": [ + "Figure 1: Architecture of Non-Attentive Tacotron. " + ], + "image_footnote": [], + "bbox": [ + 220, + 102, + 813, + 397 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 MODEL ", + "text_level": 1, + "bbox": [ + 174, + 422, + 269, + 439 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Modern neural TTS models typically consist of two separate networks: (1) a feature generation network that transforms input tokens (e.g., grapheme or phoneme ids) into acoustic features (e.g., mel-spectrogram), and (2) a vocoder network that transforms the acoustic features into a time-domain audio waveform. This paper focuses on the feature generation network, and can be used with any vocoder network, e.g., WaveNet (Oord et al., 2016), WaveRNN (Kalchbrenner et al., 2018), WaveGlow (Prenger et al., 2019), MelGAN (Kumar et al., 2019), or WaveGrad (Chen et al., 2020). The architecture of Non-Attentive Tacotron is illustrated in Figure 1a. See Appendix A for specific parameter value settings. ", + "bbox": [ + 174, + 458, + 825, + 569 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The model follows that of Tacotron 2 (Shen et al., 2018), transforming input ids $\\pmb { X } = ( \\pmb { x } _ { 1 } , \\dots , \\pmb { x } _ { N } )$ of length $N$ into mel-spectrogram predictions $\\pmb { Y } = ( \\pmb { y } _ { 1 } , \\dots , \\pmb { y } _ { T } )$ of size $T \\times K$ . Phonemes are used as inputs, and include a silence token at word boundaries as well as an end-of-sequence token. The ids are used to index into a learned embedding and is then passed through an encoder consisting of 3 $\\times$ (dropout, batch normalization, convolution) layers followed by a single bi-directional LSTM with ZoneOut to generate a 2-dimensional output of length $N$ . This output is concatenated with a speaker embedding vector to produce the final encoder output $\\pmb { H } = ( h _ { 1 } , . . . , h _ { N } )$ . ", + "bbox": [ + 173, + 575, + 825, + 674 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The autoregressive decoder also follows Tacotron 2, and predicts mel-spectrograms one frame at a time. At training time, teacher forcing (Williams & Zipser, 1989) is employed and the previous groundtruth mel-spectrogram frame is used as input, while at inference time the previous predicted mel-spectrogram frame is used. This previous frame is passed through a pre-net containing two fully-connected layers of ReLU units with dropout, then concatenated with an upsampled (aligned) encoder output corresponding to the current frame. The upsampled encoder outputs for future frames are not visible to the decoder at the current frame. In Tacotron 2, this upsampling or alignment is achieved using a location-sensitive attention mechanism (Chorowski et al., 2015), while in this work the attention mechanism is not used and a separate upsampling mechanism described later is used in its stead. The result is then passed through two uni-directional LSTM layers with ZoneOut. The LSTM output is concatenated with the upsampled encoder output yet again then projected to the mel-spectrogram dimension as frames of a preliminary predicted spectrogram $\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }$ . Once all the mel-spectrogram frames have been predicted, they are passed through a 5-layer batch normalized convolutional post-net with tanh activation on all except the last layer. The post-net predicts a residual to add to the prediction $\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }$ to obtain the final prediction $\\mathbf { Y }$ . ", + "bbox": [ + 173, + 681, + 825, + 888 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In place of the attention mechanism used in Tacotron 2, duration-based models upsample the encoder outputs using per-token duration information. This can be done by simply repeating each encoder output by its duration as in FastSpeech (Ren et al., 2019), but instead we adopt a different process we call Gaussian upsampling, which is described in subsection 3.1. Note that while durations in seconds are used for loss computation, they are converted to durations in integer frames for upsampling. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For Gaussian upsampling, a duration and a range parameter must be predicted for each token. The range parameter is called thus because it controls the range of a token’s influence. The duration predictor passes the encoder output through two bi-directional LSTM layers followed by a projection layer to predict the numeric duration $\\pmb { d } \\overset { - } { = } ( d _ { 1 } , \\ldots , d _ { N } )$ for each input token. During training, these predicted durations are only used for loss computation, and the target durations are used instead in the upcoming steps2. The range parameter predictor passes the encoder output concatenated with durations through two bi-directional LSTM layers followed by a projection layer and a SoftPlus activation to predict a positive range parameter $\\sigma$ for each input token. ", + "bbox": [ + 174, + 152, + 825, + 265 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "After the encoder outputs are upsampled, a Transformer-style sinusoidal positional embedding (Vaswani et al., 2017) is concatenated. The positional embedding tracks the index of each upsampled frame within each token; if the duration values are [2, 1, 3], the indices for the positional embedding would be $[ 1 , 2 , 1 , 1 , 2 , 3 ]$ . ", + "bbox": [ + 174, + 271, + 825, + 328 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The model is trained using a combination of duration prediction loss and mel-spectrogram reconstruction loss. The duration prediction loss is the $L ^ { 2 }$ loss between predicted and target durations in seconds, and the mel-spectrogram reconstruction loss is a $L ^ { 1 } + L ^ { 2 }$ loss between the predicted and the groundtruth mel-spectrogram both before and after the post-net (following Jia et al. (2018)). ", + "bbox": [ + 174, + 333, + 825, + 390 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/77d5689fda722ad82f23fce643109631064942167e12205bbef5e39282facae5.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { d u r } } = \\frac { 1 } { N } \\| d - d ^ { * } \\| _ { 2 } ^ { 2 } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { s p e c } } = \\frac { 1 } { T K } \\displaystyle \\sum _ { t = 1 } ^ { T } \\Big ( \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } \\Big ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 246, + 396, + 750, + 492 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 GAUSSIAN UPSAMPLING ", + "text_level": 1, + "bbox": [ + 174, + 507, + 385, + 521 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Given a sequence of vectors to be upsampled $\\pmb { H } = ( h _ { 1 } , \\ldots , h _ { N } )$ , integer duration values ${ \\pmb d } =$ $( d _ { 1 } , \\ldots , d _ { N } )$ , and range parameter values ${ \\pmb \\sigma } = ( \\sigma _ { 1 } , \\ldots , \\sigma _ { N } )$ , we compute the upsampled vector sequence $U = ( \\pmb { u } _ { 1 } , \\dots , \\pmb { u } _ { T } )$ as: ", + "bbox": [ + 174, + 534, + 823, + 577 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/63bcb0ec78ed9321ff1048b68ebfe3ff03bd9e476884213da3d4517c1bc7ee3d.jpg", + "text": "$$\nc _ { i } = \\frac { d _ { i } } { 2 } + \\sum _ { j = 1 } ^ { i - 1 } d _ { j } , \\qquad w _ { t i } = \\frac { N \\left( t ; c _ { i } , \\sigma _ { i } ^ { 2 } \\right) } { \\sum _ { j = 1 } ^ { N } \\mathcal { N } \\left( t ; c _ { j } , \\sigma _ { j } ^ { 2 } \\right) } , \\qquad \\quad u _ { t } = \\sum _ { i = 1 } ^ { N } w _ { t i } h _ { i }\n$$", + "text_format": "latex", + "bbox": [ + 235, + 602, + 764, + 648 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "That is, we place a Gaussian distribution with standard deviation $\\sigma _ { i }$ at the center of the output segment corresponding to the $i$ -th input token as determined by the duration values $^ d$ , and for each frame we take a weighted sum of the encoder outputs in accordance with the values of Gaussian distributions at that frame. This is similar to the softmax-based aligner in Donahue et al. (2020), except a learned $\\pmb { \\sigma }$ rather than a fixed temperature hyperparameter is used here. ", + "bbox": [ + 173, + 662, + 823, + 733 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Compared with vanilla upsampling by repetition (as in Ren et al. (2019)), which can be seen as a case of learning a hard monotonic attention, Gaussian upsampling results in an alignment that is more akin to single-component GMM attention. Another benefit of Gaussian upsampling is that it is fully differentiable, which is critical to semi-supervised and unsupervised duration modeling (section 4) as it allows the gradients from the spectrogram losses to flow through to the duration predictor. ", + "bbox": [ + 174, + 739, + 825, + 810 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 TARGET DURATIONS ", + "text_level": 1, + "bbox": [ + 176, + 829, + 359, + 843 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Neural TTS models using duration need alignments between input tokens and output features. This can be accomplished by implementing an aligner module in the model or by using an external aligner. ", + "bbox": [ + 174, + 856, + 825, + 885 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In our work, target durations are extracted by an external, flatstart trained, speaker-dependent HMMbased aligner with a lexicon (Talkin & Wightman, 1994). However, sometimes it is difficult to train a reliable aligner model and/or extract accurate alignments due to data sparsity, poor recording conditions, or unclear pronunciations. To address this problem, we introduce semi-supervised and unsupervised duration modeling. ", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING", + "text_level": 1, + "bbox": [ + 176, + 194, + 722, + 210 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A na¨ıve approach to unsupervised duration modeling would be to simply train the model using the predicted durations (instead of the target durations) for upsampling, and use only mel-spectrogram reconstruction loss for optimization. To match the length between the predicted durations and the target mel-spectrogram frames, the predicted per-token durations can be scaled by $T / \\sum _ { i } d _ { i }$ . In addition to that, an utterance-level duration loss $\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { u } } = \\frac { 1 } { N } \\left( T - \\sum _ { i } d _ { i } \\right) ^ { 2 } } \\end{array}$ could be added to the total loss. However, experiments show that such an approach does not produce satisfying naturalness in the synthesized speech (subsection 6.3). ", + "bbox": [ + 173, + 224, + 825, + 325 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The proposed unsupervised duration modeling is illustrated in Figure 1b. We instead utilize a fine-grained VAE (FVAE) similar to Sun et al. (2020) to model the alignment between the input tokens and the target mel-spectrogram frames, and extract per-token latent features from the target mel-spectrogram based on this alignment. The token encoder output $\\pmb { H }$ is aligned to the target spectrogram $Y ^ { * }$ using an attention mechanism following Lee & Kim (2019): ", + "bbox": [ + 173, + 332, + 825, + 402 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/b10ec1e2c2611610781baea06023ce19aa543c850f920b7d0dee9134c88886a0.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { c } _ { i } = \\mathrm { A t t n } ( \\pmb { h } _ { i } , f _ { \\mathrm { s p e c } } ( \\pmb { Y } ^ { * } ) ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 410, + 407, + 586, + 425 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\boldsymbol { h } _ { i }$ is used as the query in the attention, and $f _ { \\mathrm { s p e c } }$ is a spectrogram encoder whose output per frame is used as the values in the attention. A simple dot-product attention from Luong et al. (2015) was used in this work. A latent feature $z _ { i }$ is then computed from $c _ { i }$ and $\\boldsymbol { h } _ { i }$ using a variational auto-encoder (VAE) (Kingma & Welling, 2014) with a Gaussian prior $\\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } )$ , optimized through the evidence lower bound (ELBO): ", + "bbox": [ + 173, + 430, + 825, + 500 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5435da12536f1690632bc3ae9f1381dee158dbfd852dd400e54bf24b3cac2b9f.jpg", + "text": "$$\n\\log p \\left( { Y } \\mid { H } \\right) \\geq - \\sum _ { i } D _ { \\mathrm { K L } } \\left( q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) \\parallel p \\left( \\boldsymbol { z } _ { i } \\right) \\right) + \\mathbb { E } _ { q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) } \\left[ \\log p \\left( { Y } \\mid { H } , \\boldsymbol { Z } \\right) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 214, + 505, + 784, + 539 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where the first term is the KL divergence between the prior and posterior, and the second term can be approximated by drawing samples from the posterior. ", + "bbox": [ + 173, + 542, + 825, + 571 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Because these latent features are extracted from the target spectrogram with an alignment, they are capable of carrying duration related information. At training time, the per-token duration $^ d$ is predicted from the concatenation of the token encoder output $\\pmb { H }$ and the posterior latent $z$ ; while at inference time, the prior latent is used for $z$ (either sampled from the distribution or using the distribution mode), and the internal attention mechanism of the FVAE is not used. ", + "bbox": [ + 173, + 578, + 825, + 648 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Unlike Sun et al. (2020), scheduled sampling was not utilized for factorizing latent dimensions. These latent features are only used for duration prediction, and are not used for range parameter prediction or mel-spectrogram reconstruction. We also cap the range parameters for each token to twice its predicted duration in this setup for better training stability. As in section 3, durations predicted in seconds are used for loss computation, but are converted to durations in integer frames for upsampling. ", + "bbox": [ + 174, + 654, + 825, + 739 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The overall loss used for semi-supervised and unsupervised training is thus ", + "bbox": [ + 176, + 744, + 665, + 760 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/140e9778533fa00d85f0cbf04a7f924d478140c02bd0b764d5a8058f4b902d5d.jpg", + "text": "$$\n\\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } + \\lambda _ { \\mathrm { u } } \\mathcal { L } _ { \\mathrm { u } } + \\lambda _ { \\mathrm { K L } } D _ { \\mathrm { K L } } ,\n$$", + "text_format": "latex", + "bbox": [ + 361, + 766, + 635, + 784 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $D _ { \\mathrm { K L } }$ and $\\mathcal { L } _ { \\mathrm { s p e c } }$ correspond to the first and second terms in Equation 4, respectively, and ${ \\mathcal { L } } _ { \\mathrm { d u r } }$ is only counted for examples with target duration labels (i.e. supervised examples). The last three terms are all weighted per valid token. ", + "bbox": [ + 174, + 787, + 825, + 830 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 ROBUSTNESS EVALUATION ", + "text_level": 1, + "bbox": [ + 176, + 851, + 428, + 866 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Previous work typically evaluated the robustness of TTS systems on a small set of handpicked “hard cases” (He et al., 2019; Zheng et al., 2019; Guo et al., 2019). Although such evaluation is helpful for guiding improvements, it is not reflective of the overall robustness of the system. The handpicked samples may be biased to the weaknesses of a certain system, and is prone to lead further optimization to overfit to the specific evaluation set. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this work, we evaluate the robustness of TTS systems on large evaluation sets in an automated way by leveraging existing ASR systems. We run ASR and forced alignment evaluations on the synthesized speech against the verbalized text, and report two metrics measuring over- and under-generation: ", + "bbox": [ + 176, + 138, + 823, + 180 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1. Unaligned duration ratio (UDR): The synthesized speech is forced aligned with the verbalized input text using an ASR system. Each token in the input text is aligned to a segment in the synthesized audio. Any long audio segments $> 1$ second) not aligned to any input token are typically due to over-generation from the TTS system, such as long pauses, babbling, word repetitions, or failures to stop after finishing the utterance. The total duration of such long unaligned segments divided by the total output duration is the UDR. Note that short unaligned segments are ignored. If the synthesized speech is unable to be aligned with the input text, it is considered as having a UDR of $100 \\%$ . \n2. ASR word deletion rate (WDR): This is the deletion error portion in a standard ASR word error rate (WER) evaluation. Under-generation in the synthesized speech, such as early cutoff and word skipping, is reflected by a higher WDR. ", + "bbox": [ + 212, + 191, + 825, + 351 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "As the ASR system will make mistakes, the metrics above are just an upper-bound on the actual failures of the TTS system. ", + "bbox": [ + 174, + 362, + 821, + 390 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "6 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 411, + 326, + 426 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "All models were trained on a proprietary dataset with 66 speakers with 4 different English accents (US, British, Australian, and Nigerian). The amount of data per speaker varied from merely 5 seconds to 47 hours, totaling 354 hours. ", + "bbox": [ + 174, + 443, + 823, + 484 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A preliminary experiment comparing different attention mechanisms (including monotonic, stepwise monotonic, dynamic convolution and GMM attention (GMMA)) showed that GMMA performed the best. We therefore compared our non-attentive Tacotron not only with Tacotron 2 with locationsensitive attention (LSA) which was used in the original Tacotron 2 paper but also with Tacotron 2 with GMMA. The Tacotron 2 models used reduction factor 2 and $L ^ { 1 } + L ^ { 2 }$ loss. ", + "bbox": [ + 174, + 491, + 825, + 561 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Following Shen et al. (2018), predicted features were obtained in teacher-forcing mode from a Tacotron 2 model and used to train a WaveRNN vocoder which was then used for all experiments. ", + "bbox": [ + 173, + 568, + 823, + 595 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "6.1 NATURALNESS ", + "text_level": 1, + "bbox": [ + 174, + 613, + 318, + 627 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The naturalness of the synthesized speech was evaluated through subjective listening tests, including 5-scale Mean Opinion Score (MOS) tests and side-by-side preference tests. The sentences were synthesized using 10 US English speakers (5 male / 5 female) in a round-robin fashion. The amount of training data for the evaluated speakers varied from 3 hours to 47 hours. ", + "bbox": [ + 174, + 640, + 825, + 695 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1 contains MOS results. Non-Attentive Tacotron with Gaussian upsampling matched Tacotron 2 (GMMA) in naturalness, and both were close to the groundtruth audio. A preference test between ", + "bbox": [ + 169, + 702, + 825, + 731 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/4b8e58ac6d446d602ff3d8334b74cf3d278039865d1b7f57219730137751e831.jpg", + "table_caption": [ + "Table 1: MOS with $9 5 \\%$ confidence intervals. " + ], + "table_footnote": [], + "table_body": "
ModelMOS
Tacotron 2
w/LSA4.35 ± 0.05
w/ GMMA4.37 ± 0.04
Non-Attentive Tacotron w/ Gauss. upsampling
w/ vanilla upsampling4.41 ± 0.04
4.13 ± 0.05
Ground truth4.42 ± 0.04
", + "bbox": [ + 189, + 785, + 449, + 915 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg", + "image_caption": [ + "Figure 2: Preference test result with Non-Attentive Tacotron with Gaussian upsampling compared against Tacotron 2 (GMMA). " + ], + "image_footnote": [], + "bbox": [ + 514, + 753, + 795, + 866 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Non-Attentive Tacotron and Tacotron 2 (GMMA) further confirmed this result, as shown in Figure 2. Non-Attentive Tacotron with vanilla (repeating) upsampling was rated as significantly less natural than with Gaussian upsampling. ", + "bbox": [ + 176, + 103, + 823, + 147 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The effectiveness of a learned range parameter versus a fixed temperature hyperparameter set at 10.0 as per Donahue et al. (2020) is compared using a preference test in Table 2. While there is only a slight perceived benefit in using a learned range parameter, it reduces the need to tune another dataset-dependent hyperparameter. Additionally, in multi-speaker setups it is possible that the optimal $\\sigma$ may be speaker-dependent. ", + "bbox": [ + 173, + 152, + 825, + 223 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/d00bbc13704af7d74258b800af26f713a08cb94947d00f56e960fc3c1f786605.jpg", + "table_caption": [ + "Table 2: Preference test between a learned $\\sigma$ versus a fixed $\\sigma$ set at 10.0. Pace is defined as in subsection 6.2. A negative preference value means that the learned $\\sigma$ is preferred over the fixed $\\sigma$ . " + ], + "table_footnote": [], + "table_body": "
Pace0.8×1.0×1.25×
Preference -0.017 ±0.057 -0.055±0.054 -0.017±0.055
", + "bbox": [ + 277, + 275, + 714, + 316 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.2 PACE CONTROL ", + "text_level": 1, + "bbox": [ + 174, + 339, + 321, + 353 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 3 shows WER and MOS results after modifying the utterance-wide pace by dividing the predicted durations by various factors. The WER is computed on speech synthesized on transcripts from the LibriTTS test-clean subset with the same 10 speakers in subsection 6.1, and then transcribed by an ASR model described in Park et al. (2020) with a WER of $2 . 3 \\%$ on the ground truth audio. ", + "bbox": [ + 173, + 364, + 472, + 489 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "With pace between $0 . 8 \\times - 1 . 2 5 \\times$ , the WERs were hardly impacted. The WER was significantly worse when the pace was increased to $1 . 5 \\times$ normal, partially because the ASR model used was not optimized for speech so fast. In contrast, the subjective MOS decreased rapidly when the pace was sped up or slowed down significantly. However, most of the comments from raters were simply complaining about the pace, such as “too slow to be natural” $\\mathbf { \\eta } ^ { ( 0 . 8 \\mathbf { x } ) }$ or “way too fast” $( 1 . 2 5 \\mathrm { x } )$ . ", + "bbox": [ + 174, + 497, + 472, + 650 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Non-Attentive Tacotron is also able to control the pace of the synthesized speech at a finer granularity, such as per-word or per-phoneme, while still maintain the naturalness of the synthesized speech. Figure 3 shows examples of controlling the pace for specific words in a sentence. ", + "bbox": [ + 173, + 657, + 472, + 753 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg", + "image_caption": [ + "Figure 3: Single word pace control with sentence “I’m so saddened about the devastation in Big Basin.” The top spectrogram is with regular pace. The rest slow down the words “saddened”, “devastation”, and “Big Basin” respectively to $0 . 6 7 \\times$ the regular pace by scaling the predicted duration by $1 . 5 \\times$ . " + ], + "image_footnote": [], + "bbox": [ + 490, + 386, + 818, + 640 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/cbfba8b6504066babc85f97147c918ff06051fad774bb865095488b60dcedc0b.jpg", + "table_caption": [ + "Table 3: Performance of controlling the utterance-wide pace of the synthesized speech. " + ], + "table_footnote": [], + "table_body": "
Pace0.67×0.8×0.9×1.0×1.11×1.25×1.5×
WER3.3%2.8%2.6%2.6%2.5%2.7%6.1%
MOS3.28 ± 0.063.87 ± 0.054.24 ± 0.044.41 ± 0.044.28 ± 0.043.79 ± 0.063.18± 0.06
", + "bbox": [ + 174, + 790, + 821, + 844 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.3 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING", + "text_level": 1, + "bbox": [ + 176, + 871, + 645, + 883 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Ten different US English speakers (5 male / 5 female) each with about 4 hours of training data were used for evaluating the performance of the unsupervised and semi-supervised duration modeling. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg", + "image_caption": [ + "Figure 4: Alignment on text “What time do I need to show up to my sky diving lesson?” from the unsupervised model. The predicted alignments are from Gaussian upsampling. " + ], + "image_footnote": [], + "bbox": [ + 176, + 99, + 761, + 242 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/6176ec827b7d0697c5ef83205c089f8232c9bfbfe329262cbae851cf39b3df79.jpg", + "table_caption": [ + "Table 4: Performance of unsupervised and semi-supervised duration modeling. Zero vectors are used as FVAE latents for inference. MAE denotes the mean absolute error. " + ], + "table_footnote": [], + "table_body": "
TrainingModelDur. MAE (ms)MOS
Unsupervisedw/o FVAE124.42.91± 0.09
w/ FVAE41.34.31 ± 0.04
Semi-supervisedw/o FVAE21.54.19 ± 0.05
Supervisedw/FVAE18.34.35 ± 0.04
Non-Attentive Tacotron15.44.37 ± 0.04
Tacotron2 w/ GMMA-4.35 ± 0.04
Ground truth=4.52 ± 0.03
", + "bbox": [ + 254, + 366, + 740, + 491 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The duration labels for these 10 speakers (i.e. about $11 \\%$ of the training data) were withheld for the semi-supervised models, and all duration labels were withheld for the unsupervised models. ", + "bbox": [ + 174, + 546, + 823, + 575 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 4 shows predicted alignment after Gaussian upsampling and the internal alignment from the attention module in the FVAE compared with the alignment computed from the target durations, for the unsupervised model. Despite not having access to any target durations, both the FVAE and duration predictor were able to produce an alignment close to that computed from the target durations. ", + "bbox": [ + 174, + 582, + 825, + 637 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "As shown in Table 4, with the use of the FVAE, the naturalness of both semi-supervised and unsupervised models were very close to that of the supervised models, even though duration prediction errors were higher. The autoregressive decoder trained with teacher forcing may have been powerful enough to correct the duration prediction errors to some degree. However, the naturalness degraded significantly without the use of the FVAE. Although the duration error from the semi-supervised model without FVAE was lower than that from the unsupervised model with FVAE, the former was significantly less natural than the latter. This may be due to a lower consistency between supervised and unsupervised speakers without FVAE. ", + "bbox": [ + 174, + 645, + 825, + 756 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Although these models were close to the supervised model in MOS, manual investigation found that samples from both semi-supervised models and unsupervised models had a small chance of containing slight errors that do not occur in the supervised model, such as unclear pronunciations, phoneme repetitions, or extra pauses. However, they are significantly less severe than similar errors from Tacotron 2, mostly impacting just one or a few phonemes. These errors are further confirmed in the large scale robustness evaluation (subsection 6.4). ", + "bbox": [ + 174, + 763, + 825, + 847 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The utterance-wide or fine-grained pace control (subsection 6.2) can be applied to the semi-supervised and unsupervised models as well. However, as the alignments are not as accurate, the synthesized speech with fine-grained pace control are not as natural as from the supervised model. The duration may be extended by simply inserting more silence, and the extended portion may include phoneme repetitions or unclear pronunciations. ", + "bbox": [ + 176, + 854, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/ff0ab9aa5d6d2e0ff69056bfa30b8b097798bd422544d0a80f135e4770ae02b1.jpg", + "table_caption": [ + "Table 5: Robustness measured by UDR and WDR on two large evaluation sets. The evaluation speakers are unsupervised ones in the semi-supervised and unsupervised models. " + ], + "table_footnote": [], + "table_body": "
SystemLibriTTSweb-long
UDR (%)WDR (%)UDR (%)WDR (%)
Tacotron 2
w/LSA16.960.446.044.4
w/ GMMA3.8120.16.1571.3
Non-Attentive Tacotron
Supervised0.0050.10.0111.1
Semi-supervised0.2660.90.6953.5
Unsupervised0.2230.70.5273.2
", + "bbox": [ + 258, + 140, + 735, + 277 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6.4 ROBUSTNESS ", + "text_level": 1, + "bbox": [ + 174, + 314, + 308, + 327 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We evaluated the robustness of the neural TTS models by measuring UDR and WDR on two large evaluation sets: LibriTTS: 354K sentences from all train subsets from the LibriTTS corpus (Zen et al., 2019); and web-long: 100K long sentences mined from the web, which included a small amount of irregular text such as programming code. The median text lengths of the two sets were 74 and 224 characters, respectively. The input was synthesized using the same 10 speakers in subsection 6.3 in a round-robin fashion. All model outputs were capped at 120 seconds. ", + "bbox": [ + 174, + 343, + 825, + 428 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We used the ASR model trained on the LibriSpeech (Panayotov et al., 2015) and LibriLight (Kahn et al., 2020) corpora from Park et al. (2020) for measuring WDR, and a confidence islands-based forced alignment model (Chiu et al., 2018) for measuring UDR. ", + "bbox": [ + 176, + 434, + 825, + 477 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 5 shows the robustness metrics for Tacotron 2 and Non-Attentive Tacotron. Tacotron 2 (LSA) suffered from severe over-generation as measured by UDR, especially on long inputs. Manual investigation uncovered that they were typically long babbling or long silence, often at the end (failure to stop). It also had a high level of under-generation as measured by WDR, typically due to early cutoff. Tacotron 2 (GMMA) performed almost as well as the supervised Non-Attentive Tacotron in WDR because of its soft monotonic nature, which made end-of-sentence prediction easier. However, it still had significantly higher level of over-generation compared to Non-Attentive Tacotron, even when unsupervised or semi-supervised duration modeling is used for the latter. The robustness of semi-supervised and unsupervised Non-Attentive Tacotron is significantly worse than the supervised one. Manual investigation uncovered that the typical failure pattern is that part of the spectrogram is not correctly synthesized (often as silence, but sometimes as babbling), despite that the duration prediction seems reasonable. Such failure pattern contributes to both UDR and WDR. This indicates further improvements to be made. Even then, the semi-supervised and unsupervised Non-Attentive Tacotron still performs significantly better on over-generation compared to Tacotron 2. ", + "bbox": [ + 174, + 483, + 825, + 678 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In practice, we also observed that Tacotron 2 required significantly more care in data preprocessing to achieve this level of robustness, including consistent trimming of leading and trailing silences and filtering out utterances with long pauses. On the other hand, Non-Attentive Tacotron is significantly less sensitive to the data preprocessing steps. ", + "bbox": [ + 176, + 685, + 825, + 741 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 773, + 328, + 790 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "This paper presented Non-Attentive Tacotron, showing a significant improvement in robustness compared to Tacotron 2 as measured by unaligned duration ratio and word deletion rate, while also slightly outperforming it in naturalness. This was achieved by replacing the attention mechanism in Tacotron 2 with an explicit duration predictor and Gaussian upsampling. We demonstrated the ability to control the pacing of the entire utterance as well as individual words using the duration predictor. We also described a method of modeling duration in a semi-supervised or unsupervised manner using Non-Attentive Tacotron when accurate target duration are scarce or unavailable by using a fine-grained variational auto-encoder, with results almost as good as supervised training. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 287, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sercan O Arik, Mike Chrzanowski, Adam Coates, Gregory Diamos, Andrew Gibiansky, Yongguo Kang, Xian Li, John Miller, Andrew Ng, Jonathan Raiman, Shubho Sengupta, and Mohammad Shoeybi. Deep Voice: Real-Time Neural Text-to-Speech. In Proc. ICML, pp. 195–204, 2017. ", + "bbox": [ + 178, + 126, + 823, + 169 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly Learning to Align and Translate. In Proc. ICLR, 2015. ", + "bbox": [ + 171, + 179, + 823, + 208 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Eric Battenberg, RJ Skerry-Ryan, Soroosh Mariooryad, Daisy Stanton, David Kao, Matt Shannon, and Tom Bagby. Location-Relative Attention Mechanisms For Robust Long-Form Speech Synthesis. In Proc. ICASSP, 2020. ", + "bbox": [ + 174, + 217, + 823, + 260 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Stanislav Beliaev, Yurii Rebryk, and Boris Ginsburg. TalkNet: Fully-Convolutional NonAutoregressive Speech Synthesis Model. arXiv preprint arXiv:2005.05514, 2020. ", + "bbox": [ + 173, + 268, + 823, + 299 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fadi Biadsy, Ron J. Weiss, Pedro J. Moreno, Dimitri Kanvesky, and Ye. Jia. Parrotron: An End-to-End Speech-to-Speech Conversion Model and its Applications Hearing-Impaired Speech and Speech Separation. In Proc. Interspeech, pp. 4115–4119, 2019. ", + "bbox": [ + 174, + 309, + 823, + 352 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "W. Chan, N. Jaitly, Q. Le, and O. Vinyals. Listen, Attend and Spell: A Neural Network for Large Vocabulary Conversational Speech Recognition. In Proc. ICASSP, pp. 4960–4964, 2016. ", + "bbox": [ + 174, + 361, + 823, + 391 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nanxin Chen, Yu Zhang, Heiga Zen, Ron J Weiss, Mohammad Norouzi, and William Chan. WaveGrad: Estimating Gradients for Waveform Generation. arXiv preprint arXiv:2009.00713, 2020. ", + "bbox": [ + 173, + 398, + 825, + 429 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chung-Cheng Chiu, Anshuman Tripathi, Katherine Chou, Chris Co, Navdeep Jaitly, Diana Jaunzeikare, Anjuli Kannan, Patrick Nguyen, Hasim Sak, Ananth Sankar, Justin Tansuwan, Nathan Wan, Yonghui Wu, and Xuedong Zhang. Speech Recognition for Medical Conversations. In Proc. Interspeech, pp. 2972–2976, 2018. ", + "bbox": [ + 174, + 438, + 825, + 494 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jan K Chorowski, Dzmitry Bahdanau, Dmitriy Serdyuk, Kyunghyun Cho, and Yoshua Bengio. Attention-based models for speech recognition. In Proc. NeurIPS, 2015. ", + "bbox": [ + 169, + 505, + 825, + 534 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Shaojin Ding, Ye Jia, Ke Hu, and Quan Wang. Textual Echo Cancellation. arXiv preprint arXiv:2008.06006, 2020. ", + "bbox": [ + 171, + 542, + 825, + 571 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeff Donahue, Sander Dieleman, Mikołaj Binkowski, Erich Elsen, and Karen Simonyan. End-to-End ´ Adversarial Text-to-Speech. arXiv preprint arXiv:2006.03575, 2020. ", + "bbox": [ + 174, + 582, + 825, + 612 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Andrew Gibiansky, Sercan Arik, Gregory Diamos, John Miller, Kainan Peng, Wei Ping, Jonathan Raiman, and Yanqi Zhou. Deep voice 2: Multi-speaker neural text-to-speech. In Advances in neural information processing systems, pp. 2962–2970, 2017. ", + "bbox": [ + 173, + 621, + 823, + 664 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Graves. Generating Sequences with Recurrent Neural Networks. arXiv preprint arXiv:1308.0850, 2013. ", + "bbox": [ + 173, + 674, + 825, + 702 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiatao Gu, James Bradbury, Caiming Xiong, Victor OK Li, and Richard Socher. Non-autoregressive neural machine translation. arXiv preprint arXiv:1711.02281, 2017. ", + "bbox": [ + 173, + 712, + 825, + 742 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Haohan Guo, Frank K Soong, Lei He, and Lei Xie. A New GAN-based End-to-End TTS Training Algorithm. In Proc. Interspeech, pp. 1288–1292, 2019. ", + "bbox": [ + 169, + 751, + 825, + 781 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mutian He, Yan Deng, and Lei He. Robust Sequence-to-Sequence Acoustic Modeling with Stepwise Monotonic Attention for Neural TTS. In Proc. Interspeech, pp. 1293–1297, 2019. ", + "bbox": [ + 169, + 790, + 823, + 819 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ye Jia, Yu Zhang, Ron J. Weiss, Quan Wang, Jonathan Shen, Fei Ren, Zhifeng Chen, Patrick Nguyen, Ruoming Pang, Ignacio Lopez-Moreno, and Yonghui Wu. Transfer Learning from Speaker Verification to Multispeaker Text-To-Speech Synthesis. In Proc. NeurIPS, 2018. ", + "bbox": [ + 176, + 829, + 823, + 872 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ye Jia, Ron J Weiss, Fadi Biadsy, Wolfgang Macherey, Melvin Johnson, Zhifeng Chen, and Yonghui Wu. Direct Speech-to-Speech Translation with a Sequence-to-Sequence Model. In Proc. Interspeech, pp. 1123–1127, 2019. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jacob Kahn, Morgane Riviere, Weiyi Zheng, Evgeny Kharitonov, Qiantong Xu, Pierre-Emmanuel \\` Mazare, Julien Karadayi, Vitaliy Liptchinsky, Ronan Collobert, Christian Fuegen, Tatiana Likhoma- ´ nenko, Gabriel Synnaeve, Armand Joulin, Abdelrahman Mohamed, and Emmanuel Dupoux. Librilight: A Benchmark for ASR with Limited or No Supervision. In Proc. ICASSP, pp. 7669–7673, 2020. ", + "bbox": [ + 173, + 103, + 826, + 172 + ], + "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. In Proc. ICML, pp. 2410–2419, 2018. ", + "bbox": [ + 179, + 181, + 823, + 224 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tom Kenter, Vincent Wan, Chun-An Chan, Rob Clark, and Jakub Vit. CHiVE: Varying Prosody in Speech Synthesis with a Linguistically Driven Dynamic Hierarchical Conditional Variational Network. In Proc. ICML, pp. 3331–3340, 2019. ", + "bbox": [ + 176, + 232, + 821, + 275 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proc. ICLR, 2014. ", + "bbox": [ + 173, + 282, + 795, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kundan Kumar, Rithesh Kumar, Thibault de Boissiere, Lucas Gestin, Wei Zhen Teoh, Jose Sotelo, Alexandre de Brebisson, Yoshua Bengio, and Aaron Courville. MelGAN: Generative Adversarial Networks for Conditional Waveform Synthesis. In Proc. NeurIPS, 2019. ", + "bbox": [ + 176, + 306, + 821, + 348 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Younggun Lee and Taesu Kim. Robust and fine-grained prosody control of end-to-end speech synthesis. In Proc. ICASSP, pp. 5911–5915, 2019. ", + "bbox": [ + 176, + 356, + 821, + 386 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Naihan Li, Shujie Liu, Yanqing Liu, Sheng Zhao, and Ming Liu. Neural Speech Synthesis with Transformer Network. In Proc. AAAI, volume 33, pp. 6706–6713, 2019. ", + "bbox": [ + 173, + 392, + 823, + 422 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dan Lim, Won Jang, Hyeyeong Park, Bongwan Kim, and Jesam Yoon. JDI-T: Jointly Trained Duration Informed Transformer for Text-To-Speech without Explicit Alignment. arXiv preprint arXiv:2005.07799, 2020. ", + "bbox": [ + 176, + 430, + 823, + 473 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Minh-Thang Luong, Hieu Pham, and Christopher D Manning. Effective approaches to attention-based neural machine translation. arXiv preprint arXiv:1508.04025, 2015. ", + "bbox": [ + 173, + 481, + 825, + 510 + ], + "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": [ + 174, + 517, + 823, + 560 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Vassil Panayotov, Guoguo Chen, Daniel Povey, and Sanjeev Khudanpur. Librispeech: An ASR Corpus Based on Public Domain Audio Books. In Proc. ICASSP, pp. 5206–5210, 2015. ", + "bbox": [ + 173, + 568, + 823, + 597 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daniel S Park, Yu Zhang, Ye Jia, Wei Han, Chung-Cheng Chiu, Bo Li, Yonghui Wu, and Quoc V Le. Improved Noisy Student Training for Automatic Speech Recognition. In Proc. Interspeech, 2020. to appear. ", + "bbox": [ + 174, + 604, + 825, + 647 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wei Ping, Kainan Peng, Andrew Gibiansky, Sercan O Arik, Ajay Kannan, Sharan Narang, Jonathan Raiman, and John Miller. Deep Voice 3: Scaling text-to-speech with convolutional sequence learning. In Proc. ICLR, 2018. ", + "bbox": [ + 176, + 655, + 823, + 698 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ryan Prenger, Rafael Valle, and Bryan Catanzaro. WaveGlow: A Flow-based Generative Network for Speech Synthesis. In Proc. ICASSP, 2019. ", + "bbox": [ + 169, + 705, + 825, + 734 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yi Ren, Yangjun Ruan, Xu Tan, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech: Fast, Robust and Controllable Text to Speech. In Proc. NeurIPS, 2019. ", + "bbox": [ + 173, + 742, + 823, + 772 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yi Ren, Chenxu Hu, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech 2: Fast and High-Quality End-to-End Text-to-Speech. arXiv preprint arXiv:2006.04558, 2020. ", + "bbox": [ + 171, + 780, + 823, + 809 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonathan Shen, Ruoming Pang, Ron J. Weiss, Mike Schuster, Navdeep Jaitly, Zongheng Yang, Zhifeng Chen, Yu Zhang, Yuxuan Wang, RJ Skerrv-Ryan, Rif A. Saurous, Yannis Agiomyrgiannakis, and Yonghui Wu. Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions. In Proc. ICASSP, pp. 4779–4783, 2018. ", + "bbox": [ + 174, + 818, + 825, + 872 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "RJ Skerry-Ryan, Eric Battenberg, Ying Xiao, Yuxuan Wang, Daisy Stanton, Joel Shor, Ron Weiss, Rob Clark, and Rif A Saurous. Towards End-to-End Prosody Transfer for Expressive Speech Synthesis with Tacotron. In Proc. ICML, pp. 4700–4709, 2018. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jose Sotelo, Soroush Mehri, Kundan Kumar, Joao Felipe Santos, Kyle Kastner, Aaron C. Courville, and Yoshua Bengio. Char2Wav: End-to-End speech synthesis. In Proc. ICLR workshop, 2017. ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Guangzhi Sun, Yu Zhang, Ron J Weiss, Yuan Cao, Heiga Zen, and Yonghui Wu. Fully-Hierarchical Fine-Grained Prosody Modeling for Interpretable Speech Synthesis. In Proc. ICASSP, pp. 6264– 6268, 2020. ", + "bbox": [ + 176, + 140, + 823, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "David Talkin and Colin W Wightman. The aligner: Text to speech alignment using markov models and a pronunciation dictionary. In The Second ESCA/IEEE Workshop on Speech Synthesis, 1994. ", + "bbox": [ + 171, + 193, + 825, + 222 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention Is All You Need. In Proc. NIPS, 2017. ", + "bbox": [ + 173, + 229, + 825, + 258 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly, Zongheng Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, Q. Le, Y. Agiomyrgiannakis, R. Clark, and R. Saurous. Tacotron: Towards End-to-End Speech Synthesis. In Proc. Interspeech, pp. 4006– 4010, 2017. ", + "bbox": [ + 173, + 267, + 826, + 324 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ronald J. Williams and David Zipser. A Learning Algorithm for Continually Running Fully Recurrent Neural Networks. Neural Computation, 1(2):270–280, 1989. ", + "bbox": [ + 171, + 333, + 823, + 363 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chengzhu Yu, Heng Lu, Na Hu, Meng Yu, Chao Weng, Kun Xu, Peng Liu, Deyi Tuo, Shiyin Kang, Guangzhi Lei, Dan Su, and Dong Yu. DurIAN: Duration informed attention network for multimodal synthesis. arXiv:1909.01700, 2019. ", + "bbox": [ + 174, + 371, + 823, + 414 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "H. Zen, K. Tokuda, and A. Black. Statistical Parametric Speech Synthesis. Speech Communication, 51(11):1039–1064, 2009. ", + "bbox": [ + 176, + 422, + 825, + 452 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Heiga Zen, Andrew Senior, and Mike Schuster. Statistical Parametric Speech Synthesis Using Deep Neural Networks. In Proc. ICASSP, pp. 7962–7966, 2013. ", + "bbox": [ + 173, + 460, + 825, + 489 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Heiga Zen, Viet Dang, Rob Clark, Yu Zhang, Ron J Weiss, Ye Jia, Zhifeng Chen, and Yonghui Wu. LibriTTS: A Corpus Derived from LibriSpeech for Text-to-Speech. In Proc. Interspeech, pp. 1526–1530, 2019. ", + "bbox": [ + 173, + 497, + 825, + 541 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Zhen Zeng, Jianzong Wang, Ning Cheng, Tian Xia, and Jing Xiao. AlignTTS: Efficient Feed-Forward Text-to-Speech System without Explicit Alignment. In Proc. ICASSP, pp. 6714–6718, 2020. ", + "bbox": [ + 173, + 549, + 823, + 579 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jing-Xuan Zhang, Zhen-Hua Ling, and Li-Rong Dai. Forward attention in sequence-to-sequence acoustic modeling for speech synthesis. In Proc. ICASSP, pp. 4789–4793, 2018. ", + "bbox": [ + 173, + 587, + 821, + 617 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Zewang Zhang, Qiao Tian, Heng Lu, Ling-Hui Chen, and Shan Liu. Adadurian: Few-shot adaptation for neural text-to-speech with durian. arXiv preprint arXiv:2005.05642, 2020. ", + "bbox": [ + 173, + 626, + 823, + 655 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yibin Zheng, Jianhua Tao, Wen. Zhengqi, and Jiangyan Yi. Forward–backward decoding sequence for regularizing end-to-end tts. IEEE/ACM Trans. Audio Speech & Lang. Process., 27(12):2067–2079, 2019. ", + "bbox": [ + 176, + 662, + 823, + 705 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A MODEL PARAMETERS ", + "bbox": [ + 176, + 103, + 393, + 117 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/c6130592affe905937e350dff836f4094bc6bf9dad7472a16b4b7d624e43fbdb.jpg", + "table_caption": [ + "Table 6: Model parameters. " + ], + "table_footnote": [], + "table_body": "
CommonTraining modeSynchronous 32
Batch size (per replica) Replicas Parameter init L² regularization Learning rate Learning rate scheduleXavier 1 ×10-6 0.001
Inputs and TargetsOptimizer LSTM zone-out prob LSTM cell abs value cap Sampling rate (Hz) Normalize waveform Pre-emphasis Frame size (ms) Frame hop (ms)decay half every 50K steps. Adam(0.9,0.999,1 × 10-6) 0.1 10.0 24,000 No No 50
EncoderMel channels K Mel frequency lower bound (Hz) Mel frequency upper bound (Hz)128 20 12,000
FVAE
Yes
512×2
5×1
512 64
Mel spectrogram dynamic range compressionlog(x +0.001)
Token embedding dim
Speaker embedding dim
Conv kernel
Conv dim[512, 512, 512]
Conv activation[None,None,None]
Conv batch norm decay0.999
Bi-LSTM dim
Segment encoder conv kernel3×1
Segment encoder conv dim[512,512,512]
Segment encoder Bi-LSTM dim256×2
Layer norm attention inputs
Latent dim8 projected to 16
Duration PredictorBi-LSTM dim512×2
Projection activationNone
Xdur supervised2.0
Xdur semi-supervised100.0
100.0
Au semi-supervised1×10-3
XKL semi-supervised
Xu unsupervised1.0
Range Parameter Predictor入KL unsupervised1 ×10-4
Bi-LSTM dim512×2
Positional EmbeddingProjection activationSoftPlus
Embedding dim32
Timestep denominator10.000
Decoder[256,256]
Pre-net dim supervised
Pre-net dim semi/unsupervised[128,128]
Pre-net activation[ReLU,ReLU]
[0.5,0.5]
Pre-net dropout prob
LSTM dim^1,024
LSTM inituniform(0.1)
Projection inituniform(0.1)
Post-net conv kernel5×1
Post-net conv dim
[512,512,512,512,128]
Post-net conv activation
[tanh,tanh,tanh,tanh,None]
Post-net conv init
", + "bbox": [ + 176, + 154, + 825, + 900 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B WER BREAKDOWNS IN THE ROBUSTNESS EVALUATION ", + "text_level": 1, + "bbox": [ + 173, + 103, + 666, + 118 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/17cbaf3bc0c0241f4b4c555eff7c23510fbae1b714bc74220e5117554de38d48.jpg", + "table_caption": [ + "Table 7: WER breakdowns in the robustness evaluation. Deletion rate (del) is the WDR in Table 5. " + ], + "table_footnote": [], + "table_body": "
SystemLibriTTSweb-long
WERdelinssubWERdelinssub
Tacotron 2
w/LSA1.80.40.31.113.04.42.06.7
w/ GMMA1.70.10.11.510.11.31.37.4
Non-Attentive Tacotron
Supervised1.40.10.11.29.31.11.36.9
Semi-supervised3.30.90.22.214.13.51.69.0
Unsupervised3.50.70.32.615.33.22.010.1
", + "bbox": [ + 243, + 164, + 750, + 301 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C CLASSIFICATION OF SOME TTS MODELS ", + "text_level": 1, + "bbox": [ + 173, + 327, + 547, + 344 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/650fa3d110c757c51bd5816919576387ca5e97e7e47e9826639887382164ddce.jpg", + "table_caption": [ + "Table 8: Classification of some TTS models into autoregressive (AR)/feed-forward (FF), RNN/Transformer/fully convolutional, and attention-based/duration-based. " + ], + "table_footnote": [], + "table_body": "
ModelYearARFFRNNTransformerFull ConvAttentionDuration
Deep Voice2017
Char2Wav2017
Tacotron2017
Deep Voice 22017
Tacotron 22018
Deep Voice 32018
Transformer TTS2019
CHiVE2019
DurIAN2019
Fastspeech2019
TalkNet2020
AlignTTS2020
JDI-T2020
Non-Attentive Tacotron2020
", + "bbox": [ + 174, + 404, + 820, + 608 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/CGFN_nV1ql/CGFN_nV1ql_middle.json b/parse/train/CGFN_nV1ql/CGFN_nV1ql_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..24d1541759c392eb6af1410d38c866b65c18bdbd --- /dev/null +++ b/parse/train/CGFN_nV1ql/CGFN_nV1ql_middle.json @@ -0,0 +1,32329 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 484, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 429, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 429, + 97 + ], + "score": 1.0, + "content": "NON-ATTENTIVE TACOTRON: ROBUST AND", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 424, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 424, + 117 + ], + "score": 1.0, + "content": "CONTROLLABLE NEURAL TTS SYNTHESIS", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 119, + 485, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 485, + 137 + ], + "score": 1.0, + "content": "INCLUDING UNSUPERVISED DURATION MODELING", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 155, + 244, + 177 + ], + "lines": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 166, + 245, + 178 + ], + "spans": [ + { + "bbox": [ + 111, + 166, + 245, + 178 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 278, + 206, + 333, + 218 + ], + "lines": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "spans": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 238, + 469, + 370 + ], + "lines": [ + { + "bbox": [ + 141, + 238, + 469, + 251 + ], + "spans": [ + { + "bbox": [ + 141, + 238, + 469, + 251 + ], + "score": 1.0, + "content": "This paper presents Non-Attentive Tacotron based on the Tacotron 2 text-to-speech", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 249, + 469, + 262 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 262 + ], + "score": 1.0, + "content": "model, replacing the attention mechanism with an explicit duration predictor. This", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 261, + 469, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 469, + 272 + ], + "score": 1.0, + "content": "improves robustness significantly as measured by unaligned duration ratio and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 271, + 469, + 284 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 284 + ], + "score": 1.0, + "content": "word deletion rate, two metrics introduced in this paper for large-scale robustness", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 282, + 469, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 469, + 295 + ], + "score": 1.0, + "content": "evaluation using a pre-trained speech recognition model. With the use of Gaussian", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 293, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 470, + 306 + ], + "score": 1.0, + "content": "upsampling, Non-Attentive Tacotron achieves a 5-scale mean opinion score for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "score": 1.0, + "content": "naturalness of 4.41, slightly outperforming Tacotron 2. The duration predictor", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 315, + 470, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 470, + 327 + ], + "score": 1.0, + "content": "enables both utterance-wide and per-phoneme control of duration at inference time.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 326, + 470, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 326, + 470, + 339 + ], + "score": 1.0, + "content": "When accurate target durations are scarce or unavailable in the training data, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 338, + 470, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 470, + 349 + ], + "score": 1.0, + "content": "propose a method using a fine-grained variational auto-encoder to train the duration", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 348, + 470, + 361 + ], + "spans": [ + { + "bbox": [ + 141, + 348, + 470, + 361 + ], + "score": 1.0, + "content": "predictor in a semi-supervised or unsupervised manner, with results almost as good", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 360, + 234, + 372 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 234, + 372 + ], + "score": 1.0, + "content": "as supervised training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 408, + 206, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 208, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 208, + 424 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "Autoregressive neural text-to-speech (TTS) models using an attention mechanism are known to be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 449, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 464 + ], + "score": 1.0, + "content": "able to generate speech with naturalness on par with recorded human speech. However, these types", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "of models are known to be less robust than traditional approaches (He et al., 2019; Zheng et al., 2019;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "Guo et al., 2019; Battenberg et al., 2020). These autoregressive networks that predict the output one", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "frame at a time are trained to decide whether to stop at each frame, and thus a misprediction on a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "single frame can result in serious failures such as early cut-off. Meanwhile, there are little to no hard", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 504, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 519 + ], + "score": 1.0, + "content": "constraints imposed on the attention mechanism to prevent problems such as repetition, skipping, long", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "pause or babbling. To exacerbate the issue, these failures are rare and are thus often not represented in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 527, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 507, + 540 + ], + "score": 1.0, + "content": "small test sets, such as those used in subjective listening tests. However, in customer-facing products,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 538, + 470, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 470, + 551 + ], + "score": 1.0, + "content": "even a one-in-a-million chance of such problems can severely degrade the user experience.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "There have been various works aimed at improving the robustness of autoregressive attention-based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "neural TTS models. Some of them investigated reducing the effect of the exposure bias on the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "autoregressive decoder, using adversarial training (Guo et al., 2019) or adding regularization to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "encourage the forward and backward attention to be consistent (Zheng et al., 2019). Others utilized", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "or designed alternative attention mechanisms, such as Gaussian mixture model (GMM) attention", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "(Graves, 2013; Skerry-Ryan et al., 2018), forward attention (Zhang et al., 2018), stepwise monotonic", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "score": 1.0, + "content": "attention (He et al., 2019), or dynamic convolution attention (Battenberg et al., 2020). Nonetheless,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 632, + 372, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 372, + 644 + ], + "score": 1.0, + "content": "these approaches do not fundamentally solve the robustness issue.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 108, + 649, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "Recently, there has been a surge in the use of non-autoregressive models for TTS. Rather than", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "predicting whether to stop on each frame, non-autoregressive models need to determine the output", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "length ahead of time, and one way to do so is with an explicit prediction of the duration for each", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "input token. A side benefit of such a duration predictor is that it is significantly more resilient to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 692, + 279, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 279, + 705 + ], + "score": 1.0, + "content": "failures afflicting the attention mechanism.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "However, one-to-many regression problems like TTS can benefit from an autoregressive decoder as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "the previous mel-spectrogram frames provides context to disambiguate between multi-modal outputs.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 484, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 429, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 429, + 97 + ], + "score": 1.0, + "content": "NON-ATTENTIVE TACOTRON: ROBUST AND", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 424, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 424, + 117 + ], + "score": 1.0, + "content": "CONTROLLABLE NEURAL TTS SYNTHESIS", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 119, + 485, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 485, + 137 + ], + "score": 1.0, + "content": "INCLUDING UNSUPERVISED DURATION MODELING", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 155, + 244, + 177 + ], + "lines": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 166, + 245, + 178 + ], + "spans": [ + { + "bbox": [ + 111, + 166, + 245, + 178 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 111, + 156, + 245, + 178 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 206, + 333, + 218 + ], + "lines": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "spans": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 238, + 469, + 370 + ], + "lines": [ + { + "bbox": [ + 141, + 238, + 469, + 251 + ], + "spans": [ + { + "bbox": [ + 141, + 238, + 469, + 251 + ], + "score": 1.0, + "content": "This paper presents Non-Attentive Tacotron based on the Tacotron 2 text-to-speech", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 249, + 469, + 262 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 262 + ], + "score": 1.0, + "content": "model, replacing the attention mechanism with an explicit duration predictor. This", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 261, + 469, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 469, + 272 + ], + "score": 1.0, + "content": "improves robustness significantly as measured by unaligned duration ratio and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 271, + 469, + 284 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 284 + ], + "score": 1.0, + "content": "word deletion rate, two metrics introduced in this paper for large-scale robustness", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 282, + 469, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 469, + 295 + ], + "score": 1.0, + "content": "evaluation using a pre-trained speech recognition model. With the use of Gaussian", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 293, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 470, + 306 + ], + "score": 1.0, + "content": "upsampling, Non-Attentive Tacotron achieves a 5-scale mean opinion score for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "score": 1.0, + "content": "naturalness of 4.41, slightly outperforming Tacotron 2. The duration predictor", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 315, + 470, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 470, + 327 + ], + "score": 1.0, + "content": "enables both utterance-wide and per-phoneme control of duration at inference time.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 326, + 470, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 326, + 470, + 339 + ], + "score": 1.0, + "content": "When accurate target durations are scarce or unavailable in the training data, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 338, + 470, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 470, + 349 + ], + "score": 1.0, + "content": "propose a method using a fine-grained variational auto-encoder to train the duration", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 348, + 470, + 361 + ], + "spans": [ + { + "bbox": [ + 141, + 348, + 470, + 361 + ], + "score": 1.0, + "content": "predictor in a semi-supervised or unsupervised manner, with results almost as good", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 360, + 234, + 372 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 234, + 372 + ], + "score": 1.0, + "content": "as supervised training.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5, + "bbox_fs": [ + 141, + 238, + 470, + 372 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 408, + 206, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 208, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 208, + 424 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "Autoregressive neural text-to-speech (TTS) models using an attention mechanism are known to be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 449, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 464 + ], + "score": 1.0, + "content": "able to generate speech with naturalness on par with recorded human speech. However, these types", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "of models are known to be less robust than traditional approaches (He et al., 2019; Zheng et al., 2019;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 486 + ], + "score": 1.0, + "content": "Guo et al., 2019; Battenberg et al., 2020). These autoregressive networks that predict the output one", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "frame at a time are trained to decide whether to stop at each frame, and thus a misprediction on a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "single frame can result in serious failures such as early cut-off. Meanwhile, there are little to no hard", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 504, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 519 + ], + "score": 1.0, + "content": "constraints imposed on the attention mechanism to prevent problems such as repetition, skipping, long", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "pause or babbling. To exacerbate the issue, these failures are rare and are thus often not represented in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 527, + 507, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 507, + 540 + ], + "score": 1.0, + "content": "small test sets, such as those used in subjective listening tests. However, in customer-facing products,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 538, + 470, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 470, + 551 + ], + "score": 1.0, + "content": "even a one-in-a-million chance of such problems can severely degrade the user experience.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 440, + 507, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "There have been various works aimed at improving the robustness of autoregressive attention-based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "neural TTS models. Some of them investigated reducing the effect of the exposure bias on the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "autoregressive decoder, using adversarial training (Guo et al., 2019) or adding regularization to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "encourage the forward and backward attention to be consistent (Zheng et al., 2019). Others utilized", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "or designed alternative attention mechanisms, such as Gaussian mixture model (GMM) attention", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "(Graves, 2013; Skerry-Ryan et al., 2018), forward attention (Zhang et al., 2018), stepwise monotonic", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 507, + 634 + ], + "score": 1.0, + "content": "attention (He et al., 2019), or dynamic convolution attention (Battenberg et al., 2020). Nonetheless,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 632, + 372, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 372, + 644 + ], + "score": 1.0, + "content": "these approaches do not fundamentally solve the robustness issue.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 555, + 507, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 649, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "Recently, there has been a surge in the use of non-autoregressive models for TTS. Rather than", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "predicting whether to stop on each frame, non-autoregressive models need to determine the output", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "length ahead of time, and one way to do so is with an explicit prediction of the duration for each", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "input token. A side benefit of such a duration predictor is that it is significantly more resilient to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 692, + 279, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 279, + 705 + ], + "score": 1.0, + "content": "failures afflicting the attention mechanism.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 649, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "However, one-to-many regression problems like TTS can benefit from an autoregressive decoder as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "the previous mel-spectrogram frames provides context to disambiguate between multi-modal outputs.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 710, + 505, + 733 + ] + } + ] + }, + { + "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": "In this paper, we propose, Non-Attentive Tacotron1, a neural TTS model that combines the robust", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 442, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 442, + 106 + ], + "score": 1.0, + "content": "duration predictor with the autoregressive decoder of Tacotron 2 (Shen et al., 2018).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 110, + 504, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "Our work is similar to DurIAN (Yu et al., 2019; Zhang et al., 2020), which incorporates the duration", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "predictor with an autoregressive decoder. But besides the differences in architecture, we also introduce", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 268, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 268, + 144 + ], + "score": 1.0, + "content": "a couple of novel features in our model.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 149, + 358, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 360, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 360, + 162 + ], + "score": 1.0, + "content": "The key contributions of this paper are summarized as follows:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 129, + 171, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 129, + 172, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 129, + 172, + 505, + 186 + ], + "score": 1.0, + "content": "1. Replacing the attention mechanism in Tacotron 2 with duration prediction and upsampling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 141, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "modules leading to better robustness with the naturalness matching recorded natural speech;", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 128, + 200, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 128, + 200, + 506, + 216 + ], + "score": 1.0, + "content": "2. Introduction of Gaussian upsampling significantly improving the naturalness compared to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 214, + 298, + 226 + ], + "spans": [ + { + "bbox": [ + 142, + 214, + 298, + 226 + ], + "score": 1.0, + "content": "vanilla upsampling through repetition;", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 129, + 232, + 408, + 246 + ], + "spans": [ + { + "bbox": [ + 129, + 232, + 408, + 246 + ], + "score": 1.0, + "content": "3. Global and fine-grained controlling of durations at inference time;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 128, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 128, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "4. Semi-supervised and unsupervised duration modeling of Non-Attentive Tacotron, allowing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 262, + 401, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 401, + 275 + ], + "score": 1.0, + "content": "the model to be trained with few to no duration annotations; and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 129, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 129, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "5. More reliable evaluation metrics for measuring robustness of TTS models, as well as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 292, + 470, + 305 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 470, + 305 + ], + "score": 1.0, + "content": "comparing Non-Attentive Tacotron with Tacotron 2 with respect to those metrics.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 324, + 217, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 322, + 219, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 219, + 339 + ], + "score": 1.0, + "content": "2 RELATED WORKS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "In the past decade, model-based TTS synthesis has evolved from hidden Markov model (HMM)-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "score": 1.0, + "content": "approaches (Zen et al., 2009) to using deep neural networks. Over this period, the concept of using", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "an explicit representation of token (phoneme) durations has not been foreign. Early neural parametric", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "synthesis models (Zen et al., 2013) require explicit alignments between input and target and include", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "durations as part of the bag of features used to generate vocoder parameters. Explicit durations", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "continue to be used with the advent of the end-to-end neural vocoder WaveNet (Oord et al., 2016) in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "works such as Deep Voice (Arik et al., 2017; Gibiansky et al., 2017) and CHiVE (Kenter et al., 2019).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "score": 1.0, + "content": "As general focus turned towards end-to-end approaches, the autoregressive sequence-to-sequence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "model with attention mechanism used in neural machine translation (NMT) (Bahdanau et al., 2015)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 470 + ], + "score": 1.0, + "content": "and automatic speech recognition (ASR) (Chan et al., 2016) became an attractive option, removing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "score": 1.0, + "content": "the need to represent durations explicitly. This led to works such as Char2Wav (Sotelo et al., 2017),", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "Tacotron (Wang et al., 2017; Shen et al., 2018), Deep Voice 3 (Ping et al., 2018), and Transformer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "TTS (Li et al., 2019). Similar models have been used for more complicated problems, like direct", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "speech-to-speech translation (Jia et al., 2019), speech conversion (Biadsy et al., 2019), and speech", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 512, + 240, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 240, + 524 + ], + "score": 1.0, + "content": "enhancement (Ding et al., 2020).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 528, + 503, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "score": 1.0, + "content": "Tacotron 2, on which our work is based, is one such model. It connects a character-level encoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "and an autoregressive decoder producing mel spectrogram frames with the use of a location-sensitive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 550, + 294, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 294, + 562 + ], + "score": 1.0, + "content": "attention mechanism (Chorowski et al., 2015).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "Recently, there has been a surge of non-autoregressive models, bringing back the use of explicit", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "duration prediction. This approach initially surfaced in NMT (Gu et al., 2017), then made its way into", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "TTS with models such as FastSpeech (Ren et al., 2019; 2020), AlignTTS (Zeng et al., 2020), TalkNet", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "(Beliaev et al., 2020), and JDI-T (Lim et al., 2020). See Appendix C for a rough categorization of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 610, + 163, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 163, + 621 + ], + "score": 1.0, + "content": "these models.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 506, + 640 + ], + "score": 1.0, + "content": "To train the duration predictor, FastSpeech uses target durations extracted from a pre-trained autore-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "gressive model in teacher forcing mode, while JDI-T also extracts target durations from a separate", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "autoregressive model but co-trains it with the feed-forward model. TalkNet uses a CTC-based ASR", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "score": 1.0, + "content": "model to extract target durations, while CHiVE, FastSpeech 2, and DurIAN use target durations from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "score": 1.0, + "content": "an external aligner module utilizing forced alignment. Finally, AlignTTS forgoes target durations", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "completely and uses a specialized alignment loss inspired by the Baum-Welch algorithm to train a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 694, + 263, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 263, + 705 + ], + "score": 1.0, + "content": "mixture density network for alignment.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 308, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 309, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 309, + 734 + ], + "score": 1.0, + "content": "1Audio samples available in supplemental materials.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "In this paper, we propose, Non-Attentive Tacotron1, a neural TTS model that combines the robust", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 442, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 442, + 106 + ], + "score": 1.0, + "content": "duration predictor with the autoregressive decoder of Tacotron 2 (Shen et al., 2018).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 110, + 504, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "Our work is similar to DurIAN (Yu et al., 2019; Zhang et al., 2020), which incorporates the duration", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "predictor with an autoregressive decoder. But besides the differences in architecture, we also introduce", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 268, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 268, + 144 + ], + "score": 1.0, + "content": "a couple of novel features in our model.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 109, + 505, + 144 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 149, + 358, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 360, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 360, + 162 + ], + "score": 1.0, + "content": "The key contributions of this paper are summarized as follows:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 149, + 360, + 162 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 171, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 129, + 172, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 129, + 172, + 505, + 186 + ], + "score": 1.0, + "content": "1. Replacing the attention mechanism in Tacotron 2 with duration prediction and upsampling", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 141, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "modules leading to better robustness with the naturalness matching recorded natural speech;", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 128, + 200, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 128, + 200, + 506, + 216 + ], + "score": 1.0, + "content": "2. Introduction of Gaussian upsampling significantly improving the naturalness compared to", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 214, + 298, + 226 + ], + "spans": [ + { + "bbox": [ + 142, + 214, + 298, + 226 + ], + "score": 1.0, + "content": "vanilla upsampling through repetition;", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 232, + 408, + 246 + ], + "spans": [ + { + "bbox": [ + 129, + 232, + 408, + 246 + ], + "score": 1.0, + "content": "3. Global and fine-grained controlling of durations at inference time;", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 128, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "4. Semi-supervised and unsupervised duration modeling of Non-Attentive Tacotron, allowing", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 262, + 401, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 401, + 275 + ], + "score": 1.0, + "content": "the model to be trained with few to no duration annotations; and", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 129, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "5. More reliable evaluation metrics for measuring robustness of TTS models, as well as", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 292, + 470, + 305 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 470, + 305 + ], + "score": 1.0, + "content": "comparing Non-Attentive Tacotron with Tacotron 2 with respect to those metrics.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + } + ], + "index": 10, + "bbox_fs": [ + 128, + 172, + 506, + 305 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 324, + 217, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 322, + 219, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 219, + 339 + ], + "score": 1.0, + "content": "2 RELATED WORKS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "In the past decade, model-based TTS synthesis has evolved from hidden Markov model (HMM)-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "score": 1.0, + "content": "approaches (Zen et al., 2009) to using deep neural networks. Over this period, the concept of using", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "an explicit representation of token (phoneme) durations has not been foreign. Early neural parametric", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "synthesis models (Zen et al., 2013) require explicit alignments between input and target and include", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "durations as part of the bag of features used to generate vocoder parameters. Explicit durations", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "continue to be used with the advent of the end-to-end neural vocoder WaveNet (Oord et al., 2016) in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "works such as Deep Voice (Arik et al., 2017; Gibiansky et al., 2017) and CHiVE (Kenter et al., 2019).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 352, + 506, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "score": 1.0, + "content": "As general focus turned towards end-to-end approaches, the autoregressive sequence-to-sequence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "model with attention mechanism used in neural machine translation (NMT) (Bahdanau et al., 2015)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 470 + ], + "score": 1.0, + "content": "and automatic speech recognition (ASR) (Chan et al., 2016) became an attractive option, removing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 506, + 480 + ], + "score": 1.0, + "content": "the need to represent durations explicitly. This led to works such as Char2Wav (Sotelo et al., 2017),", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "Tacotron (Wang et al., 2017; Shen et al., 2018), Deep Voice 3 (Ping et al., 2018), and Transformer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "TTS (Li et al., 2019). Similar models have been used for more complicated problems, like direct", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "speech-to-speech translation (Jia et al., 2019), speech conversion (Biadsy et al., 2019), and speech", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 512, + 240, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 240, + 524 + ], + "score": 1.0, + "content": "enhancement (Ding et al., 2020).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 434, + 506, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 528, + 503, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "score": 1.0, + "content": "Tacotron 2, on which our work is based, is one such model. It connects a character-level encoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "and an autoregressive decoder producing mel spectrogram frames with the use of a location-sensitive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 550, + 294, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 294, + 562 + ], + "score": 1.0, + "content": "attention mechanism (Chorowski et al., 2015).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 529, + 505, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "Recently, there has been a surge of non-autoregressive models, bringing back the use of explicit", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "duration prediction. This approach initially surfaced in NMT (Gu et al., 2017), then made its way into", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "TTS with models such as FastSpeech (Ren et al., 2019; 2020), AlignTTS (Zeng et al., 2020), TalkNet", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "(Beliaev et al., 2020), and JDI-T (Lim et al., 2020). See Appendix C for a rough categorization of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 610, + 163, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 163, + 621 + ], + "score": 1.0, + "content": "these models.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 567, + 506, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 506, + 640 + ], + "score": 1.0, + "content": "To train the duration predictor, FastSpeech uses target durations extracted from a pre-trained autore-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "gressive model in teacher forcing mode, while JDI-T also extracts target durations from a separate", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "autoregressive model but co-trains it with the feed-forward model. TalkNet uses a CTC-based ASR", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "score": 1.0, + "content": "model to extract target durations, while CHiVE, FastSpeech 2, and DurIAN use target durations from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "score": 1.0, + "content": "an external aligner module utilizing forced alignment. Finally, AlignTTS forgoes target durations", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "completely and uses a specialized alignment loss inspired by the Baum-Welch algorithm to train a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 694, + 263, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 263, + 705 + ], + "score": 1.0, + "content": "mixture density network for alignment.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 628, + 506, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 135, + 81, + 498, + 315 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 81, + 498, + 315 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 81, + 497, + 313 + ], + "spans": [ + { + "bbox": [ + 135, + 81, + 497, + 313 + ], + "score": 0.97, + "type": "image", + "image_path": "ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 135, + 81, + 498, + 159.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 159.0, + 498, + 237.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 135, + 237.0, + 498, + 315.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 204, + 318, + 406, + 329 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 317, + 407, + 330 + ], + "spans": [ + { + "bbox": [ + 204, + 317, + 407, + 330 + ], + "score": 1.0, + "content": "Figure 1: Architecture of Non-Attentive Tacotron.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 107, + 335, + 165, + 348 + ], + "lines": [ + { + "bbox": [ + 104, + 334, + 168, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 334, + 168, + 351 + ], + "score": 1.0, + "content": "3 MODEL", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 363, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "score": 1.0, + "content": "Modern neural TTS models typically consist of two separate networks: (1) a feature generation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 373, + 507, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 507, + 388 + ], + "score": 1.0, + "content": "network that transforms input tokens (e.g., grapheme or phoneme ids) into acoustic features (e.g.,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 386, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 397 + ], + "score": 1.0, + "content": "mel-spectrogram), and (2) a vocoder network that transforms the acoustic features into a time-domain", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "audio waveform. This paper focuses on the feature generation network, and can be used with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "any vocoder network, e.g., WaveNet (Oord et al., 2016), WaveRNN (Kalchbrenner et al., 2018),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "WaveGlow (Prenger et al., 2019), MelGAN (Kumar et al., 2019), or WaveGrad (Chen et al., 2020).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "The architecture of Non-Attentive Tacotron is illustrated in Figure 1a. See Appendix A for specific", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 441, + 207, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 207, + 452 + ], + "score": 1.0, + "content": "parameter value settings.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 425, + 470 + ], + "score": 1.0, + "content": "The model follows that of Tacotron 2 (Shen et al., 2018), transforming input ids", + "type": "text" + }, + { + "bbox": [ + 426, + 456, + 505, + 468 + ], + "score": 0.92, + "content": "\\pmb { X } = ( \\pmb { x } _ { 1 } , \\dots , \\pmb { x } _ { N } )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 144, + 481 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 144, + 468, + 154, + 477 + ], + "score": 0.79, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 467, + 288, + 481 + ], + "score": 1.0, + "content": "into mel-spectrogram predictions", + "type": "text" + }, + { + "bbox": [ + 289, + 468, + 364, + 479 + ], + "score": 0.92, + "content": "\\pmb { Y } = ( \\pmb { y } _ { 1 } , \\dots , \\pmb { y } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 467, + 393, + 481 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 393, + 468, + 423, + 478 + ], + "score": 0.91, + "content": "T \\times K", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 467, + 506, + 481 + ], + "score": 1.0, + "content": ". Phonemes are used", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "as inputs, and include a silence token at word boundaries as well as an end-of-sequence token. The", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "ids are used to index into a learned embedding and is then passed through an encoder consisting of 3", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 116, + 511 + ], + "score": 0.72, + "content": "\\times", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "(dropout, batch normalization, convolution) layers followed by a single bi-directional LSTM with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 321, + 524 + ], + "score": 1.0, + "content": "ZoneOut to generate a 2-dimensional output of length", + "type": "text" + }, + { + "bbox": [ + 321, + 512, + 331, + 521 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 511, + 506, + 524 + ], + "score": 1.0, + "content": ". This output is concatenated with a speaker", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 522, + 402, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 322, + 536 + ], + "score": 1.0, + "content": "embedding vector to produce the final encoder output", + "type": "text" + }, + { + "bbox": [ + 323, + 522, + 397, + 534 + ], + "score": 0.92, + "content": "\\pmb { H } = ( h _ { 1 } , . . . , h _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 522, + 402, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "The autoregressive decoder also follows Tacotron 2, and predicts mel-spectrograms one frame at", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "a time. At training time, teacher forcing (Williams & Zipser, 1989) is employed and the previous", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "groundtruth mel-spectrogram frame is used as input, while at inference time the previous predicted", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "mel-spectrogram frame is used. This previous frame is passed through a pre-net containing two", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "fully-connected layers of ReLU units with dropout, then concatenated with an upsampled (aligned)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "encoder output corresponding to the current frame. The upsampled encoder outputs for future frames", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "are not visible to the decoder at the current frame. In Tacotron 2, this upsampling or alignment", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "is achieved using a location-sensitive attention mechanism (Chorowski et al., 2015), while in this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "work the attention mechanism is not used and a separate upsampling mechanism described later is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "used in its stead. The result is then passed through two uni-directional LSTM layers with ZoneOut.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "The LSTM output is concatenated with the upsampled encoder output yet again then projected to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 436, + 673 + ], + "score": 1.0, + "content": "the mel-spectrogram dimension as frames of a preliminary predicted spectrogram", + "type": "text" + }, + { + "bbox": [ + 436, + 660, + 450, + 670 + ], + "score": 0.84, + "content": "\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 659, + 506, + 673 + ], + "score": 1.0, + "content": ". Once all the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "mel-spectrogram frames have been predicted, they are passed through a 5-layer batch normalized", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "convolutional post-net with tanh activation on all except the last layer. The post-net predicts a residual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 693, + 346, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 201, + 705 + ], + "score": 1.0, + "content": "to add to the prediction", + "type": "text" + }, + { + "bbox": [ + 202, + 693, + 215, + 703 + ], + "score": 0.85, + "content": "\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 693, + 332, + 705 + ], + "score": 1.0, + "content": "to obtain the final prediction", + "type": "text" + }, + { + "bbox": [ + 333, + 695, + 342, + 703 + ], + "score": 0.87, + "content": "\\mathbf { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 693, + 346, + 705 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "In place of the attention mechanism used in Tacotron 2, duration-based models upsample the encoder", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "outputs using per-token duration information. This can be done by simply repeating each encoder", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 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": [ + 135, + 81, + 498, + 315 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 81, + 498, + 315 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 81, + 497, + 313 + ], + "spans": [ + { + "bbox": [ + 135, + 81, + 497, + 313 + ], + "score": 0.97, + "type": "image", + "image_path": "ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 135, + 81, + 498, + 159.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 159.0, + 498, + 237.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 135, + 237.0, + 498, + 315.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 204, + 318, + 406, + 329 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 317, + 407, + 330 + ], + "spans": [ + { + "bbox": [ + 204, + 317, + 407, + 330 + ], + "score": 1.0, + "content": "Figure 1: Architecture of Non-Attentive Tacotron.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 107, + 335, + 165, + 348 + ], + "lines": [ + { + "bbox": [ + 104, + 334, + 168, + 351 + ], + "spans": [ + { + "bbox": [ + 104, + 334, + 168, + 351 + ], + "score": 1.0, + "content": "3 MODEL", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 363, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "score": 1.0, + "content": "Modern neural TTS models typically consist of two separate networks: (1) a feature generation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 373, + 507, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 507, + 388 + ], + "score": 1.0, + "content": "network that transforms input tokens (e.g., grapheme or phoneme ids) into acoustic features (e.g.,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 386, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 397 + ], + "score": 1.0, + "content": "mel-spectrogram), and (2) a vocoder network that transforms the acoustic features into a time-domain", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "audio waveform. This paper focuses on the feature generation network, and can be used with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "any vocoder network, e.g., WaveNet (Oord et al., 2016), WaveRNN (Kalchbrenner et al., 2018),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "WaveGlow (Prenger et al., 2019), MelGAN (Kumar et al., 2019), or WaveGrad (Chen et al., 2020).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "The architecture of Non-Attentive Tacotron is illustrated in Figure 1a. See Appendix A for specific", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 441, + 207, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 207, + 452 + ], + "score": 1.0, + "content": "parameter value settings.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 362, + 507, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 425, + 470 + ], + "score": 1.0, + "content": "The model follows that of Tacotron 2 (Shen et al., 2018), transforming input ids", + "type": "text" + }, + { + "bbox": [ + 426, + 456, + 505, + 468 + ], + "score": 0.92, + "content": "\\pmb { X } = ( \\pmb { x } _ { 1 } , \\dots , \\pmb { x } _ { N } )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 144, + 481 + ], + "score": 1.0, + "content": "of length", + "type": "text" + }, + { + "bbox": [ + 144, + 468, + 154, + 477 + ], + "score": 0.79, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 467, + 288, + 481 + ], + "score": 1.0, + "content": "into mel-spectrogram predictions", + "type": "text" + }, + { + "bbox": [ + 289, + 468, + 364, + 479 + ], + "score": 0.92, + "content": "\\pmb { Y } = ( \\pmb { y } _ { 1 } , \\dots , \\pmb { y } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 467, + 393, + 481 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 393, + 468, + 423, + 478 + ], + "score": 0.91, + "content": "T \\times K", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 467, + 506, + 481 + ], + "score": 1.0, + "content": ". Phonemes are used", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "as inputs, and include a silence token at word boundaries as well as an end-of-sequence token. The", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "ids are used to index into a learned embedding and is then passed through an encoder consisting of 3", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 116, + 511 + ], + "score": 0.72, + "content": "\\times", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "(dropout, batch normalization, convolution) layers followed by a single bi-directional LSTM with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 321, + 524 + ], + "score": 1.0, + "content": "ZoneOut to generate a 2-dimensional output of length", + "type": "text" + }, + { + "bbox": [ + 321, + 512, + 331, + 521 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 511, + 506, + 524 + ], + "score": 1.0, + "content": ". This output is concatenated with a speaker", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 522, + 402, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 322, + 536 + ], + "score": 1.0, + "content": "embedding vector to produce the final encoder output", + "type": "text" + }, + { + "bbox": [ + 323, + 522, + 397, + 534 + ], + "score": 0.92, + "content": "\\pmb { H } = ( h _ { 1 } , . . . , h _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 522, + 402, + 536 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 456, + 506, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "The autoregressive decoder also follows Tacotron 2, and predicts mel-spectrograms one frame at", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "a time. At training time, teacher forcing (Williams & Zipser, 1989) is employed and the previous", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "groundtruth mel-spectrogram frame is used as input, while at inference time the previous predicted", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "mel-spectrogram frame is used. This previous frame is passed through a pre-net containing two", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "fully-connected layers of ReLU units with dropout, then concatenated with an upsampled (aligned)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "encoder output corresponding to the current frame. The upsampled encoder outputs for future frames", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "are not visible to the decoder at the current frame. In Tacotron 2, this upsampling or alignment", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "is achieved using a location-sensitive attention mechanism (Chorowski et al., 2015), while in this", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "work the attention mechanism is not used and a separate upsampling mechanism described later is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "used in its stead. The result is then passed through two uni-directional LSTM layers with ZoneOut.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "The LSTM output is concatenated with the upsampled encoder output yet again then projected to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 436, + 673 + ], + "score": 1.0, + "content": "the mel-spectrogram dimension as frames of a preliminary predicted spectrogram", + "type": "text" + }, + { + "bbox": [ + 436, + 660, + 450, + 670 + ], + "score": 0.84, + "content": "\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 659, + 506, + 673 + ], + "score": 1.0, + "content": ". Once all the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "mel-spectrogram frames have been predicted, they are passed through a 5-layer batch normalized", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "convolutional post-net with tanh activation on all except the last layer. The post-net predicts a residual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 693, + 346, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 201, + 705 + ], + "score": 1.0, + "content": "to add to the prediction", + "type": "text" + }, + { + "bbox": [ + 202, + 693, + 215, + 703 + ], + "score": 0.85, + "content": "\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 693, + 332, + 705 + ], + "score": 1.0, + "content": "to obtain the final prediction", + "type": "text" + }, + { + "bbox": [ + 333, + 695, + 342, + 703 + ], + "score": 0.87, + "content": "\\mathbf { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 693, + 346, + 705 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 539, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "In place of the attention mechanism used in Tacotron 2, duration-based models upsample the encoder", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "outputs using per-token duration information. This can be done by simply repeating each encoder", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "output by its duration as in FastSpeech (Ren et al., 2019), but instead we adopt a different process we", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "call Gaussian upsampling, which is described in subsection 3.1. Note that while durations in seconds", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 489, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 489, + 118 + ], + "score": 1.0, + "content": "are used for loss computation, they are converted to durations in integer frames for upsampling.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "output by its duration as in FastSpeech (Ren et al., 2019), but instead we adopt a different process we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "call Gaussian upsampling, which is described in subsection 3.1. Note that while durations in seconds", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 489, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 489, + 118 + ], + "score": 1.0, + "content": "are used for loss computation, they are converted to durations in integer frames for upsampling.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "For Gaussian upsampling, a duration and a range parameter must be predicted for each token. The", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "range parameter is called thus because it controls the range of a token’s influence. The duration", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "predictor passes the encoder output through two bi-directional LSTM layers followed by a projection", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 255, + 167 + ], + "score": 1.0, + "content": "layer to predict the numeric duration", + "type": "text" + }, + { + "bbox": [ + 256, + 154, + 328, + 166 + ], + "score": 0.93, + "content": "\\pmb { d } \\overset { - } { = } ( d _ { 1 } , \\ldots , d _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "for each input token. During training, these", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "predicted durations are only used for loss computation, and the target durations are used instead in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "the upcoming steps2. The range parameter predictor passes the encoder output concatenated with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "durations through two bi-directional LSTM layers followed by a projection layer and a SoftPlus", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 389, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 295, + 211 + ], + "score": 1.0, + "content": "activation to predict a positive range parameter", + "type": "text" + }, + { + "bbox": [ + 296, + 200, + 303, + 208 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 199, + 389, + 211 + ], + "score": 1.0, + "content": "for each input token.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "After the encoder outputs are upsampled, a Transformer-style sinusoidal positional embedding", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "(Vaswani et al., 2017) is concatenated. The positional embedding tracks the index of each upsampled", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "frame within each token; if the duration values are [2, 1, 3], the indices for the positional embedding", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 248, + 208, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 145, + 260 + ], + "score": 1.0, + "content": "would be", + "type": "text" + }, + { + "bbox": [ + 146, + 248, + 204, + 260 + ], + "score": 0.67, + "content": "[ 1 , 2 , 1 , 1 , 2 , 3 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 248, + 208, + 260 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "The model is trained using a combination of duration prediction loss and mel-spectrogram recon-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 275, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 304, + 288 + ], + "score": 1.0, + "content": "struction loss. The duration prediction loss is the", + "type": "text" + }, + { + "bbox": [ + 305, + 275, + 317, + 286 + ], + "score": 0.88, + "content": "L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 276, + 506, + 288 + ], + "score": 1.0, + "content": "loss between predicted and target durations in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 341, + 299 + ], + "score": 1.0, + "content": "seconds, and the mel-spectrogram reconstruction loss is a", + "type": "text" + }, + { + "bbox": [ + 342, + 286, + 377, + 297 + ], + "score": 0.92, + "content": "L ^ { 1 } + L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "loss between the predicted and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 298, + 490, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 490, + 311 + ], + "score": 1.0, + "content": "the groundtruth mel-spectrogram both before and after the post-net (following Jia et al. (2018)).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 314, + 459, + 390 + ], + "lines": [ + { + "bbox": [ + 151, + 314, + 459, + 390 + ], + "spans": [ + { + "bbox": [ + 151, + 314, + 459, + 390 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { d u r } } = \\frac { 1 } { N } \\| d - d ^ { * } \\| _ { 2 } ^ { 2 } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { s p e c } } = \\frac { 1 } { T K } \\displaystyle \\sum _ { t = 1 } ^ { T } \\Big ( \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } \\Big ) } \\end{array}", + "type": "interline_equation", + "image_path": "77d5689fda722ad82f23fce643109631064942167e12205bbef5e39282facae5.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 151, + 314, + 459, + 339.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 151, + 339.3333333333333, + 459, + 364.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 151, + 364.66666666666663, + 459, + 389.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 402, + 236, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 236, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 236, + 415 + ], + "score": 1.0, + "content": "3.1 GAUSSIAN UPSAMPLING", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 504, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 299, + 436 + ], + "score": 1.0, + "content": "Given a sequence of vectors to be upsampled", + "type": "text" + }, + { + "bbox": [ + 299, + 423, + 382, + 435 + ], + "score": 0.9, + "content": "\\pmb { H } = ( h _ { 1 } , \\ldots , h _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 422, + 484, + 436 + ], + "score": 1.0, + "content": ", integer duration values", + "type": "text" + }, + { + "bbox": [ + 484, + 424, + 505, + 434 + ], + "score": 0.84, + "content": "{ \\pmb d } =", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 433, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 158, + 446 + ], + "score": 0.9, + "content": "( d _ { 1 } , \\ldots , d _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 433, + 280, + 448 + ], + "score": 1.0, + "content": ", and range parameter values", + "type": "text" + }, + { + "bbox": [ + 280, + 435, + 356, + 446 + ], + "score": 0.9, + "content": "{ \\pmb \\sigma } = ( \\sigma _ { 1 } , \\ldots , \\sigma _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 433, + 505, + 448 + ], + "score": 1.0, + "content": ", we compute the upsampled vector", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 445, + 239, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 145, + 459 + ], + "score": 1.0, + "content": "sequence", + "type": "text" + }, + { + "bbox": [ + 146, + 446, + 223, + 457 + ], + "score": 0.92, + "content": "U = ( \\pmb { u } _ { 1 } , \\dots , \\pmb { u } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 445, + 239, + 459 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 477, + 468, + 514 + ], + "lines": [ + { + "bbox": [ + 144, + 477, + 468, + 514 + ], + "spans": [ + { + "bbox": [ + 144, + 477, + 468, + 514 + ], + "score": 0.92, + "content": "c _ { i } = \\frac { d _ { i } } { 2 } + \\sum _ { j = 1 } ^ { i - 1 } d _ { j } , \\qquad w _ { t i } = \\frac { N \\left( t ; c _ { i } , \\sigma _ { i } ^ { 2 } \\right) } { \\sum _ { j = 1 } ^ { N } \\mathcal { N } \\left( t ; c _ { j } , \\sigma _ { j } ^ { 2 } \\right) } , \\qquad \\quad u _ { t } = \\sum _ { i = 1 } ^ { N } w _ { t i } h _ { i }", + "type": "interline_equation", + "image_path": "63bcb0ec78ed9321ff1048b68ebfe3ff03bd9e476884213da3d4517c1bc7ee3d.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 144, + 477, + 468, + 489.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 144, + 489.3333333333333, + 468, + 501.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 144, + 501.66666666666663, + 468, + 514.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 504, + 581 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 358, + 538 + ], + "score": 1.0, + "content": "That is, we place a Gaussian distribution with standard deviation", + "type": "text" + }, + { + "bbox": [ + 358, + 528, + 368, + 537 + ], + "score": 0.86, + "content": "\\sigma _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "at the center of the output segment", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 190, + 550 + ], + "score": 1.0, + "content": "corresponding to the", + "type": "text" + }, + { + "bbox": [ + 191, + 538, + 195, + 547 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 537, + 402, + 550 + ], + "score": 1.0, + "content": "-th input token as determined by the duration values", + "type": "text" + }, + { + "bbox": [ + 403, + 537, + 410, + 547 + ], + "score": 0.77, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 537, + 506, + 550 + ], + "score": 1.0, + "content": ", and for each frame we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 548, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 506, + 560 + ], + "score": 1.0, + "content": "take a weighted sum of the encoder outputs in accordance with the values of Gaussian distributions at", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 558, + 504, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 495, + 571 + ], + "score": 1.0, + "content": "that frame. This is similar to the softmax-based aligner in Donahue et al. (2020), except a learned", + "type": "text" + }, + { + "bbox": [ + 496, + 560, + 504, + 569 + ], + "score": 0.68, + "content": "\\pmb { \\sigma }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 570, + 347, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 347, + 582 + ], + "score": 1.0, + "content": "rather than a fixed temperature hyperparameter is used here.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "Compared with vanilla upsampling by repetition (as in Ren et al. (2019)), which can be seen as a case", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "score": 1.0, + "content": "of learning a hard monotonic attention, Gaussian upsampling results in an alignment that is more", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "akin to single-component GMM attention. Another benefit of Gaussian upsampling is that it is fully", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "score": 1.0, + "content": "differentiable, which is critical to semi-supervised and unsupervised duration modeling (section 4) as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 631, + 475, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 475, + 643 + ], + "score": 1.0, + "content": "it allows the gradients from the spectrogram losses to flow through to the duration predictor.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 657, + 220, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 221, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 221, + 669 + ], + "score": 1.0, + "content": "3.2 TARGET DURATIONS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "Neural TTS models using duration need alignments between input tokens and output features. This", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "can be accomplished by implementing an aligner module in the model or by using an external aligner.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 711, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 507, + 724 + ], + "score": 1.0, + "content": "2Note that target durations may not be required with semi-supervised and unsupervised duration modeling.", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 159, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 159, + 731 + ], + "score": 1.0, + "content": "See section 4.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 118 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "For Gaussian upsampling, a duration and a range parameter must be predicted for each token. The", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "range parameter is called thus because it controls the range of a token’s influence. The duration", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "predictor passes the encoder output through two bi-directional LSTM layers followed by a projection", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 255, + 167 + ], + "score": 1.0, + "content": "layer to predict the numeric duration", + "type": "text" + }, + { + "bbox": [ + 256, + 154, + 328, + 166 + ], + "score": 0.93, + "content": "\\pmb { d } \\overset { - } { = } ( d _ { 1 } , \\ldots , d _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "for each input token. During training, these", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "predicted durations are only used for loss computation, and the target durations are used instead in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "the upcoming steps2. The range parameter predictor passes the encoder output concatenated with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "durations through two bi-directional LSTM layers followed by a projection layer and a SoftPlus", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 389, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 295, + 211 + ], + "score": 1.0, + "content": "activation to predict a positive range parameter", + "type": "text" + }, + { + "bbox": [ + 296, + 200, + 303, + 208 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 199, + 389, + 211 + ], + "score": 1.0, + "content": "for each input token.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 122, + 506, + 211 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "After the encoder outputs are upsampled, a Transformer-style sinusoidal positional embedding", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "(Vaswani et al., 2017) is concatenated. The positional embedding tracks the index of each upsampled", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "frame within each token; if the duration values are [2, 1, 3], the indices for the positional embedding", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 248, + 208, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 145, + 260 + ], + "score": 1.0, + "content": "would be", + "type": "text" + }, + { + "bbox": [ + 146, + 248, + 204, + 260 + ], + "score": 0.67, + "content": "[ 1 , 2 , 1 , 1 , 2 , 3 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 248, + 208, + 260 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 214, + 505, + 260 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "The model is trained using a combination of duration prediction loss and mel-spectrogram recon-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 275, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 304, + 288 + ], + "score": 1.0, + "content": "struction loss. The duration prediction loss is the", + "type": "text" + }, + { + "bbox": [ + 305, + 275, + 317, + 286 + ], + "score": 0.88, + "content": "L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 276, + 506, + 288 + ], + "score": 1.0, + "content": "loss between predicted and target durations in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 341, + 299 + ], + "score": 1.0, + "content": "seconds, and the mel-spectrogram reconstruction loss is a", + "type": "text" + }, + { + "bbox": [ + 342, + 286, + 377, + 297 + ], + "score": 0.92, + "content": "L ^ { 1 } + L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "loss between the predicted and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 298, + 490, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 490, + 311 + ], + "score": 1.0, + "content": "the groundtruth mel-spectrogram both before and after the post-net (following Jia et al. (2018)).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 264, + 506, + 311 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 314, + 459, + 390 + ], + "lines": [ + { + "bbox": [ + 151, + 314, + 459, + 390 + ], + "spans": [ + { + "bbox": [ + 151, + 314, + 459, + 390 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { d u r } } = \\frac { 1 } { N } \\| d - d ^ { * } \\| _ { 2 } ^ { 2 } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { s p e c } } = \\frac { 1 } { T K } \\displaystyle \\sum _ { t = 1 } ^ { T } \\Big ( \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } \\Big ) } \\end{array}", + "type": "interline_equation", + "image_path": "77d5689fda722ad82f23fce643109631064942167e12205bbef5e39282facae5.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 151, + 314, + 459, + 339.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 151, + 339.3333333333333, + 459, + 364.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 151, + 364.66666666666663, + 459, + 389.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 402, + 236, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 236, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 236, + 415 + ], + "score": 1.0, + "content": "3.1 GAUSSIAN UPSAMPLING", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 504, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 299, + 436 + ], + "score": 1.0, + "content": "Given a sequence of vectors to be upsampled", + "type": "text" + }, + { + "bbox": [ + 299, + 423, + 382, + 435 + ], + "score": 0.9, + "content": "\\pmb { H } = ( h _ { 1 } , \\ldots , h _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 422, + 484, + 436 + ], + "score": 1.0, + "content": ", integer duration values", + "type": "text" + }, + { + "bbox": [ + 484, + 424, + 505, + 434 + ], + "score": 0.84, + "content": "{ \\pmb d } =", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 433, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 158, + 446 + ], + "score": 0.9, + "content": "( d _ { 1 } , \\ldots , d _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 433, + 280, + 448 + ], + "score": 1.0, + "content": ", and range parameter values", + "type": "text" + }, + { + "bbox": [ + 280, + 435, + 356, + 446 + ], + "score": 0.9, + "content": "{ \\pmb \\sigma } = ( \\sigma _ { 1 } , \\ldots , \\sigma _ { N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 433, + 505, + 448 + ], + "score": 1.0, + "content": ", we compute the upsampled vector", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 445, + 239, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 145, + 459 + ], + "score": 1.0, + "content": "sequence", + "type": "text" + }, + { + "bbox": [ + 146, + 446, + 223, + 457 + ], + "score": 0.92, + "content": "U = ( \\pmb { u } _ { 1 } , \\dots , \\pmb { u } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 445, + 239, + 459 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 422, + 505, + 459 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 477, + 468, + 514 + ], + "lines": [ + { + "bbox": [ + 144, + 477, + 468, + 514 + ], + "spans": [ + { + "bbox": [ + 144, + 477, + 468, + 514 + ], + "score": 0.92, + "content": "c _ { i } = \\frac { d _ { i } } { 2 } + \\sum _ { j = 1 } ^ { i - 1 } d _ { j } , \\qquad w _ { t i } = \\frac { N \\left( t ; c _ { i } , \\sigma _ { i } ^ { 2 } \\right) } { \\sum _ { j = 1 } ^ { N } \\mathcal { N } \\left( t ; c _ { j } , \\sigma _ { j } ^ { 2 } \\right) } , \\qquad \\quad u _ { t } = \\sum _ { i = 1 } ^ { N } w _ { t i } h _ { i }", + "type": "interline_equation", + "image_path": "63bcb0ec78ed9321ff1048b68ebfe3ff03bd9e476884213da3d4517c1bc7ee3d.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 144, + 477, + 468, + 489.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 144, + 489.3333333333333, + 468, + 501.66666666666663 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 144, + 501.66666666666663, + 468, + 514.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 504, + 581 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 358, + 538 + ], + "score": 1.0, + "content": "That is, we place a Gaussian distribution with standard deviation", + "type": "text" + }, + { + "bbox": [ + 358, + 528, + 368, + 537 + ], + "score": 0.86, + "content": "\\sigma _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "at the center of the output segment", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 190, + 550 + ], + "score": 1.0, + "content": "corresponding to the", + "type": "text" + }, + { + "bbox": [ + 191, + 538, + 195, + 547 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 537, + 402, + 550 + ], + "score": 1.0, + "content": "-th input token as determined by the duration values", + "type": "text" + }, + { + "bbox": [ + 403, + 537, + 410, + 547 + ], + "score": 0.77, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 537, + 506, + 550 + ], + "score": 1.0, + "content": ", and for each frame we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 548, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 506, + 560 + ], + "score": 1.0, + "content": "take a weighted sum of the encoder outputs in accordance with the values of Gaussian distributions at", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 558, + 504, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 495, + 571 + ], + "score": 1.0, + "content": "that frame. This is similar to the softmax-based aligner in Donahue et al. (2020), except a learned", + "type": "text" + }, + { + "bbox": [ + 496, + 560, + 504, + 569 + ], + "score": 0.68, + "content": "\\pmb { \\sigma }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 570, + 347, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 347, + 582 + ], + "score": 1.0, + "content": "rather than a fixed temperature hyperparameter is used here.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 525, + 506, + 582 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "Compared with vanilla upsampling by repetition (as in Ren et al. (2019)), which can be seen as a case", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "score": 1.0, + "content": "of learning a hard monotonic attention, Gaussian upsampling results in an alignment that is more", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "akin to single-component GMM attention. Another benefit of Gaussian upsampling is that it is fully", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 633 + ], + "score": 1.0, + "content": "differentiable, which is critical to semi-supervised and unsupervised duration modeling (section 4) as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 631, + 475, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 475, + 643 + ], + "score": 1.0, + "content": "it allows the gradients from the spectrogram losses to flow through to the duration predictor.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 587, + 506, + 643 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 657, + 220, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 221, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 221, + 669 + ], + "score": 1.0, + "content": "3.2 TARGET DURATIONS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "Neural TTS models using duration need alignments between input tokens and output features. This", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "can be accomplished by implementing an aligner module in the model or by using an external aligner.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 677, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "In our work, target durations are extracted by an external, flatstart trained, speaker-dependent HMM-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "based aligner with a lexicon (Talkin & Wightman, 1994). However, sometimes it is difficult to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "score": 1.0, + "content": "train a reliable aligner model and/or extract accurate alignments due to data sparsity, poor recording", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "conditions, or unclear pronunciations. To address this problem, we introduce semi-supervised and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 240, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 240, + 140 + ], + "score": 1.0, + "content": "unsupervised duration modeling.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 108, + 154, + 442, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 443, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 443, + 169 + ], + "score": 1.0, + "content": "4 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 178, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "A na¨ıve approach to unsupervised duration modeling would be to simply train the model using the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "predicted durations (instead of the target durations) for upsampling, and use only mel-spectrogram", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 504, + 213 + ], + "score": 1.0, + "content": "reconstruction loss for optimization. To match the length between the predicted durations and the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 211, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 448, + 225 + ], + "score": 1.0, + "content": "target mel-spectrogram frames, the predicted per-token durations can be scaled by", + "type": "text" + }, + { + "bbox": [ + 449, + 211, + 487, + 224 + ], + "score": 0.92, + "content": "T / \\sum _ { i } d _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 211, + 505, + 225 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 302, + 238 + ], + "score": 1.0, + "content": "addition to that, an utterance-level duration loss", + "type": "text" + }, + { + "bbox": [ + 302, + 223, + 394, + 238 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { u } } = \\frac { 1 } { N } \\left( T - \\sum _ { i } d _ { i } \\right) ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 224, + 506, + 238 + ], + "score": 1.0, + "content": "could be added to the total", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "loss. However, experiments show that such an approach does not produce satisfying naturalness in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 247, + 268, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 268, + 259 + ], + "score": 1.0, + "content": "the synthesized speech (subsection 6.3).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 263, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "The proposed unsupervised duration modeling is illustrated in Figure 1b. We instead utilize a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "fine-grained VAE (FVAE) similar to Sun et al. (2020) to model the alignment between the input", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "tokens and the target mel-spectrogram frames, and extract per-token latent features from the target", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 296, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 395, + 310 + ], + "score": 1.0, + "content": "mel-spectrogram based on this alignment. The token encoder output", + "type": "text" + }, + { + "bbox": [ + 396, + 297, + 407, + 307 + ], + "score": 0.73, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 296, + 506, + 310 + ], + "score": 1.0, + "content": "is aligned to the target", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 417, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 158, + 321 + ], + "score": 1.0, + "content": "spectrogram", + "type": "text" + }, + { + "bbox": [ + 159, + 308, + 173, + 318 + ], + "score": 0.86, + "content": "Y ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 307, + 417, + 321 + ], + "score": 1.0, + "content": "using an attention mechanism following Lee & Kim (2019):", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 323, + 359, + 337 + ], + "lines": [ + { + "bbox": [ + 251, + 323, + 359, + 337 + ], + "spans": [ + { + "bbox": [ + 251, + 323, + 359, + 337 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { c } _ { i } = \\mathrm { A t t n } ( \\pmb { h } _ { i } , f _ { \\mathrm { s p e c } } ( \\pmb { Y } ^ { * } ) ) , } \\end{array}", + "type": "interline_equation", + "image_path": "b10ec1e2c2611610781baea06023ce19aa543c850f920b7d0dee9134c88886a0.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 251, + 323, + 359, + 337 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 133, + 354 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 342, + 145, + 352 + ], + "score": 0.87, + "content": "\\boldsymbol { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 341, + 319, + 354 + ], + "score": 1.0, + "content": "is used as the query in the attention, and", + "type": "text" + }, + { + "bbox": [ + 320, + 342, + 339, + 353 + ], + "score": 0.91, + "content": "f _ { \\mathrm { s p e c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "is a spectrogram encoder whose output", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "per frame is used as the values in the attention. A simple dot-product attention from Luong et al.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 363, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 288, + 376 + ], + "score": 1.0, + "content": "(2015) was used in this work. A latent feature", + "type": "text" + }, + { + "bbox": [ + 288, + 365, + 298, + 374 + ], + "score": 0.86, + "content": "z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 363, + 390, + 376 + ], + "score": 1.0, + "content": "is then computed from", + "type": "text" + }, + { + "bbox": [ + 390, + 365, + 400, + 374 + ], + "score": 0.84, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 363, + 417, + 376 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 418, + 364, + 429, + 374 + ], + "score": 0.87, + "content": "\\boldsymbol { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 363, + 506, + 376 + ], + "score": 1.0, + "content": "using a variational", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 391, + 387 + ], + "score": 1.0, + "content": "auto-encoder (VAE) (Kingma & Welling, 2014) with a Gaussian prior", + "type": "text" + }, + { + "bbox": [ + 391, + 374, + 424, + 386 + ], + "score": 0.93, + "content": "\\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 374, + 505, + 387 + ], + "score": 1.0, + "content": ", optimized through", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 385, + 249, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 249, + 397 + ], + "score": 1.0, + "content": "the evidence lower bound (ELBO):", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 400, + 480, + 427 + ], + "lines": [ + { + "bbox": [ + 131, + 400, + 480, + 427 + ], + "spans": [ + { + "bbox": [ + 131, + 400, + 480, + 427 + ], + "score": 0.92, + "content": "\\log p \\left( { Y } \\mid { H } \\right) \\geq - \\sum _ { i } D _ { \\mathrm { K L } } \\left( q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) \\parallel p \\left( \\boldsymbol { z } _ { i } \\right) \\right) + \\mathbb { E } _ { q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) } \\left[ \\log p \\left( { Y } \\mid { H } , \\boldsymbol { Z } \\right) \\right]", + "type": "interline_equation", + "image_path": "5435da12536f1690632bc3ae9f1381dee158dbfd852dd400e54bf24b3cac2b9f.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 131, + 400, + 480, + 409.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 131, + 409.0, + 480, + 418.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 131, + 418.0, + 480, + 427.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "where the first term is the KL divergence between the prior and posterior, and the second term can be", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 442, + 322, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 322, + 454 + ], + "score": 1.0, + "content": "approximated by drawing samples from the posterior.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "Because these latent features are extracted from the target spectrogram with an alignment, they", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 487, + 482 + ], + "score": 1.0, + "content": "are capable of carrying duration related information. At training time, the per-token duration", + "type": "text" + }, + { + "bbox": [ + 487, + 470, + 495, + 479 + ], + "score": 0.81, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 357, + 493 + ], + "score": 1.0, + "content": "predicted from the concatenation of the token encoder output", + "type": "text" + }, + { + "bbox": [ + 357, + 481, + 369, + 491 + ], + "score": 0.71, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 480, + 466, + 493 + ], + "score": 1.0, + "content": "and the posterior latent", + "type": "text" + }, + { + "bbox": [ + 466, + 481, + 476, + 491 + ], + "score": 0.81, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "; while", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 492, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 289, + 504 + ], + "score": 1.0, + "content": "at inference time, the prior latent is used for", + "type": "text" + }, + { + "bbox": [ + 290, + 492, + 299, + 502 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 492, + 504, + 504 + ], + "score": 1.0, + "content": "(either sampled from the distribution or using the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 502, + 434, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 434, + 514 + ], + "score": 1.0, + "content": "distribution mode), and the internal attention mechanism of the FVAE is not used.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 507, + 532 + ], + "score": 1.0, + "content": "Unlike Sun et al. (2020), scheduled sampling was not utilized for factorizing latent dimensions.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "These latent features are only used for duration prediction, and are not used for range parameter", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "prediction or mel-spectrogram reconstruction. We also cap the range parameters for each token", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "to twice its predicted duration in this setup for better training stability. As in section 3, durations", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "predicted in seconds are used for loss computation, but are converted to durations in integer frames", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 573, + 172, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 172, + 588 + ], + "score": 1.0, + "content": "for upsampling.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 108, + 590, + 407, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 408, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 408, + 604 + ], + "score": 1.0, + "content": "The overall loss used for semi-supervised and unsupervised training is thus", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 607, + 389, + 621 + ], + "lines": [ + { + "bbox": [ + 221, + 607, + 389, + 621 + ], + "spans": [ + { + "bbox": [ + 221, + 607, + 389, + 621 + ], + "score": 0.92, + "content": "\\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } + \\lambda _ { \\mathrm { u } } \\mathcal { L } _ { \\mathrm { u } } + \\lambda _ { \\mathrm { K L } } D _ { \\mathrm { K L } } ,", + "type": "interline_equation", + "image_path": "140e9778533fa00d85f0cbf04a7f924d478140c02bd0b764d5a8058f4b902d5d.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 221, + 607, + 389, + 621 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 624, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 132, + 638 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 625, + 152, + 636 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 624, + 170, + 638 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 170, + 625, + 191, + 637 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { \\mathrm { s p e c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 624, + 477, + 638 + ], + "score": 1.0, + "content": "correspond to the first and second terms in Equation 4, respectively, and", + "type": "text" + }, + { + "bbox": [ + 477, + 625, + 495, + 636 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { \\mathrm { d u r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "only counted for examples with target duration labels (i.e. supervised examples). The last three terms", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 647, + 236, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 236, + 659 + ], + "score": 1.0, + "content": "are all weighted per valid token.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "title", + "bbox": [ + 108, + 674, + 262, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 264, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 264, + 689 + ], + "score": 1.0, + "content": "5 ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Previous work typically evaluated the robustness of TTS systems on a small set of handpicked “hard", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "cases” (He et al., 2019; Zheng et al., 2019; Guo et al., 2019). Although such evaluation is helpful for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "guiding improvements, it is not reflective of the overall robustness of the system. The handpicked", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "In our work, target durations are extracted by an external, flatstart trained, speaker-dependent HMM-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "based aligner with a lexicon (Talkin & Wightman, 1994). However, sometimes it is difficult to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "score": 1.0, + "content": "train a reliable aligner model and/or extract accurate alignments due to data sparsity, poor recording", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "conditions, or unclear pronunciations. To address this problem, we introduce semi-supervised and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 240, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 240, + 140 + ], + "score": 1.0, + "content": "unsupervised duration modeling.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 140 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 154, + 442, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 443, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 443, + 169 + ], + "score": 1.0, + "content": "4 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 178, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "A na¨ıve approach to unsupervised duration modeling would be to simply train the model using the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 203 + ], + "score": 1.0, + "content": "predicted durations (instead of the target durations) for upsampling, and use only mel-spectrogram", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 504, + 213 + ], + "score": 1.0, + "content": "reconstruction loss for optimization. To match the length between the predicted durations and the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 211, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 448, + 225 + ], + "score": 1.0, + "content": "target mel-spectrogram frames, the predicted per-token durations can be scaled by", + "type": "text" + }, + { + "bbox": [ + 449, + 211, + 487, + 224 + ], + "score": 0.92, + "content": "T / \\sum _ { i } d _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 211, + 505, + 225 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 302, + 238 + ], + "score": 1.0, + "content": "addition to that, an utterance-level duration loss", + "type": "text" + }, + { + "bbox": [ + 302, + 223, + 394, + 238 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { u } } = \\frac { 1 } { N } \\left( T - \\sum _ { i } d _ { i } \\right) ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 224, + 506, + 238 + ], + "score": 1.0, + "content": "could be added to the total", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "loss. However, experiments show that such an approach does not produce satisfying naturalness in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 247, + 268, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 268, + 259 + ], + "score": 1.0, + "content": "the synthesized speech (subsection 6.3).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 178, + 506, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 263, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "The proposed unsupervised duration modeling is illustrated in Figure 1b. We instead utilize a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "fine-grained VAE (FVAE) similar to Sun et al. (2020) to model the alignment between the input", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "tokens and the target mel-spectrogram frames, and extract per-token latent features from the target", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 296, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 395, + 310 + ], + "score": 1.0, + "content": "mel-spectrogram based on this alignment. The token encoder output", + "type": "text" + }, + { + "bbox": [ + 396, + 297, + 407, + 307 + ], + "score": 0.73, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 296, + 506, + 310 + ], + "score": 1.0, + "content": "is aligned to the target", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 417, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 158, + 321 + ], + "score": 1.0, + "content": "spectrogram", + "type": "text" + }, + { + "bbox": [ + 159, + 308, + 173, + 318 + ], + "score": 0.86, + "content": "Y ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 307, + 417, + 321 + ], + "score": 1.0, + "content": "using an attention mechanism following Lee & Kim (2019):", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 263, + 506, + 321 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 323, + 359, + 337 + ], + "lines": [ + { + "bbox": [ + 251, + 323, + 359, + 337 + ], + "spans": [ + { + "bbox": [ + 251, + 323, + 359, + 337 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { c } _ { i } = \\mathrm { A t t n } ( \\pmb { h } _ { i } , f _ { \\mathrm { s p e c } } ( \\pmb { Y } ^ { * } ) ) , } \\end{array}", + "type": "interline_equation", + "image_path": "b10ec1e2c2611610781baea06023ce19aa543c850f920b7d0dee9134c88886a0.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 251, + 323, + 359, + 337 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 133, + 354 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 342, + 145, + 352 + ], + "score": 0.87, + "content": "\\boldsymbol { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 341, + 319, + 354 + ], + "score": 1.0, + "content": "is used as the query in the attention, and", + "type": "text" + }, + { + "bbox": [ + 320, + 342, + 339, + 353 + ], + "score": 0.91, + "content": "f _ { \\mathrm { s p e c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "is a spectrogram encoder whose output", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "per frame is used as the values in the attention. A simple dot-product attention from Luong et al.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 363, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 288, + 376 + ], + "score": 1.0, + "content": "(2015) was used in this work. A latent feature", + "type": "text" + }, + { + "bbox": [ + 288, + 365, + 298, + 374 + ], + "score": 0.86, + "content": "z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 363, + 390, + 376 + ], + "score": 1.0, + "content": "is then computed from", + "type": "text" + }, + { + "bbox": [ + 390, + 365, + 400, + 374 + ], + "score": 0.84, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 363, + 417, + 376 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 418, + 364, + 429, + 374 + ], + "score": 0.87, + "content": "\\boldsymbol { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 363, + 506, + 376 + ], + "score": 1.0, + "content": "using a variational", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 391, + 387 + ], + "score": 1.0, + "content": "auto-encoder (VAE) (Kingma & Welling, 2014) with a Gaussian prior", + "type": "text" + }, + { + "bbox": [ + 391, + 374, + 424, + 386 + ], + "score": 0.93, + "content": "\\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 374, + 505, + 387 + ], + "score": 1.0, + "content": ", optimized through", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 385, + 249, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 249, + 397 + ], + "score": 1.0, + "content": "the evidence lower bound (ELBO):", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 341, + 506, + 397 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 400, + 480, + 427 + ], + "lines": [ + { + "bbox": [ + 131, + 400, + 480, + 427 + ], + "spans": [ + { + "bbox": [ + 131, + 400, + 480, + 427 + ], + "score": 0.92, + "content": "\\log p \\left( { Y } \\mid { H } \\right) \\geq - \\sum _ { i } D _ { \\mathrm { K L } } \\left( q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) \\parallel p \\left( \\boldsymbol { z } _ { i } \\right) \\right) + \\mathbb { E } _ { q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) } \\left[ \\log p \\left( { Y } \\mid { H } , \\boldsymbol { Z } \\right) \\right]", + "type": "interline_equation", + "image_path": "5435da12536f1690632bc3ae9f1381dee158dbfd852dd400e54bf24b3cac2b9f.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 131, + 400, + 480, + 409.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 131, + 409.0, + 480, + 418.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 131, + 418.0, + 480, + 427.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "where the first term is the KL divergence between the prior and posterior, and the second term can be", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 442, + 322, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 322, + 454 + ], + "score": 1.0, + "content": "approximated by drawing samples from the posterior.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 430, + 505, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "Because these latent features are extracted from the target spectrogram with an alignment, they", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 487, + 482 + ], + "score": 1.0, + "content": "are capable of carrying duration related information. At training time, the per-token duration", + "type": "text" + }, + { + "bbox": [ + 487, + 470, + 495, + 479 + ], + "score": 0.81, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 357, + 493 + ], + "score": 1.0, + "content": "predicted from the concatenation of the token encoder output", + "type": "text" + }, + { + "bbox": [ + 357, + 481, + 369, + 491 + ], + "score": 0.71, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 480, + 466, + 493 + ], + "score": 1.0, + "content": "and the posterior latent", + "type": "text" + }, + { + "bbox": [ + 466, + 481, + 476, + 491 + ], + "score": 0.81, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "; while", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 492, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 289, + 504 + ], + "score": 1.0, + "content": "at inference time, the prior latent is used for", + "type": "text" + }, + { + "bbox": [ + 290, + 492, + 299, + 502 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 492, + 504, + 504 + ], + "score": 1.0, + "content": "(either sampled from the distribution or using the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 502, + 434, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 434, + 514 + ], + "score": 1.0, + "content": "distribution mode), and the internal attention mechanism of the FVAE is not used.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 457, + 506, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 507, + 532 + ], + "score": 1.0, + "content": "Unlike Sun et al. (2020), scheduled sampling was not utilized for factorizing latent dimensions.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "These latent features are only used for duration prediction, and are not used for range parameter", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "prediction or mel-spectrogram reconstruction. We also cap the range parameters for each token", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "to twice its predicted duration in this setup for better training stability. As in section 3, durations", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 575 + ], + "score": 1.0, + "content": "predicted in seconds are used for loss computation, but are converted to durations in integer frames", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 573, + 172, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 172, + 588 + ], + "score": 1.0, + "content": "for upsampling.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 518, + 507, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 590, + 407, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 408, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 408, + 604 + ], + "score": 1.0, + "content": "The overall loss used for semi-supervised and unsupervised training is thus", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 589, + 408, + 604 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 607, + 389, + 621 + ], + "lines": [ + { + "bbox": [ + 221, + 607, + 389, + 621 + ], + "spans": [ + { + "bbox": [ + 221, + 607, + 389, + 621 + ], + "score": 0.92, + "content": "\\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } + \\lambda _ { \\mathrm { u } } \\mathcal { L } _ { \\mathrm { u } } + \\lambda _ { \\mathrm { K L } } D _ { \\mathrm { K L } } ,", + "type": "interline_equation", + "image_path": "140e9778533fa00d85f0cbf04a7f924d478140c02bd0b764d5a8058f4b902d5d.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 221, + 607, + 389, + 621 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 624, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 132, + 638 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 625, + 152, + 636 + ], + "score": 0.91, + "content": "D _ { \\mathrm { K L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 624, + 170, + 638 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 170, + 625, + 191, + 637 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { \\mathrm { s p e c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 624, + 477, + 638 + ], + "score": 1.0, + "content": "correspond to the first and second terms in Equation 4, respectively, and", + "type": "text" + }, + { + "bbox": [ + 477, + 625, + 495, + 636 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { \\mathrm { d u r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 649 + ], + "score": 1.0, + "content": "only counted for examples with target duration labels (i.e. supervised examples). The last three terms", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 647, + 236, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 236, + 659 + ], + "score": 1.0, + "content": "are all weighted per valid token.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 624, + 506, + 659 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 674, + 262, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 264, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 264, + 689 + ], + "score": 1.0, + "content": "5 ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Previous work typically evaluated the robustness of TTS systems on a small set of handpicked “hard", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "cases” (He et al., 2019; Zheng et al., 2019; Guo et al., 2019). Although such evaluation is helpful for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "guiding improvements, it is not reflective of the overall robustness of the system. The handpicked", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "samples may be biased to the weaknesses of a certain system, and is prone to lead further optimization", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 262, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 262, + 106 + ], + "score": 1.0, + "content": "to overfit to the specific evaluation set.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "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": "samples may be biased to the weaknesses of a certain system, and is prone to lead further optimization", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 262, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 262, + 106 + ], + "score": 1.0, + "content": "to overfit to the specific evaluation set.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 110, + 504, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "In this work, we evaluate the robustness of TTS systems on large evaluation sets in an automated way", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "by leveraging existing ASR systems. We run ASR and forced alignment evaluations on the synthesized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 495, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 495, + 145 + ], + "score": 1.0, + "content": "speech against the verbalized text, and report two metrics measuring over- and under-generation:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 130, + 152, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 130, + 154, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 130, + 154, + 505, + 165 + ], + "score": 1.0, + "content": "1. Unaligned duration ratio (UDR): The synthesized speech is forced aligned with the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 142, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 142, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "verbalized input text using an ASR system. Each token in the input text is aligned to a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 141, + 176, + 381, + 189 + ], + "score": 1.0, + "content": "segment in the synthesized audio. Any long audio segments", + "type": "text" + }, + { + "bbox": [ + 382, + 176, + 399, + 186 + ], + "score": 0.85, + "content": "> 1", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "second) not aligned to any", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 141, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "input token are typically due to over-generation from the TTS system, such as long pauses,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 141, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "babbling, word repetitions, or failures to stop after finishing the utterance. The total duration", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 141, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "of such long unaligned segments divided by the total output duration is the UDR. Note that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 141, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "short unaligned segments are ignored. If the synthesized speech is unable to be aligned with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 230, + 372, + 242 + ], + "spans": [ + { + "bbox": [ + 142, + 230, + 344, + 242 + ], + "score": 1.0, + "content": "the input text, it is considered as having a UDR of", + "type": "text" + }, + { + "bbox": [ + 344, + 230, + 368, + 240 + ], + "score": 0.88, + "content": "100 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 230, + 372, + 242 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 130, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 130, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "2. ASR word deletion rate (WDR): This is the deletion error portion in a standard ASR word", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "error rate (WER) evaluation. Under-generation in the synthesized speech, such as early", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 267, + 370, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 370, + 279 + ], + "score": 1.0, + "content": "cutoff and word skipping, is reflected by a higher WDR.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 287, + 503, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "As the ASR system will make mistakes, the metrics above are just an upper-bound on the actual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 297, + 217, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 217, + 311 + ], + "score": 1.0, + "content": "failures of the TTS system.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 326, + 200, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 201, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 201, + 340 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "score": 1.0, + "content": "All models were trained on a proprietary dataset with 66 speakers with 4 different English accents", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "(US, British, Australian, and Nigerian). The amount of data per speaker varied from merely 5 seconds", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 372, + 234, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 234, + 385 + ], + "score": 1.0, + "content": "to 47 hours, totaling 354 hours.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "A preliminary experiment comparing different attention mechanisms (including monotonic, stepwise", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "monotonic, dynamic convolution and GMM attention (GMMA)) showed that GMMA performed", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "the best. We therefore compared our non-attentive Tacotron not only with Tacotron 2 with location-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 506, + 434 + ], + "score": 1.0, + "content": "sensitive attention (LSA) which was used in the original Tacotron 2 paper but also with Tacotron 2", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 433, + 426, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 369, + 445 + ], + "score": 1.0, + "content": "with GMMA. The Tacotron 2 models used reduction factor 2 and", + "type": "text" + }, + { + "bbox": [ + 369, + 433, + 405, + 444 + ], + "score": 0.92, + "content": "L ^ { 1 } + L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 433, + 426, + 445 + ], + "score": 1.0, + "content": "loss.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "Following Shen et al. (2018), predicted features were obtained in teacher-forcing mode from a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 499, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 499, + 474 + ], + "score": 1.0, + "content": "Tacotron 2 model and used to train a WaveRNN vocoder which was then used for all experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 486, + 195, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 196, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 196, + 499 + ], + "score": 1.0, + "content": "6.1 NATURALNESS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "The naturalness of the synthesized speech was evaluated through subjective listening tests, including", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "5-scale Mean Opinion Score (MOS) tests and side-by-side preference tests. The sentences were", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "synthesized using 10 US English speakers (5 male / 5 female) in a round-robin fashion. The amount", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 540, + 406, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 406, + 552 + ], + "score": 1.0, + "content": "of training data for the evaluated speakers varied from 3 hours to 47 hours.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 104, + 556, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "score": 1.0, + "content": "Table 1 contains MOS results. Non-Attentive Tacotron with Gaussian upsampling matched Tacotron 2", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "(GMMA) in naturalness, and both were close to the groundtruth audio. A preference test between", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "table", + "bbox": [ + 116, + 622, + 275, + 725 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 601, + 285, + 613 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 601, + 287, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 183, + 614 + ], + "score": 1.0, + "content": "Table 1: MOS with", + "type": "text" + }, + { + "bbox": [ + 184, + 602, + 203, + 612 + ], + "score": 0.85, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 601, + 287, + 614 + ], + "score": 1.0, + "content": "confidence intervals.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "table_body", + "bbox": [ + 116, + 622, + 275, + 725 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 622, + 275, + 725 + ], + "spans": [ + { + "bbox": [ + 116, + 622, + 275, + 725 + ], + "score": 0.975, + "html": "
ModelMOS
Tacotron 2
w/LSA4.35 ± 0.05
w/ GMMA4.37 ± 0.04
Non-Attentive Tacotron w/ Gauss. upsampling
w/ vanilla upsampling4.41 ± 0.04
4.13 ± 0.05
Ground truth4.42 ± 0.04
", + "type": "table", + "image_path": "4b8e58ac6d446d602ff3d8334b74cf3d278039865d1b7f57219730137751e831.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 116, + 622, + 275, + 636.7142857142857 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 116, + 636.7142857142857, + 275, + 651.4285714285713 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 116, + 651.4285714285713, + 275, + 666.142857142857 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 116, + 666.142857142857, + 275, + 680.8571428571427 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 116, + 680.8571428571427, + 275, + 695.5714285714283 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 116, + 695.5714285714283, + 275, + 710.285714285714 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 116, + 710.285714285714, + 275, + 724.9999999999997 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "index": 38.0 + }, + { + "type": "image", + "bbox": [ + 315, + 597, + 487, + 686 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 315, + 597, + 487, + 686 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 315, + 597, + 487, + 686 + ], + "spans": [ + { + "bbox": [ + 315, + 597, + 487, + 686 + ], + "score": 0.966, + "type": "image", + "image_path": "298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg" + } + ] + } + ], + "index": 46.5, + "virtual_lines": [ + { + "bbox": [ + 315, + 597, + 487, + 611.8333333333334 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 315, + 611.8333333333334, + 487, + 626.6666666666667 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 315, + 626.6666666666667, + 487, + 641.5000000000001 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 315, + 641.5000000000001, + 487, + 656.3333333333335 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 315, + 656.3333333333335, + 487, + 671.1666666666669 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 315, + 671.1666666666669, + 487, + 686.0000000000002 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 302, + 695, + 502, + 729 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 302, + 695, + 502, + 707 + ], + "spans": [ + { + "bbox": [ + 302, + 695, + 502, + 707 + ], + "score": 1.0, + "content": "Figure 2: Preference test result with Non-Attentive", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 301, + 705, + 503, + 719 + ], + "spans": [ + { + "bbox": [ + 301, + 705, + 503, + 719 + ], + "score": 1.0, + "content": "Tacotron with Gaussian upsampling compared", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 301, + 717, + 422, + 730 + ], + "spans": [ + { + "bbox": [ + 301, + 717, + 422, + 730 + ], + "score": 1.0, + "content": "against Tacotron 2 (GMMA).", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + } + ], + "index": 48.75 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 108, + 110, + 504, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "In this work, we evaluate the robustness of TTS systems on large evaluation sets in an automated way", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "by leveraging existing ASR systems. We run ASR and forced alignment evaluations on the synthesized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 495, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 495, + 145 + ], + "score": 1.0, + "content": "speech against the verbalized text, and report two metrics measuring over- and under-generation:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 110, + 505, + 145 + ] + }, + { + "type": "list", + "bbox": [ + 130, + 152, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 130, + 154, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 130, + 154, + 505, + 165 + ], + "score": 1.0, + "content": "1. Unaligned duration ratio (UDR): The synthesized speech is forced aligned with the", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 142, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "verbalized input text using an ASR system. Each token in the input text is aligned to a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 141, + 176, + 381, + 189 + ], + "score": 1.0, + "content": "segment in the synthesized audio. Any long audio segments", + "type": "text" + }, + { + "bbox": [ + 382, + 176, + 399, + 186 + ], + "score": 0.85, + "content": "> 1", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "second) not aligned to any", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 141, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "input token are typically due to over-generation from the TTS system, such as long pauses,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 141, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "babbling, word repetitions, or failures to stop after finishing the utterance. The total duration", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 141, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "of such long unaligned segments divided by the total output duration is the UDR. Note that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 141, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "short unaligned segments are ignored. If the synthesized speech is unable to be aligned with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 230, + 372, + 242 + ], + "spans": [ + { + "bbox": [ + 142, + 230, + 344, + 242 + ], + "score": 1.0, + "content": "the input text, it is considered as having a UDR of", + "type": "text" + }, + { + "bbox": [ + 344, + 230, + 368, + 240 + ], + "score": 0.88, + "content": "100 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 230, + 372, + 242 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 130, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 130, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "2. ASR word deletion rate (WDR): This is the deletion error portion in a standard ASR word", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "error rate (WER) evaluation. Under-generation in the synthesized speech, such as early", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 267, + 370, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 370, + 279 + ], + "score": 1.0, + "content": "cutoff and word skipping, is reflected by a higher WDR.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + } + ], + "index": 10, + "bbox_fs": [ + 130, + 154, + 506, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 287, + 503, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "As the ASR system will make mistakes, the metrics above are just an upper-bound on the actual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 297, + 217, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 217, + 311 + ], + "score": 1.0, + "content": "failures of the TTS system.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 287, + 505, + 311 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 326, + 200, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 201, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 201, + 340 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "score": 1.0, + "content": "All models were trained on a proprietary dataset with 66 speakers with 4 different English accents", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "(US, British, Australian, and Nigerian). The amount of data per speaker varied from merely 5 seconds", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 372, + 234, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 234, + 385 + ], + "score": 1.0, + "content": "to 47 hours, totaling 354 hours.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 351, + 505, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "A preliminary experiment comparing different attention mechanisms (including monotonic, stepwise", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "monotonic, dynamic convolution and GMM attention (GMMA)) showed that GMMA performed", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 424 + ], + "score": 1.0, + "content": "the best. We therefore compared our non-attentive Tacotron not only with Tacotron 2 with location-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 506, + 434 + ], + "score": 1.0, + "content": "sensitive attention (LSA) which was used in the original Tacotron 2 paper but also with Tacotron 2", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 433, + 426, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 369, + 445 + ], + "score": 1.0, + "content": "with GMMA. The Tacotron 2 models used reduction factor 2 and", + "type": "text" + }, + { + "bbox": [ + 369, + 433, + 405, + 444 + ], + "score": 0.92, + "content": "L ^ { 1 } + L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 433, + 426, + 445 + ], + "score": 1.0, + "content": "loss.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 390, + 506, + 445 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "Following Shen et al. (2018), predicted features were obtained in teacher-forcing mode from a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 499, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 499, + 474 + ], + "score": 1.0, + "content": "Tacotron 2 model and used to train a WaveRNN vocoder which was then used for all experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 450, + 505, + 474 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 486, + 195, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 196, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 196, + 499 + ], + "score": 1.0, + "content": "6.1 NATURALNESS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "The naturalness of the synthesized speech was evaluated through subjective listening tests, including", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "5-scale Mean Opinion Score (MOS) tests and side-by-side preference tests. The sentences were", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "synthesized using 10 US English speakers (5 male / 5 female) in a round-robin fashion. The amount", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 540, + 406, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 406, + 552 + ], + "score": 1.0, + "content": "of training data for the evaluated speakers varied from 3 hours to 47 hours.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 506, + 506, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 556, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 568 + ], + "score": 1.0, + "content": "Table 1 contains MOS results. Non-Attentive Tacotron with Gaussian upsampling matched Tacotron 2", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "(GMMA) in naturalness, and both were close to the groundtruth audio. A preference test between", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 557, + 505, + 580 + ] + }, + { + "type": "table", + "bbox": [ + 116, + 622, + 275, + 725 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 601, + 285, + 613 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 601, + 287, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 183, + 614 + ], + "score": 1.0, + "content": "Table 1: MOS with", + "type": "text" + }, + { + "bbox": [ + 184, + 602, + 203, + 612 + ], + "score": 0.85, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 601, + 287, + 614 + ], + "score": 1.0, + "content": "confidence intervals.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "table_body", + "bbox": [ + 116, + 622, + 275, + 725 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 622, + 275, + 725 + ], + "spans": [ + { + "bbox": [ + 116, + 622, + 275, + 725 + ], + "score": 0.975, + "html": "
ModelMOS
Tacotron 2
w/LSA4.35 ± 0.05
w/ GMMA4.37 ± 0.04
Non-Attentive Tacotron w/ Gauss. upsampling
w/ vanilla upsampling4.41 ± 0.04
4.13 ± 0.05
Ground truth4.42 ± 0.04
", + "type": "table", + "image_path": "4b8e58ac6d446d602ff3d8334b74cf3d278039865d1b7f57219730137751e831.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 116, + 622, + 275, + 636.7142857142857 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 116, + 636.7142857142857, + 275, + 651.4285714285713 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 116, + 651.4285714285713, + 275, + 666.142857142857 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 116, + 666.142857142857, + 275, + 680.8571428571427 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 116, + 680.8571428571427, + 275, + 695.5714285714283 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 116, + 695.5714285714283, + 275, + 710.285714285714 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 116, + 710.285714285714, + 275, + 724.9999999999997 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "index": 38.0 + }, + { + "type": "image", + "bbox": [ + 315, + 597, + 487, + 686 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 315, + 597, + 487, + 686 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 315, + 597, + 487, + 686 + ], + "spans": [ + { + "bbox": [ + 315, + 597, + 487, + 686 + ], + "score": 0.966, + "type": "image", + "image_path": "298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg" + } + ] + } + ], + "index": 46.5, + "virtual_lines": [ + { + "bbox": [ + 315, + 597, + 487, + 611.8333333333334 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 315, + 611.8333333333334, + 487, + 626.6666666666667 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 315, + 626.6666666666667, + 487, + 641.5000000000001 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 315, + 641.5000000000001, + 487, + 656.3333333333335 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 315, + 656.3333333333335, + 487, + 671.1666666666669 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 315, + 671.1666666666669, + 487, + 686.0000000000002 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 302, + 695, + 502, + 729 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 302, + 695, + 502, + 707 + ], + "spans": [ + { + "bbox": [ + 302, + 695, + 502, + 707 + ], + "score": 1.0, + "content": "Figure 2: Preference test result with Non-Attentive", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 301, + 705, + 503, + 719 + ], + "spans": [ + { + "bbox": [ + 301, + 705, + 503, + 719 + ], + "score": 1.0, + "content": "Tacotron with Gaussian upsampling compared", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 301, + 717, + 422, + 730 + ], + "spans": [ + { + "bbox": [ + 301, + 717, + 422, + 730 + ], + "score": 1.0, + "content": "against Tacotron 2 (GMMA).", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + } + ], + "index": 48.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Non-Attentive Tacotron and Tacotron 2 (GMMA) further confirmed this result, as shown in Figure 2.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "Non-Attentive Tacotron with vanilla (repeating) upsampling was rated as significantly less natural", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 236, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 236, + 118 + ], + "score": 1.0, + "content": "than with Gaussian upsampling.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "The effectiveness of a learned range parameter versus a fixed temperature hyperparameter set at 10.0", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "as per Donahue et al. (2020) is compared using a preference test in Table 2. While there is only", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "a slight perceived benefit in using a learned range parameter, it reduces the need to tune another", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "dataset-dependent hyperparameter. Additionally, in multi-speaker setups it is possible that the optimal", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 225, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 114, + 175 + ], + "score": 0.66, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 165, + 225, + 178 + ], + "score": 1.0, + "content": "may be speaker-dependent.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "table", + "bbox": [ + 170, + 218, + 437, + 251 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 186, + 504, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 286, + 198 + ], + "score": 1.0, + "content": "Table 2: Preference test between a learned", + "type": "text" + }, + { + "bbox": [ + 287, + 189, + 294, + 196 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 186, + 356, + 198 + ], + "score": 1.0, + "content": "versus a fixed", + "type": "text" + }, + { + "bbox": [ + 357, + 189, + 365, + 196 + ], + "score": 0.71, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 186, + 505, + 198 + ], + "score": 1.0, + "content": "set at 10.0. Pace is defined as in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 197, + 500, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 374, + 210 + ], + "score": 1.0, + "content": "subsection 6.2. A negative preference value means that the learned", + "type": "text" + }, + { + "bbox": [ + 375, + 199, + 382, + 207 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 197, + 488, + 210 + ], + "score": 1.0, + "content": "is preferred over the fixed", + "type": "text" + }, + { + "bbox": [ + 488, + 199, + 495, + 207 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 197, + 500, + 210 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 170, + 218, + 437, + 251 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 170, + 218, + 437, + 251 + ], + "spans": [ + { + "bbox": [ + 170, + 218, + 437, + 251 + ], + "score": 0.963, + "html": "
Pace0.8×1.0×1.25×
Preference -0.017 ±0.057 -0.055±0.054 -0.017±0.055
", + "type": "table", + "image_path": "d00bbc13704af7d74258b800af26f713a08cb94947d00f56e960fc3c1f786605.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 170, + 218, + 437, + 229.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 170, + 229.0, + 437, + 240.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 170, + 240.0, + 437, + 251.0 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 9.75 + }, + { + "type": "title", + "bbox": [ + 107, + 269, + 197, + 280 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 199, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 199, + 282 + ], + "score": 1.0, + "content": "6.2 PACE CONTROL", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 289, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 290, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 290, + 301 + ], + "score": 1.0, + "content": "Table 3 shows WER and MOS results after", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 300, + 289, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 289, + 313 + ], + "score": 1.0, + "content": "modifying the utterance-wide pace by dividing", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 311, + 289, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 289, + 324 + ], + "score": 1.0, + "content": "the predicted durations by various factors. The", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 322, + 289, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 289, + 334 + ], + "score": 1.0, + "content": "WER is computed on speech synthesized on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 334, + 289, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 289, + 344 + ], + "score": 1.0, + "content": "transcripts from the LibriTTS test-clean subset", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 344, + 290, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 290, + 355 + ], + "score": 1.0, + "content": "with the same 10 speakers in subsection 6.1,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 355, + 290, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 290, + 366 + ], + "score": 1.0, + "content": "and then transcribed by an ASR model de-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 366, + 290, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 290, + 378 + ], + "score": 1.0, + "content": "scribed in Park et al. (2020) with a WER of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 377, + 235, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 128, + 388 + ], + "score": 0.84, + "content": "2 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 377, + 235, + 388 + ], + "score": 1.0, + "content": "on the ground truth audio.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 289, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 290, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 185, + 405 + ], + "score": 1.0, + "content": "With pace between", + "type": "text" + }, + { + "bbox": [ + 185, + 394, + 242, + 405 + ], + "score": 0.91, + "content": "0 . 8 \\times - 1 . 2 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 393, + 290, + 405 + ], + "score": 1.0, + "content": ", the WERs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 405, + 290, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 290, + 417 + ], + "score": 1.0, + "content": "were hardly impacted. The WER was signif-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 416, + 289, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 289, + 427 + ], + "score": 1.0, + "content": "icantly worse when the pace was increased", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 426, + 289, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 118, + 438 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 118, + 428, + 140, + 438 + ], + "score": 0.89, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 426, + 289, + 438 + ], + "score": 1.0, + "content": "normal, partially because the ASR", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 438, + 289, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 289, + 450 + ], + "score": 1.0, + "content": "model used was not optimized for speech", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 290, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 290, + 460 + ], + "score": 1.0, + "content": "so fast. In contrast, the subjective MOS de-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 460, + 290, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 290, + 472 + ], + "score": 1.0, + "content": "creased rapidly when the pace was sped up or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 471, + 290, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 290, + 483 + ], + "score": 1.0, + "content": "slowed down significantly. However, most of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 481, + 290, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 290, + 494 + ], + "score": 1.0, + "content": "the comments from raters were simply com-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 493, + 289, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 289, + 504 + ], + "score": 1.0, + "content": "plaining about the pace, such as “too slow to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 504, + 284, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 153, + 516 + ], + "score": 1.0, + "content": "be natural”", + "type": "text" + }, + { + "bbox": [ + 153, + 504, + 178, + 515 + ], + "score": 0.32, + "content": "\\mathbf { \\eta } ^ { ( 0 . 8 \\mathbf { x } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 504, + 250, + 516 + ], + "score": 1.0, + "content": "or “way too fast”", + "type": "text" + }, + { + "bbox": [ + 251, + 504, + 280, + 515 + ], + "score": 0.3, + "content": "( 1 . 2 5 \\mathrm { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 504, + 284, + 516 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 289, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 521, + 289, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 289, + 532 + ], + "score": 1.0, + "content": "Non-Attentive Tacotron is also able to control", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 531, + 289, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 289, + 543 + ], + "score": 1.0, + "content": "the pace of the synthesized speech at a finer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 543, + 290, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 290, + 555 + ], + "score": 1.0, + "content": "granularity, such as per-word or per-phoneme,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 553, + 291, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 291, + 565 + ], + "score": 1.0, + "content": "while still maintain the naturalness of the syn-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 564, + 290, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 290, + 576 + ], + "score": 1.0, + "content": "thesized speech. Figure 3 shows examples of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 575, + 290, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 290, + 587 + ], + "score": 1.0, + "content": "controlling the pace for specific words in a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 587, + 146, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 146, + 598 + ], + "score": 1.0, + "content": "sentence.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + }, + { + "type": "image", + "bbox": [ + 300, + 306, + 501, + 507 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 300, + 306, + 501, + 507 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 300, + 306, + 501, + 507 + ], + "spans": [ + { + "bbox": [ + 300, + 306, + 501, + 507 + ], + "score": 0.974, + "type": "image", + "image_path": "258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg" + } + ] + } + ], + "index": 48.5, + "virtual_lines": [ + { + "bbox": [ + 300, + 306, + 501, + 318.5625 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 300, + 318.5625, + 501, + 331.125 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 300, + 331.125, + 501, + 343.6875 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 300, + 343.6875, + 501, + 356.25 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 300, + 356.25, + 501, + 368.8125 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 300, + 368.8125, + 501, + 381.375 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 300, + 381.375, + 501, + 393.9375 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 300, + 393.9375, + 501, + 406.5 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 300, + 406.5, + 501, + 419.0625 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 300, + 419.0625, + 501, + 431.625 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 300, + 431.625, + 501, + 444.1875 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 300, + 444.1875, + 501, + 456.75 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 300, + 456.75, + 501, + 469.3125 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 300, + 469.3125, + 501, + 481.875 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 300, + 481.875, + 501, + 494.4375 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 300, + 494.4375, + 501, + 507.0 + ], + "spans": [], + "index": 56 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 296, + 517, + 506, + 583 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 296, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 296, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "Figure 3: Single word pace control with sentence", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 295, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 295, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "“I’m so saddened about the devastation in Big Basin.”", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 295, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 295, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "The top spectrogram is with regular pace. The rest", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 295, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 295, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "slow down the words “saddened”, “devastation”, and", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 295, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 295, + 561, + 409, + 574 + ], + "score": 1.0, + "content": "“Big Basin” respectively to", + "type": "text" + }, + { + "bbox": [ + 409, + 562, + 436, + 572 + ], + "score": 0.88, + "content": "0 . 6 7 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "the regular pace", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 296, + 572, + 467, + 585 + ], + "spans": [ + { + "bbox": [ + 296, + 572, + 442, + 585 + ], + "score": 1.0, + "content": "by scaling the predicted duration by", + "type": "text" + }, + { + "bbox": [ + 442, + 573, + 464, + 583 + ], + "score": 0.87, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 572, + 467, + 585 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 59.5 + } + ], + "index": 54.0 + }, + { + "type": "table", + "bbox": [ + 107, + 626, + 503, + 669 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 130, + 605, + 478, + 617 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 129, + 603, + 479, + 619 + ], + "spans": [ + { + "bbox": [ + 129, + 603, + 479, + 619 + ], + "score": 1.0, + "content": "Table 3: Performance of controlling the utterance-wide pace of the synthesized speech.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 63 + }, + { + "type": "table_body", + "bbox": [ + 107, + 626, + 503, + 669 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 626, + 503, + 669 + ], + "spans": [ + { + "bbox": [ + 107, + 626, + 503, + 669 + ], + "score": 0.974, + "html": "
Pace0.67×0.8×0.9×1.0×1.11×1.25×1.5×
WER3.3%2.8%2.6%2.6%2.5%2.7%6.1%
MOS3.28 ± 0.063.87 ± 0.054.24 ± 0.044.41 ± 0.044.28 ± 0.043.79 ± 0.063.18± 0.06
", + "type": "table", + "image_path": "cbfba8b6504066babc85f97147c918ff06051fad774bb865095488b60dcedc0b.jpg" + } + ] + } + ], + "index": 65, + "virtual_lines": [ + { + "bbox": [ + 107, + 626, + 503, + 640.3333333333334 + ], + "spans": [], + "index": 64 + }, + { + "bbox": [ + 107, + 640.3333333333334, + 503, + 654.6666666666667 + ], + "spans": [], + "index": 65 + }, + { + "bbox": [ + 107, + 654.6666666666667, + 503, + 669.0000000000001 + ], + "spans": [], + "index": 66 + } + ] + } + ], + "index": 64.0 + }, + { + "type": "title", + "bbox": [ + 108, + 690, + 395, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 396, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 396, + 702 + ], + "score": 1.0, + "content": "6.3 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING", + "type": "text" + } + ], + "index": 67 + } + ], + "index": 67 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Ten different US English speakers (5 male / 5 female) each with about 4 hours of training data were", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "used for evaluating the performance of the unsupervised and semi-supervised duration modeling.", + "type": "text" + } + ], + "index": 69 + } + ], + "index": 68.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Non-Attentive Tacotron and Tacotron 2 (GMMA) further confirmed this result, as shown in Figure 2.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "Non-Attentive Tacotron with vanilla (repeating) upsampling was rated as significantly less natural", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 236, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 236, + 118 + ], + "score": 1.0, + "content": "than with Gaussian upsampling.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "The effectiveness of a learned range parameter versus a fixed temperature hyperparameter set at 10.0", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "as per Donahue et al. (2020) is compared using a preference test in Table 2. While there is only", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "a slight perceived benefit in using a learned range parameter, it reduces the need to tune another", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "dataset-dependent hyperparameter. Additionally, in multi-speaker setups it is possible that the optimal", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 225, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 114, + 175 + ], + "score": 0.66, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 165, + 225, + 178 + ], + "score": 1.0, + "content": "may be speaker-dependent.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 120, + 506, + 178 + ] + }, + { + "type": "table", + "bbox": [ + 170, + 218, + 437, + 251 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 186, + 504, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 286, + 198 + ], + "score": 1.0, + "content": "Table 2: Preference test between a learned", + "type": "text" + }, + { + "bbox": [ + 287, + 189, + 294, + 196 + ], + "score": 0.7, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 186, + 356, + 198 + ], + "score": 1.0, + "content": "versus a fixed", + "type": "text" + }, + { + "bbox": [ + 357, + 189, + 365, + 196 + ], + "score": 0.71, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 186, + 505, + 198 + ], + "score": 1.0, + "content": "set at 10.0. Pace is defined as in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 197, + 500, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 374, + 210 + ], + "score": 1.0, + "content": "subsection 6.2. A negative preference value means that the learned", + "type": "text" + }, + { + "bbox": [ + 375, + 199, + 382, + 207 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 197, + 488, + 210 + ], + "score": 1.0, + "content": "is preferred over the fixed", + "type": "text" + }, + { + "bbox": [ + 488, + 199, + 495, + 207 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 197, + 500, + 210 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 170, + 218, + 437, + 251 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 170, + 218, + 437, + 251 + ], + "spans": [ + { + "bbox": [ + 170, + 218, + 437, + 251 + ], + "score": 0.963, + "html": "
Pace0.8×1.0×1.25×
Preference -0.017 ±0.057 -0.055±0.054 -0.017±0.055
", + "type": "table", + "image_path": "d00bbc13704af7d74258b800af26f713a08cb94947d00f56e960fc3c1f786605.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 170, + 218, + 437, + 229.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 170, + 229.0, + 437, + 240.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 170, + 240.0, + 437, + 251.0 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 9.75 + }, + { + "type": "title", + "bbox": [ + 107, + 269, + 197, + 280 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 199, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 199, + 282 + ], + "score": 1.0, + "content": "6.2 PACE CONTROL", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 289, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 290, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 290, + 301 + ], + "score": 1.0, + "content": "Table 3 shows WER and MOS results after", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 300, + 289, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 289, + 313 + ], + "score": 1.0, + "content": "modifying the utterance-wide pace by dividing", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 311, + 289, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 289, + 324 + ], + "score": 1.0, + "content": "the predicted durations by various factors. The", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 322, + 289, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 289, + 334 + ], + "score": 1.0, + "content": "WER is computed on speech synthesized on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 334, + 289, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 289, + 344 + ], + "score": 1.0, + "content": "transcripts from the LibriTTS test-clean subset", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 344, + 290, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 290, + 355 + ], + "score": 1.0, + "content": "with the same 10 speakers in subsection 6.1,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 355, + 290, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 290, + 366 + ], + "score": 1.0, + "content": "and then transcribed by an ASR model de-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 366, + 290, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 290, + 378 + ], + "score": 1.0, + "content": "scribed in Park et al. (2020) with a WER of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 377, + 235, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 128, + 388 + ], + "score": 0.84, + "content": "2 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 377, + 235, + 388 + ], + "score": 1.0, + "content": "on the ground truth audio.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 289, + 290, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 289, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 290, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 185, + 405 + ], + "score": 1.0, + "content": "With pace between", + "type": "text" + }, + { + "bbox": [ + 185, + 394, + 242, + 405 + ], + "score": 0.91, + "content": "0 . 8 \\times - 1 . 2 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 393, + 290, + 405 + ], + "score": 1.0, + "content": ", the WERs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 405, + 290, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 290, + 417 + ], + "score": 1.0, + "content": "were hardly impacted. The WER was signif-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 416, + 289, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 289, + 427 + ], + "score": 1.0, + "content": "icantly worse when the pace was increased", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 426, + 289, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 118, + 438 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 118, + 428, + 140, + 438 + ], + "score": 0.89, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 426, + 289, + 438 + ], + "score": 1.0, + "content": "normal, partially because the ASR", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 438, + 289, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 289, + 450 + ], + "score": 1.0, + "content": "model used was not optimized for speech", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 290, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 290, + 460 + ], + "score": 1.0, + "content": "so fast. In contrast, the subjective MOS de-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 460, + 290, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 290, + 472 + ], + "score": 1.0, + "content": "creased rapidly when the pace was sped up or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 471, + 290, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 290, + 483 + ], + "score": 1.0, + "content": "slowed down significantly. However, most of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 481, + 290, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 290, + 494 + ], + "score": 1.0, + "content": "the comments from raters were simply com-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 493, + 289, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 289, + 504 + ], + "score": 1.0, + "content": "plaining about the pace, such as “too slow to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 504, + 284, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 153, + 516 + ], + "score": 1.0, + "content": "be natural”", + "type": "text" + }, + { + "bbox": [ + 153, + 504, + 178, + 515 + ], + "score": 0.32, + "content": "\\mathbf { \\eta } ^ { ( 0 . 8 \\mathbf { x } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 504, + 250, + 516 + ], + "score": 1.0, + "content": "or “way too fast”", + "type": "text" + }, + { + "bbox": [ + 251, + 504, + 280, + 515 + ], + "score": 0.3, + "content": "( 1 . 2 5 \\mathrm { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 504, + 284, + 516 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 393, + 290, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 289, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 521, + 289, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 289, + 532 + ], + "score": 1.0, + "content": "Non-Attentive Tacotron is also able to control", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 531, + 289, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 289, + 543 + ], + "score": 1.0, + "content": "the pace of the synthesized speech at a finer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 543, + 290, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 290, + 555 + ], + "score": 1.0, + "content": "granularity, such as per-word or per-phoneme,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 553, + 291, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 291, + 565 + ], + "score": 1.0, + "content": "while still maintain the naturalness of the syn-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 564, + 290, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 290, + 576 + ], + "score": 1.0, + "content": "thesized speech. Figure 3 shows examples of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 575, + 290, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 290, + 587 + ], + "score": 1.0, + "content": "controlling the pace for specific words in a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 587, + 146, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 146, + 598 + ], + "score": 1.0, + "content": "sentence.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 521, + 291, + 598 + ] + }, + { + "type": "image", + "bbox": [ + 300, + 306, + 501, + 507 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 300, + 306, + 501, + 507 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 300, + 306, + 501, + 507 + ], + "spans": [ + { + "bbox": [ + 300, + 306, + 501, + 507 + ], + "score": 0.974, + "type": "image", + "image_path": "258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg" + } + ] + } + ], + "index": 48.5, + "virtual_lines": [ + { + "bbox": [ + 300, + 306, + 501, + 318.5625 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 300, + 318.5625, + 501, + 331.125 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 300, + 331.125, + 501, + 343.6875 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 300, + 343.6875, + 501, + 356.25 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 300, + 356.25, + 501, + 368.8125 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 300, + 368.8125, + 501, + 381.375 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 300, + 381.375, + 501, + 393.9375 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 300, + 393.9375, + 501, + 406.5 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 300, + 406.5, + 501, + 419.0625 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 300, + 419.0625, + 501, + 431.625 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 300, + 431.625, + 501, + 444.1875 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 300, + 444.1875, + 501, + 456.75 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 300, + 456.75, + 501, + 469.3125 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 300, + 469.3125, + 501, + 481.875 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 300, + 481.875, + 501, + 494.4375 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 300, + 494.4375, + 501, + 507.0 + ], + "spans": [], + "index": 56 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 296, + 517, + 506, + 583 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 296, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 296, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "Figure 3: Single word pace control with sentence", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 295, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 295, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "“I’m so saddened about the devastation in Big Basin.”", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 295, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 295, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "The top spectrogram is with regular pace. The rest", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 295, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 295, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "slow down the words “saddened”, “devastation”, and", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 295, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 295, + 561, + 409, + 574 + ], + "score": 1.0, + "content": "“Big Basin” respectively to", + "type": "text" + }, + { + "bbox": [ + 409, + 562, + 436, + 572 + ], + "score": 0.88, + "content": "0 . 6 7 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "the regular pace", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 296, + 572, + 467, + 585 + ], + "spans": [ + { + "bbox": [ + 296, + 572, + 442, + 585 + ], + "score": 1.0, + "content": "by scaling the predicted duration by", + "type": "text" + }, + { + "bbox": [ + 442, + 573, + 464, + 583 + ], + "score": 0.87, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 572, + 467, + 585 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 59.5 + } + ], + "index": 54.0 + }, + { + "type": "table", + "bbox": [ + 107, + 626, + 503, + 669 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 130, + 605, + 478, + 617 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 129, + 603, + 479, + 619 + ], + "spans": [ + { + "bbox": [ + 129, + 603, + 479, + 619 + ], + "score": 1.0, + "content": "Table 3: Performance of controlling the utterance-wide pace of the synthesized speech.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 63 + }, + { + "type": "table_body", + "bbox": [ + 107, + 626, + 503, + 669 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 626, + 503, + 669 + ], + "spans": [ + { + "bbox": [ + 107, + 626, + 503, + 669 + ], + "score": 0.974, + "html": "
Pace0.67×0.8×0.9×1.0×1.11×1.25×1.5×
WER3.3%2.8%2.6%2.6%2.5%2.7%6.1%
MOS3.28 ± 0.063.87 ± 0.054.24 ± 0.044.41 ± 0.044.28 ± 0.043.79 ± 0.063.18± 0.06
", + "type": "table", + "image_path": "cbfba8b6504066babc85f97147c918ff06051fad774bb865095488b60dcedc0b.jpg" + } + ] + } + ], + "index": 65, + "virtual_lines": [ + { + "bbox": [ + 107, + 626, + 503, + 640.3333333333334 + ], + "spans": [], + "index": 64 + }, + { + "bbox": [ + 107, + 640.3333333333334, + 503, + 654.6666666666667 + ], + "spans": [], + "index": 65 + }, + { + "bbox": [ + 107, + 654.6666666666667, + 503, + 669.0000000000001 + ], + "spans": [], + "index": 66 + } + ] + } + ], + "index": 64.0 + }, + { + "type": "title", + "bbox": [ + 108, + 690, + 395, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 396, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 396, + 702 + ], + "score": 1.0, + "content": "6.3 SEMI-SUPERVISED AND UNSUPERVISED DURATION MODELING", + "type": "text" + } + ], + "index": 67 + } + ], + "index": 67 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Ten different US English speakers (5 male / 5 female) each with about 4 hours of training data were", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "used for evaluating the performance of the unsupervised and semi-supervised duration modeling.", + "type": "text" + } + ], + "index": 69 + } + ], + "index": 68.5, + "bbox_fs": [ + 106, + 708, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 79, + 466, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 79, + 466, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 79, + 466, + 192 + ], + "spans": [ + { + "bbox": [ + 108, + 79, + 466, + 192 + ], + "score": 0.971, + "type": "image", + "image_path": "26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 79, + 466, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 116.66666666666666, + 466, + 154.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 154.33333333333331, + 466, + 191.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 201, + 505, + 224 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 200, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 504, + 213 + ], + "score": 1.0, + "content": "Figure 4: Alignment on text “What time do I need to show up to my sky diving lesson?” from the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 212, + 423, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 423, + 226 + ], + "score": 1.0, + "content": "unsupervised model. The predicted alignments are from Gaussian upsampling.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 156, + 290, + 453, + 389 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 259, + 505, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "Table 4: Performance of unsupervised and semi-supervised duration modeling. Zero vectors are used", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 270, + 385, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 385, + 283 + ], + "score": 1.0, + "content": "as FVAE latents for inference. MAE denotes the mean absolute error.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 156, + 290, + 453, + 389 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 290, + 453, + 389 + ], + "spans": [ + { + "bbox": [ + 156, + 290, + 453, + 389 + ], + "score": 0.982, + "html": "
TrainingModelDur. MAE (ms)MOS
Unsupervisedw/o FVAE124.42.91± 0.09
w/ FVAE41.34.31 ± 0.04
Semi-supervisedw/o FVAE21.54.19 ± 0.05
Supervisedw/FVAE18.34.35 ± 0.04
Non-Attentive Tacotron15.44.37 ± 0.04
Tacotron2 w/ GMMA-4.35 ± 0.04
Ground truth=4.52 ± 0.03
", + "type": "table", + "image_path": "6176ec827b7d0697c5ef83205c089f8232c9bfbfe329262cbae851cf39b3df79.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 156, + 290, + 453, + 323.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 156, + 323.0, + 453, + 356.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 156, + 356.0, + 453, + 389.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 504, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 315, + 446 + ], + "score": 1.0, + "content": "The duration labels for these 10 speakers (i.e. about", + "type": "text" + }, + { + "bbox": [ + 315, + 434, + 335, + 444 + ], + "score": 0.87, + "content": "11 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "of the training data) were withheld for the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 444, + 475, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 475, + 457 + ], + "score": 1.0, + "content": "semi-supervised models, and all duration labels were withheld for the unsupervised models.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "Figure 4 shows predicted alignment after Gaussian upsampling and the internal alignment from the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 473, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 484 + ], + "score": 1.0, + "content": "attention module in the FVAE compared with the alignment computed from the target durations,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "for the unsupervised model. Despite not having access to any target durations, both the FVAE and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "duration predictor were able to produce an alignment close to that computed from the target durations.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "As shown in Table 4, with the use of the FVAE, the naturalness of both semi-supervised and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "unsupervised models were very close to that of the supervised models, even though duration prediction", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "errors were higher. The autoregressive decoder trained with teacher forcing may have been powerful", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "enough to correct the duration prediction errors to some degree. However, the naturalness degraded", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "significantly without the use of the FVAE. Although the duration error from the semi-supervised", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "model without FVAE was lower than that from the unsupervised model with FVAE, the former was", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "significantly less natural than the latter. This may be due to a lower consistency between supervised", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 588, + 278, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 278, + 600 + ], + "score": 1.0, + "content": "and unsupervised speakers without FVAE.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "Although these models were close to the supervised model in MOS, manual investigation found", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "that samples from both semi-supervised models and unsupervised models had a small chance of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "score": 1.0, + "content": "containing slight errors that do not occur in the supervised model, such as unclear pronunciations,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "phoneme repetitions, or extra pauses. However, they are significantly less severe than similar errors", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "from Tacotron 2, mostly impacting just one or a few phonemes. These errors are further confirmed in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 660, + 322, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 322, + 672 + ], + "score": 1.0, + "content": "the large scale robustness evaluation (subsection 6.4).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "The utterance-wide or fine-grained pace control (subsection 6.2) can be applied to the semi-supervised", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "and unsupervised models as well. However, as the alignments are not as accurate, the synthesized", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "speech with fine-grained pace control are not as natural as from the supervised model. The duration", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "may be extended by simply inserting more silence, and the extended portion may include phoneme", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 721, + 257, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 257, + 733 + ], + "score": 1.0, + "content": "repetitions or unclear pronunciations.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": "image", + "bbox": [ + 108, + 79, + 466, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 79, + 466, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 79, + 466, + 192 + ], + "spans": [ + { + "bbox": [ + 108, + 79, + 466, + 192 + ], + "score": 0.971, + "type": "image", + "image_path": "26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 79, + 466, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 116.66666666666666, + 466, + 154.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 154.33333333333331, + 466, + 191.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 201, + 505, + 224 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 200, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 504, + 213 + ], + "score": 1.0, + "content": "Figure 4: Alignment on text “What time do I need to show up to my sky diving lesson?” from the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 212, + 423, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 423, + 226 + ], + "score": 1.0, + "content": "unsupervised model. The predicted alignments are from Gaussian upsampling.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 156, + 290, + 453, + 389 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 259, + 505, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "Table 4: Performance of unsupervised and semi-supervised duration modeling. Zero vectors are used", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 270, + 385, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 385, + 283 + ], + "score": 1.0, + "content": "as FVAE latents for inference. MAE denotes the mean absolute error.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 156, + 290, + 453, + 389 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 290, + 453, + 389 + ], + "spans": [ + { + "bbox": [ + 156, + 290, + 453, + 389 + ], + "score": 0.982, + "html": "
TrainingModelDur. MAE (ms)MOS
Unsupervisedw/o FVAE124.42.91± 0.09
w/ FVAE41.34.31 ± 0.04
Semi-supervisedw/o FVAE21.54.19 ± 0.05
Supervisedw/FVAE18.34.35 ± 0.04
Non-Attentive Tacotron15.44.37 ± 0.04
Tacotron2 w/ GMMA-4.35 ± 0.04
Ground truth=4.52 ± 0.03
", + "type": "table", + "image_path": "6176ec827b7d0697c5ef83205c089f8232c9bfbfe329262cbae851cf39b3df79.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 156, + 290, + 453, + 323.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 156, + 323.0, + 453, + 356.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 156, + 356.0, + 453, + 389.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 504, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 315, + 446 + ], + "score": 1.0, + "content": "The duration labels for these 10 speakers (i.e. about", + "type": "text" + }, + { + "bbox": [ + 315, + 434, + 335, + 444 + ], + "score": 0.87, + "content": "11 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "of the training data) were withheld for the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 444, + 475, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 475, + 457 + ], + "score": 1.0, + "content": "semi-supervised models, and all duration labels were withheld for the unsupervised models.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 432, + 505, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "Figure 4 shows predicted alignment after Gaussian upsampling and the internal alignment from the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 473, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 484 + ], + "score": 1.0, + "content": "attention module in the FVAE compared with the alignment computed from the target durations,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "for the unsupervised model. Despite not having access to any target durations, both the FVAE and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "duration predictor were able to produce an alignment close to that computed from the target durations.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 462, + 506, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "As shown in Table 4, with the use of the FVAE, the naturalness of both semi-supervised and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "unsupervised models were very close to that of the supervised models, even though duration prediction", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "errors were higher. The autoregressive decoder trained with teacher forcing may have been powerful", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "enough to correct the duration prediction errors to some degree. However, the naturalness degraded", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "significantly without the use of the FVAE. Although the duration error from the semi-supervised", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "model without FVAE was lower than that from the unsupervised model with FVAE, the former was", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "significantly less natural than the latter. This may be due to a lower consistency between supervised", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 588, + 278, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 278, + 600 + ], + "score": 1.0, + "content": "and unsupervised speakers without FVAE.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 511, + 506, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "Although these models were close to the supervised model in MOS, manual investigation found", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "that samples from both semi-supervised models and unsupervised models had a small chance of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "score": 1.0, + "content": "containing slight errors that do not occur in the supervised model, such as unclear pronunciations,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "phoneme repetitions, or extra pauses. However, they are significantly less severe than similar errors", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "from Tacotron 2, mostly impacting just one or a few phonemes. These errors are further confirmed in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 660, + 322, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 322, + 672 + ], + "score": 1.0, + "content": "the large scale robustness evaluation (subsection 6.4).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 605, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "The utterance-wide or fine-grained pace control (subsection 6.2) can be applied to the semi-supervised", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "and unsupervised models as well. However, as the alignments are not as accurate, the synthesized", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "speech with fine-grained pace control are not as natural as from the supervised model. The duration", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "may be extended by simply inserting more silence, and the extended portion may include phoneme", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 721, + 257, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 257, + 733 + ], + "score": 1.0, + "content": "repetitions or unclear pronunciations.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 677, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 158, + 111, + 450, + 220 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 504, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "score": 1.0, + "content": "Table 5: Robustness measured by UDR and WDR on two large evaluation sets. The evaluation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 432, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 432, + 103 + ], + "score": 1.0, + "content": "speakers are unsupervised ones in the semi-supervised and unsupervised models.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 158, + 111, + 450, + 220 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 158, + 111, + 450, + 220 + ], + "spans": [ + { + "bbox": [ + 158, + 111, + 450, + 220 + ], + "score": 0.982, + "html": "
SystemLibriTTSweb-long
UDR (%)WDR (%)UDR (%)WDR (%)
Tacotron 2
w/LSA16.960.446.044.4
w/ GMMA3.8120.16.1571.3
Non-Attentive Tacotron
Supervised0.0050.10.0111.1
Semi-supervised0.2660.90.6953.5
Unsupervised0.2230.70.5273.2
", + "type": "table", + "image_path": "ff0ab9aa5d6d2e0ff69056bfa30b8b097798bd422544d0a80f135e4770ae02b1.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 158, + 111, + 450, + 147.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 158, + 147.33333333333334, + 450, + 183.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 158, + 183.66666666666669, + 450, + 220.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "title", + "bbox": [ + 107, + 249, + 189, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 190, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 190, + 262 + ], + "score": 1.0, + "content": "6.4 ROBUSTNESS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "score": 1.0, + "content": "We evaluated the robustness of the neural TTS models by measuring UDR and WDR on two large", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 285, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 506, + 296 + ], + "score": 1.0, + "content": "evaluation sets: LibriTTS: 354K sentences from all train subsets from the LibriTTS corpus (Zen et al.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 295, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 506, + 307 + ], + "score": 1.0, + "content": "2019); and web-long: 100K long sentences mined from the web, which included a small amount of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "score": 1.0, + "content": "irregular text such as programming code. The median text lengths of the two sets were 74 and 224", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "characters, respectively. The input was synthesized using the same 10 speakers in subsection 6.3 in a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 328, + 381, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 381, + 339 + ], + "score": 1.0, + "content": "round-robin fashion. All model outputs were capped at 120 seconds.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 344, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "We used the ASR model trained on the LibriSpeech (Panayotov et al., 2015) and LibriLight (Kahn", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "et al., 2020) corpora from Park et al. (2020) for measuring WDR, and a confidence islands-based", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 367, + 363, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 363, + 379 + ], + "score": 1.0, + "content": "forced alignment model (Chiu et al., 2018) for measuring UDR.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "Table 5 shows the robustness metrics for Tacotron 2 and Non-Attentive Tacotron. Tacotron 2 (LSA)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "suffered from severe over-generation as measured by UDR, especially on long inputs. Manual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "investigation uncovered that they were typically long babbling or long silence, often at the end (failure", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "to stop). It also had a high level of under-generation as measured by WDR, typically due to early", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "cutoff. Tacotron 2 (GMMA) performed almost as well as the supervised Non-Attentive Tacotron in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "WDR because of its soft monotonic nature, which made end-of-sentence prediction easier. However,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "it still had significantly higher level of over-generation compared to Non-Attentive Tacotron, even", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "when unsupervised or semi-supervised duration modeling is used for the latter. The robustness of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "semi-supervised and unsupervised Non-Attentive Tacotron is significantly worse than the supervised", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 481, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 496 + ], + "score": 1.0, + "content": "one. Manual investigation uncovered that the typical failure pattern is that part of the spectrogram", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "is not correctly synthesized (often as silence, but sometimes as babbling), despite that the duration", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "prediction seems reasonable. Such failure pattern contributes to both UDR and WDR. This indicates", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "further improvements to be made. Even then, the semi-supervised and unsupervised Non-Attentive", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 525, + 454, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 454, + 539 + ], + "score": 1.0, + "content": "Tacotron still performs significantly better on over-generation compared to Tacotron 2.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 543, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "In practice, we also observed that Tacotron 2 required significantly more care in data preprocessing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "to achieve this level of robustness, including consistent trimming of leading and trailing silences and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "filtering out utterances with long pauses. On the other hand, Non-Attentive Tacotron is significantly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 576, + 287, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 287, + 589 + ], + "score": 1.0, + "content": "less sensitive to the data preprocessing steps.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 108, + 613, + 201, + 626 + ], + "lines": [ + { + "bbox": [ + 104, + 611, + 203, + 629 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 203, + 629 + ], + "score": 1.0, + "content": "7 CONCLUSIONS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "This paper presented Non-Attentive Tacotron, showing a significant improvement in robustness", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "compared to Tacotron 2 as measured by unaligned duration ratio and word deletion rate, while also", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "slightly outperforming it in naturalness. This was achieved by replacing the attention mechanism", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "in Tacotron 2 with an explicit duration predictor and Gaussian upsampling. We demonstrated the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "ability to control the pacing of the entire utterance as well as individual words using the duration", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "predictor. We also described a method of modeling duration in a semi-supervised or unsupervised", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "manner using Non-Attentive Tacotron when accurate target duration are scarce or unavailable by", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 720, + 491, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 491, + 733 + ], + "score": 1.0, + "content": "using a fine-grained variational auto-encoder, with results almost as good as supervised training.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 158, + 111, + 450, + 220 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 504, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "score": 1.0, + "content": "Table 5: Robustness measured by UDR and WDR on two large evaluation sets. The evaluation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 432, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 432, + 103 + ], + "score": 1.0, + "content": "speakers are unsupervised ones in the semi-supervised and unsupervised models.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 158, + 111, + 450, + 220 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 158, + 111, + 450, + 220 + ], + "spans": [ + { + "bbox": [ + 158, + 111, + 450, + 220 + ], + "score": 0.982, + "html": "
SystemLibriTTSweb-long
UDR (%)WDR (%)UDR (%)WDR (%)
Tacotron 2
w/LSA16.960.446.044.4
w/ GMMA3.8120.16.1571.3
Non-Attentive Tacotron
Supervised0.0050.10.0111.1
Semi-supervised0.2660.90.6953.5
Unsupervised0.2230.70.5273.2
", + "type": "table", + "image_path": "ff0ab9aa5d6d2e0ff69056bfa30b8b097798bd422544d0a80f135e4770ae02b1.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 158, + 111, + 450, + 147.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 158, + 147.33333333333334, + 450, + 183.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 158, + 183.66666666666669, + 450, + 220.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "title", + "bbox": [ + 107, + 249, + 189, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 190, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 190, + 262 + ], + "score": 1.0, + "content": "6.4 ROBUSTNESS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "score": 1.0, + "content": "We evaluated the robustness of the neural TTS models by measuring UDR and WDR on two large", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 285, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 506, + 296 + ], + "score": 1.0, + "content": "evaluation sets: LibriTTS: 354K sentences from all train subsets from the LibriTTS corpus (Zen et al.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 295, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 506, + 307 + ], + "score": 1.0, + "content": "2019); and web-long: 100K long sentences mined from the web, which included a small amount of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "score": 1.0, + "content": "irregular text such as programming code. The median text lengths of the two sets were 74 and 224", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "characters, respectively. The input was synthesized using the same 10 speakers in subsection 6.3 in a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 328, + 381, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 381, + 339 + ], + "score": 1.0, + "content": "round-robin fashion. All model outputs were capped at 120 seconds.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 271, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 344, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "We used the ASR model trained on the LibriSpeech (Panayotov et al., 2015) and LibriLight (Kahn", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "et al., 2020) corpora from Park et al. (2020) for measuring WDR, and a confidence islands-based", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 367, + 363, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 363, + 379 + ], + "score": 1.0, + "content": "forced alignment model (Chiu et al., 2018) for measuring UDR.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 344, + 505, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "Table 5 shows the robustness metrics for Tacotron 2 and Non-Attentive Tacotron. Tacotron 2 (LSA)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "suffered from severe over-generation as measured by UDR, especially on long inputs. Manual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "investigation uncovered that they were typically long babbling or long silence, often at the end (failure", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "to stop). It also had a high level of under-generation as measured by WDR, typically due to early", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "cutoff. Tacotron 2 (GMMA) performed almost as well as the supervised Non-Attentive Tacotron in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "WDR because of its soft monotonic nature, which made end-of-sentence prediction easier. However,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "it still had significantly higher level of over-generation compared to Non-Attentive Tacotron, even", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "when unsupervised or semi-supervised duration modeling is used for the latter. The robustness of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "semi-supervised and unsupervised Non-Attentive Tacotron is significantly worse than the supervised", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 481, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 496 + ], + "score": 1.0, + "content": "one. Manual investigation uncovered that the typical failure pattern is that part of the spectrogram", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "is not correctly synthesized (often as silence, but sometimes as babbling), despite that the duration", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "prediction seems reasonable. Such failure pattern contributes to both UDR and WDR. This indicates", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "further improvements to be made. Even then, the semi-supervised and unsupervised Non-Attentive", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 525, + 454, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 454, + 539 + ], + "score": 1.0, + "content": "Tacotron still performs significantly better on over-generation compared to Tacotron 2.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 383, + 506, + 539 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 543, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "In practice, we also observed that Tacotron 2 required significantly more care in data preprocessing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "to achieve this level of robustness, including consistent trimming of leading and trailing silences and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "filtering out utterances with long pauses. On the other hand, Non-Attentive Tacotron is significantly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 576, + 287, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 287, + 589 + ], + "score": 1.0, + "content": "less sensitive to the data preprocessing steps.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 542, + 505, + 589 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 613, + 201, + 626 + ], + "lines": [ + { + "bbox": [ + 104, + 611, + 203, + 629 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 203, + 629 + ], + "score": 1.0, + "content": "7 CONCLUSIONS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "This paper presented Non-Attentive Tacotron, showing a significant improvement in robustness", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "compared to Tacotron 2 as measured by unaligned duration ratio and word deletion rate, while also", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "slightly outperforming it in naturalness. This was achieved by replacing the attention mechanism", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "in Tacotron 2 with an explicit duration predictor and Gaussian upsampling. We demonstrated the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "ability to control the pacing of the entire utterance as well as individual words using the duration", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "predictor. We also described a method of modeling duration in a semi-supervised or unsupervised", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "manner using Non-Attentive Tacotron when accurate target duration are scarce or unavailable by", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 720, + 491, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 491, + 733 + ], + "score": 1.0, + "content": "using a fine-grained variational auto-encoder, with results almost as good as supervised training.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 644, + 506, + 733 + ] + } + ] + }, + { + "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": [ + 109, + 100, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 114 + ], + "score": 1.0, + "content": "Sercan O Arik, Mike Chrzanowski, Adam Coates, Gregory Diamos, Andrew Gibiansky, Yongguo", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "Kang, Xian Li, John Miller, Andrew Ng, Jonathan Raiman, Shubho Sengupta, and Mohammad", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 492, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 492, + 136 + ], + "score": 1.0, + "content": "Shoeybi. Deep Voice: Real-Time Neural Text-to-Speech. In Proc. ICML, pp. 195–204, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 105, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 336, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 336, + 165 + ], + "score": 1.0, + "content": "Learning to Align and Translate. In Proc. ICLR, 2015.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 172, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "Eric Battenberg, RJ Skerry-Ryan, Soroosh Mariooryad, Daisy Stanton, David Kao, Matt Shannon, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "Tom Bagby. Location-Relative Attention Mechanisms For Robust Long-Form Speech Synthesis.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 195, + 212, + 206 + ], + "spans": [ + { + "bbox": [ + 116, + 195, + 212, + 206 + ], + "score": 1.0, + "content": "In Proc. ICASSP, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "Stanislav Beliaev, Yurii Rebryk, and Boris Ginsburg. TalkNet: Fully-Convolutional Non-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 444, + 238 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 444, + 238 + ], + "score": 1.0, + "content": "Autoregressive Speech Synthesis Model. arXiv preprint arXiv:2005.05514, 2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 504, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "Fadi Biadsy, Ron J. Weiss, Pedro J. Moreno, Dimitri Kanvesky, and Ye. Jia. Parrotron: An End-to-End", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 117, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 117, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "Speech-to-Speech Conversion Model and its Applications Hearing-Impaired Speech and Speech", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 267, + 341, + 280 + ], + "spans": [ + { + "bbox": [ + 117, + 267, + 341, + 280 + ], + "score": 1.0, + "content": "Separation. In Proc. Interspeech, pp. 4115–4119, 2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 310 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 302 + ], + "score": 1.0, + "content": "W. Chan, N. Jaitly, Q. Le, and O. Vinyals. Listen, Attend and Spell: A Neural Network for Large", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 117, + 297, + 473, + 311 + ], + "spans": [ + { + "bbox": [ + 117, + 297, + 473, + 311 + ], + "score": 1.0, + "content": "Vocabulary Conversational Speech Recognition. In Proc. ICASSP, pp. 4960–4964, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "Nanxin Chen, Yu Zhang, Heiga Zen, Ron J Weiss, Mohammad Norouzi, and William Chan. WaveG-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 328, + 492, + 341 + ], + "spans": [ + { + "bbox": [ + 116, + 328, + 492, + 341 + ], + "score": 1.0, + "content": "rad: Estimating Gradients for Waveform Generation. arXiv preprint arXiv:2009.00713, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "score": 1.0, + "content": "Chung-Cheng Chiu, Anshuman Tripathi, Katherine Chou, Chris Co, Navdeep Jaitly, Diana Jaun-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 360, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 360, + 505, + 371 + ], + "score": 1.0, + "content": "zeikare, Anjuli Kannan, Patrick Nguyen, Hasim Sak, Ananth Sankar, Justin Tansuwan, Nathan", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 369, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 507, + 383 + ], + "score": 1.0, + "content": "Wan, Yonghui Wu, and Xuedong Zhang. Speech Recognition for Medical Conversations. In Proc.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 381, + 258, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 258, + 393 + ], + "score": 1.0, + "content": "Interspeech, pp. 2972–2976, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 104, + 400, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "Jan K Chorowski, Dzmitry Bahdanau, Dmitriy Serdyuk, Kyunghyun Cho, and Yoshua Bengio.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 411, + 408, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 408, + 424 + ], + "score": 1.0, + "content": "Attention-based models for speech recognition. In Proc. NeurIPS, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 105, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "Shaojin Ding, Ye Jia, Ke Hu, and Quan Wang. Textual Echo Cancellation. arXiv preprint", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 442, + 218, + 453 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 218, + 453 + ], + "score": 1.0, + "content": "arXiv:2008.06006, 2020.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "Jeff Donahue, Sander Dieleman, Mikołaj Binkowski, Erich Elsen, and Karen Simonyan. End-to-End ´", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 473, + 393, + 485 + ], + "spans": [ + { + "bbox": [ + 116, + 473, + 393, + 485 + ], + "score": 1.0, + "content": "Adversarial Text-to-Speech. arXiv preprint arXiv:2006.03575, 2020.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 504, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "Andrew Gibiansky, Sercan Arik, Gregory Diamos, John Miller, Kainan Peng, Wei Ping, Jonathan", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "Raiman, and Yanqi Zhou. Deep voice 2: Multi-speaker neural text-to-speech. In Advances in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 515, + 365, + 527 + ], + "spans": [ + { + "bbox": [ + 115, + 515, + 365, + 527 + ], + "score": 1.0, + "content": "neural information processing systems, pp. 2962–2970, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 174, + 547 + ], + "score": 1.0, + "content": "Alex Graves.", + "type": "text" + }, + { + "bbox": [ + 176, + 532, + 506, + 547 + ], + "score": 1.0, + "content": "Generating Sequences with Recurrent Neural Networks. arXiv preprint", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 544, + 215, + 557 + ], + "spans": [ + { + "bbox": [ + 115, + 544, + 215, + 557 + ], + "score": 1.0, + "content": "arXiv:1308.0850, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "score": 1.0, + "content": "Jiatao Gu, James Bradbury, Caiming Xiong, Victor OK Li, and Richard Socher. Non-autoregressive", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 391, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 391, + 588 + ], + "score": 1.0, + "content": "neural machine translation. arXiv preprint arXiv:1711.02281, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 104, + 595, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 609 + ], + "score": 1.0, + "content": "Haohan Guo, Frank K Soong, Lei He, and Lei Xie. A New GAN-based End-to-End TTS Training", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 606, + 339, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 339, + 619 + ], + "score": 1.0, + "content": "Algorithm. In Proc. Interspeech, pp. 1288–1292, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 104, + 626, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 640 + ], + "score": 1.0, + "content": "Mutian He, Yan Deng, and Lei He. Robust Sequence-to-Sequence Acoustic Modeling with Stepwise", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 637, + 446, + 649 + ], + "spans": [ + { + "bbox": [ + 117, + 637, + 446, + 649 + ], + "score": 1.0, + "content": "Monotonic Attention for Neural TTS. In Proc. Interspeech, pp. 1293–1297, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 504, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 506, + 671 + ], + "score": 1.0, + "content": "Ye Jia, Yu Zhang, Ron J. Weiss, Quan Wang, Jonathan Shen, Fei Ren, Zhifeng Chen, Patrick Nguyen,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Ruoming Pang, Ignacio Lopez-Moreno, and Yonghui Wu. Transfer Learning from Speaker", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 679, + 439, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 439, + 691 + ], + "score": 1.0, + "content": "Verification to Multispeaker Text-To-Speech Synthesis. In Proc. NeurIPS, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Ye Jia, Ron J Weiss, Fadi Biadsy, Wolfgang Macherey, Melvin Johnson, Zhifeng Chen, and Yonghui", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Wu. Direct Speech-to-Speech Translation with a Sequence-to-Sequence Model. In Proc. Inter-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 238, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 238, + 732 + ], + "score": 1.0, + "content": "speech, pp. 1123–1127, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "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": [ + 109, + 100, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 114 + ], + "score": 1.0, + "content": "Sercan O Arik, Mike Chrzanowski, Adam Coates, Gregory Diamos, Andrew Gibiansky, Yongguo", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 116, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "Kang, Xian Li, John Miller, Andrew Ng, Jonathan Raiman, Shubho Sengupta, and Mohammad", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 492, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 492, + 136 + ], + "score": 1.0, + "content": "Shoeybi. Deep Voice: Real-Time Neural Text-to-Speech. In Proc. ICML, pp. 195–204, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 99, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 155 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 336, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 336, + 165 + ], + "score": 1.0, + "content": "Learning to Align and Translate. In Proc. ICLR, 2015.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 140, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 172, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "Eric Battenberg, RJ Skerry-Ryan, Soroosh Mariooryad, Daisy Stanton, David Kao, Matt Shannon, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "Tom Bagby. Location-Relative Attention Mechanisms For Robust Long-Form Speech Synthesis.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 195, + 212, + 206 + ], + "spans": [ + { + "bbox": [ + 116, + 195, + 212, + 206 + ], + "score": 1.0, + "content": "In Proc. ICASSP, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 173, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "Stanislav Beliaev, Yurii Rebryk, and Boris Ginsburg. TalkNet: Fully-Convolutional Non-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 444, + 238 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 444, + 238 + ], + "score": 1.0, + "content": "Autoregressive Speech Synthesis Model. arXiv preprint arXiv:2005.05514, 2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 213, + 505, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 504, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "Fadi Biadsy, Ron J. Weiss, Pedro J. Moreno, Dimitri Kanvesky, and Ye. Jia. Parrotron: An End-to-End", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 117, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 117, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "Speech-to-Speech Conversion Model and its Applications Hearing-Impaired Speech and Speech", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 267, + 341, + 280 + ], + "spans": [ + { + "bbox": [ + 117, + 267, + 341, + 280 + ], + "score": 1.0, + "content": "Separation. In Proc. Interspeech, pp. 4115–4119, 2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 245, + 505, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 310 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 302 + ], + "score": 1.0, + "content": "W. Chan, N. Jaitly, Q. Le, and O. Vinyals. Listen, Attend and Spell: A Neural Network for Large", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 117, + 297, + 473, + 311 + ], + "spans": [ + { + "bbox": [ + 117, + 297, + 473, + 311 + ], + "score": 1.0, + "content": "Vocabulary Conversational Speech Recognition. In Proc. ICASSP, pp. 4960–4964, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 284, + 506, + 311 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "Nanxin Chen, Yu Zhang, Heiga Zen, Ron J Weiss, Mohammad Norouzi, and William Chan. WaveG-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 328, + 492, + 341 + ], + "spans": [ + { + "bbox": [ + 116, + 328, + 492, + 341 + ], + "score": 1.0, + "content": "rad: Estimating Gradients for Waveform Generation. arXiv preprint arXiv:2009.00713, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 317, + 506, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "score": 1.0, + "content": "Chung-Cheng Chiu, Anshuman Tripathi, Katherine Chou, Chris Co, Navdeep Jaitly, Diana Jaun-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 360, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 360, + 505, + 371 + ], + "score": 1.0, + "content": "zeikare, Anjuli Kannan, Patrick Nguyen, Hasim Sak, Ananth Sankar, Justin Tansuwan, Nathan", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 369, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 507, + 383 + ], + "score": 1.0, + "content": "Wan, Yonghui Wu, and Xuedong Zhang. Speech Recognition for Medical Conversations. In Proc.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 381, + 258, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 258, + 393 + ], + "score": 1.0, + "content": "Interspeech, pp. 2972–2976, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 347, + 507, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 400, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "Jan K Chorowski, Dzmitry Bahdanau, Dmitriy Serdyuk, Kyunghyun Cho, and Yoshua Bengio.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 411, + 408, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 408, + 424 + ], + "score": 1.0, + "content": "Attention-based models for speech recognition. In Proc. NeurIPS, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 400, + 506, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "Shaojin Ding, Ye Jia, Ke Hu, and Quan Wang. Textual Echo Cancellation. arXiv preprint", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 442, + 218, + 453 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 218, + 453 + ], + "score": 1.0, + "content": "arXiv:2008.06006, 2020.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 430, + 505, + 453 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "Jeff Donahue, Sander Dieleman, Mikołaj Binkowski, Erich Elsen, and Karen Simonyan. End-to-End ´", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 473, + 393, + 485 + ], + "spans": [ + { + "bbox": [ + 116, + 473, + 393, + 485 + ], + "score": 1.0, + "content": "Adversarial Text-to-Speech. arXiv preprint arXiv:2006.03575, 2020.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 462, + 505, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 504, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "Andrew Gibiansky, Sercan Arik, Gregory Diamos, John Miller, Kainan Peng, Wei Ping, Jonathan", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "Raiman, and Yanqi Zhou. Deep voice 2: Multi-speaker neural text-to-speech. In Advances in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 515, + 365, + 527 + ], + "spans": [ + { + "bbox": [ + 115, + 515, + 365, + 527 + ], + "score": 1.0, + "content": "neural information processing systems, pp. 2962–2970, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 492, + 505, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 174, + 547 + ], + "score": 1.0, + "content": "Alex Graves.", + "type": "text" + }, + { + "bbox": [ + 176, + 532, + 506, + 547 + ], + "score": 1.0, + "content": "Generating Sequences with Recurrent Neural Networks. arXiv preprint", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 544, + 215, + 557 + ], + "spans": [ + { + "bbox": [ + 115, + 544, + 215, + 557 + ], + "score": 1.0, + "content": "arXiv:1308.0850, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 532, + 506, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "score": 1.0, + "content": "Jiatao Gu, James Bradbury, Caiming Xiong, Victor OK Li, and Richard Socher. Non-autoregressive", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 391, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 391, + 588 + ], + "score": 1.0, + "content": "neural machine translation. arXiv preprint arXiv:1711.02281, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 563, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 595, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 609 + ], + "score": 1.0, + "content": "Haohan Guo, Frank K Soong, Lei He, and Lei Xie. A New GAN-based End-to-End TTS Training", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 606, + 339, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 339, + 619 + ], + "score": 1.0, + "content": "Algorithm. In Proc. Interspeech, pp. 1288–1292, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 592, + 506, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 626, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 640 + ], + "score": 1.0, + "content": "Mutian He, Yan Deng, and Lei He. Robust Sequence-to-Sequence Acoustic Modeling with Stepwise", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 637, + 446, + 649 + ], + "spans": [ + { + "bbox": [ + 117, + 637, + 446, + 649 + ], + "score": 1.0, + "content": "Monotonic Attention for Neural TTS. In Proc. Interspeech, pp. 1293–1297, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 625, + 505, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 504, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 506, + 671 + ], + "score": 1.0, + "content": "Ye Jia, Yu Zhang, Ron J. Weiss, Quan Wang, Jonathan Shen, Fei Ren, Zhifeng Chen, Patrick Nguyen,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Ruoming Pang, Ignacio Lopez-Moreno, and Yonghui Wu. Transfer Learning from Speaker", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 679, + 439, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 439, + 691 + ], + "score": 1.0, + "content": "Verification to Multispeaker Text-To-Speech Synthesis. In Proc. NeurIPS, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 656, + 506, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Ye Jia, Ron J Weiss, Fadi Biadsy, Wolfgang Macherey, Melvin Johnson, Zhifeng Chen, and Yonghui", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Wu. Direct Speech-to-Speech Translation with a Sequence-to-Sequence Model. In Proc. Inter-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 238, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 238, + 732 + ], + "score": 1.0, + "content": "speech, pp. 1123–1127, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 698, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Jacob Kahn, Morgane Riviere, Weiyi Zheng, Evgeny Kharitonov, Qiantong Xu, Pierre-Emmanuel `", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "Mazare, Julien Karadayi, Vitaliy Liptchinsky, Ronan Collobert, Christian Fuegen, Tatiana Likhoma- ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "nenko, Gabriel Synnaeve, Armand Joulin, Abdelrahman Mohamed, and Emmanuel Dupoux. Libri-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "light: A Benchmark for ASR with Limited or No Supervision. In Proc. ICASSP, pp. 7669–7673,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 141, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 141, + 139 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 110, + 144, + 504, + 178 + ], + "lines": [ + { + "bbox": [ + 108, + 144, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 108, + 144, + 505, + 157 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lockhart,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "Florian Stimberg, Aaron van den Oord, Sander Dieleman, and Koray Kavukcuoglu. Efficient", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 166, + 371, + 180 + ], + "spans": [ + { + "bbox": [ + 115, + 166, + 371, + 180 + ], + "score": 1.0, + "content": "Neural Audio Synthesis. In Proc. ICML, pp. 2410–2419, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 184, + 503, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "Tom Kenter, Vincent Wan, Chun-An Chan, Rob Clark, and Jakub Vit. CHiVE: Varying Prosody", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "in Speech Synthesis with a Linguistically Driven Dynamic Hierarchical Conditional Variational", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 206, + 311, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 311, + 219 + ], + "score": 1.0, + "content": "Network. In Proc. ICML, pp. 3331–3340, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 487, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 488, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 488, + 238 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proc. ICLR, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 243, + 503, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "Kundan Kumar, Rithesh Kumar, Thibault de Boissiere, Lucas Gestin, Wei Zhen Teoh, Jose Sotelo,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "Alexandre de Brebisson, Yoshua Bengio, and Aaron Courville. MelGAN: Generative Adversarial", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 265, + 408, + 277 + ], + "spans": [ + { + "bbox": [ + 116, + 265, + 408, + 277 + ], + "score": 1.0, + "content": "Networks for Conditional Waveform Synthesis. In Proc. NeurIPS, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 108, + 282, + 503, + 306 + ], + "lines": [ + { + "bbox": [ + 107, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 107, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "Younggun Lee and Taesu Kim. Robust and fine-grained prosody control of end-to-end speech", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 294, + 321, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 294, + 321, + 306 + ], + "score": 1.0, + "content": "synthesis. In Proc. ICASSP, pp. 5911–5915, 2019.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "Naihan Li, Shujie Liu, Yanqing Liu, Sheng Zhao, and Ming Liu. Neural Speech Synthesis with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 322, + 407, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 407, + 335 + ], + "score": 1.0, + "content": "Transformer Network. In Proc. AAAI, volume 33, pp. 6706–6713, 2019.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 341, + 504, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 505, + 354 + ], + "score": 1.0, + "content": "Dan Lim, Won Jang, Hyeyeong Park, Bongwan Kim, and Jesam Yoon. JDI-T: Jointly Trained", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "Duration Informed Transformer for Text-To-Speech without Explicit Alignment. arXiv preprint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 363, + 219, + 375 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 219, + 375 + ], + "score": 1.0, + "content": "arXiv:2005.07799, 2020.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "Minh-Thang Luong, Hieu Pham, and Christopher D Manning. Effective approaches to attention-based", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 392, + 390, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 390, + 404 + ], + "score": 1.0, + "content": "neural machine translation. arXiv preprint arXiv:1508.04025, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 504, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 506, + 424 + ], + "score": 1.0, + "content": "Aaron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves, ¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 116, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. WaveNet: A Generative Model for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 433, + 330, + 445 + ], + "spans": [ + { + "bbox": [ + 116, + 433, + 330, + 445 + ], + "score": 1.0, + "content": "Raw Audio. arXiv preprint arXiv:1609.03499, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 504, + 473 + ], + "lines": [ + { + "bbox": [ + 107, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 107, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "Vassil Panayotov, Guoguo Chen, Daniel Povey, and Sanjeev Khudanpur. Librispeech: An ASR", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 461, + 470, + 474 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 470, + 474 + ], + "score": 1.0, + "content": "Corpus Based on Public Domain Audio Books. In Proc. ICASSP, pp. 5206–5210, 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Daniel S Park, Yu Zhang, Ye Jia, Wei Han, Chung-Cheng Chiu, Bo Li, Yonghui Wu, and Quoc V Le.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 490, + 506, + 503 + ], + "score": 1.0, + "content": "Improved Noisy Student Training for Automatic Speech Recognition. In Proc. Interspeech, 2020.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 501, + 159, + 516 + ], + "spans": [ + { + "bbox": [ + 114, + 501, + 159, + 516 + ], + "score": 1.0, + "content": "to appear.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 108, + 519, + 504, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "Wei Ping, Kainan Peng, Andrew Gibiansky, Sercan O Arik, Ajay Kannan, Sharan Narang, Jonathan", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "Raiman, and John Miller. Deep Voice 3: Scaling text-to-speech with convolutional sequence", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 542, + 241, + 554 + ], + "spans": [ + { + "bbox": [ + 116, + 542, + 241, + 554 + ], + "score": 1.0, + "content": "learning. In Proc. ICLR, 2018.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 104, + 559, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Ryan Prenger, Rafael Valle, and Bryan Catanzaro. WaveGlow: A Flow-based Generative Network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 571, + 303, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 571, + 303, + 583 + ], + "score": 1.0, + "content": "for Speech Synthesis. In Proc. ICASSP, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 107, + 590, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 590, + 505, + 601 + ], + "score": 1.0, + "content": "Yi Ren, Yangjun Ruan, Xu Tan, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 600, + 402, + 613 + ], + "spans": [ + { + "bbox": [ + 116, + 600, + 402, + 613 + ], + "score": 1.0, + "content": "Fast, Robust and Controllable Text to Speech. In Proc. NeurIPS, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 105, + 618, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 632 + ], + "score": 1.0, + "content": "Yi Ren, Chenxu Hu, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech 2: Fast and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 450, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 450, + 641 + ], + "score": 1.0, + "content": "High-Quality End-to-End Text-to-Speech. arXiv preprint arXiv:2006.04558, 2020.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "Jonathan Shen, Ruoming Pang, Ron J. Weiss, Mike Schuster, Navdeep Jaitly, Zongheng Yang, Zhifeng", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "Chen, Yu Zhang, Yuxuan Wang, RJ Skerrv-Ryan, Rif A. Saurous, Yannis Agiomyrgiannakis, and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 669, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 507, + 683 + ], + "score": 1.0, + "content": "Yonghui Wu. Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 279, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 279, + 693 + ], + "score": 1.0, + "content": "In Proc. ICASSP, pp. 4779–4783, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "RJ Skerry-Ryan, Eric Battenberg, Ying Xiao, Yuxuan Wang, Daisy Stanton, Joel Shor, Ron Weiss,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Rob Clark, and Rif A Saurous. Towards End-to-End Prosody Transfer for Expressive Speech", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 721, + 372, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 372, + 732 + ], + "score": 1.0, + "content": "Synthesis with Tacotron. In Proc. ICML, pp. 4700–4709, 2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Jacob Kahn, Morgane Riviere, Weiyi Zheng, Evgeny Kharitonov, Qiantong Xu, Pierre-Emmanuel `", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "Mazare, Julien Karadayi, Vitaliy Liptchinsky, Ronan Collobert, Christian Fuegen, Tatiana Likhoma- ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "nenko, Gabriel Synnaeve, Armand Joulin, Abdelrahman Mohamed, and Emmanuel Dupoux. Libri-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "light: A Benchmark for ASR with Limited or No Supervision. In Proc. ICASSP, pp. 7669–7673,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 141, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 141, + 139 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 139 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 144, + 504, + 178 + ], + "lines": [ + { + "bbox": [ + 108, + 144, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 108, + 144, + 505, + 157 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lockhart,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "Florian Stimberg, Aaron van den Oord, Sander Dieleman, and Koray Kavukcuoglu. Efficient", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 166, + 371, + 180 + ], + "spans": [ + { + "bbox": [ + 115, + 166, + 371, + 180 + ], + "score": 1.0, + "content": "Neural Audio Synthesis. In Proc. ICML, pp. 2410–2419, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 108, + 144, + 505, + 180 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 184, + 503, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 198 + ], + "score": 1.0, + "content": "Tom Kenter, Vincent Wan, Chun-An Chan, Rob Clark, and Jakub Vit. CHiVE: Varying Prosody", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "in Speech Synthesis with a Linguistically Driven Dynamic Hierarchical Conditional Variational", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 206, + 311, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 311, + 219 + ], + "score": 1.0, + "content": "Network. In Proc. ICML, pp. 3331–3340, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 183, + 505, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 487, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 488, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 488, + 238 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proc. ICLR, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 224, + 488, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 243, + 503, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "Kundan Kumar, Rithesh Kumar, Thibault de Boissiere, Lucas Gestin, Wei Zhen Teoh, Jose Sotelo,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "Alexandre de Brebisson, Yoshua Bengio, and Aaron Courville. MelGAN: Generative Adversarial", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 265, + 408, + 277 + ], + "spans": [ + { + "bbox": [ + 116, + 265, + 408, + 277 + ], + "score": 1.0, + "content": "Networks for Conditional Waveform Synthesis. In Proc. NeurIPS, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 243, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 282, + 503, + 306 + ], + "lines": [ + { + "bbox": [ + 107, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 107, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "Younggun Lee and Taesu Kim. Robust and fine-grained prosody control of end-to-end speech", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 294, + 321, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 294, + 321, + 306 + ], + "score": 1.0, + "content": "synthesis. In Proc. ICASSP, pp. 5911–5915, 2019.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 107, + 282, + 505, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "Naihan Li, Shujie Liu, Yanqing Liu, Sheng Zhao, and Ming Liu. Neural Speech Synthesis with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 322, + 407, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 407, + 335 + ], + "score": 1.0, + "content": "Transformer Network. In Proc. AAAI, volume 33, pp. 6706–6713, 2019.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 312, + 505, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 341, + 504, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 505, + 354 + ], + "score": 1.0, + "content": "Dan Lim, Won Jang, Hyeyeong Park, Bongwan Kim, and Jesam Yoon. JDI-T: Jointly Trained", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "Duration Informed Transformer for Text-To-Speech without Explicit Alignment. arXiv preprint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 363, + 219, + 375 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 219, + 375 + ], + "score": 1.0, + "content": "arXiv:2005.07799, 2020.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 341, + 505, + 375 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 381, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "Minh-Thang Luong, Hieu Pham, and Christopher D Manning. Effective approaches to attention-based", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 392, + 390, + 404 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 390, + 404 + ], + "score": 1.0, + "content": "neural machine translation. arXiv preprint arXiv:1508.04025, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 381, + 505, + 404 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 504, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 506, + 424 + ], + "score": 1.0, + "content": "Aaron van den Oord, Sander Dieleman, Heiga Zen, Karen Simonyan, Oriol Vinyals, Alex Graves, ¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 116, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Nal Kalchbrenner, Andrew Senior, and Koray Kavukcuoglu. WaveNet: A Generative Model for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 433, + 330, + 445 + ], + "spans": [ + { + "bbox": [ + 116, + 433, + 330, + 445 + ], + "score": 1.0, + "content": "Raw Audio. arXiv preprint arXiv:1609.03499, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 409, + 506, + 445 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 504, + 473 + ], + "lines": [ + { + "bbox": [ + 107, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 107, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "Vassil Panayotov, Guoguo Chen, Daniel Povey, and Sanjeev Khudanpur. Librispeech: An ASR", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 461, + 470, + 474 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 470, + 474 + ], + "score": 1.0, + "content": "Corpus Based on Public Domain Audio Books. In Proc. ICASSP, pp. 5206–5210, 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 107, + 450, + 505, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Daniel S Park, Yu Zhang, Ye Jia, Wei Han, Chung-Cheng Chiu, Bo Li, Yonghui Wu, and Quoc V Le.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 490, + 506, + 503 + ], + "score": 1.0, + "content": "Improved Noisy Student Training for Automatic Speech Recognition. In Proc. Interspeech, 2020.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 501, + 159, + 516 + ], + "spans": [ + { + "bbox": [ + 114, + 501, + 159, + 516 + ], + "score": 1.0, + "content": "to appear.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 479, + 506, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 519, + 504, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "Wei Ping, Kainan Peng, Andrew Gibiansky, Sercan O Arik, Ajay Kannan, Sharan Narang, Jonathan", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "Raiman, and John Miller. Deep Voice 3: Scaling text-to-speech with convolutional sequence", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 542, + 241, + 554 + ], + "spans": [ + { + "bbox": [ + 116, + 542, + 241, + 554 + ], + "score": 1.0, + "content": "learning. In Proc. ICLR, 2018.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 519, + 505, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 559, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Ryan Prenger, Rafael Valle, and Bryan Catanzaro. WaveGlow: A Flow-based Generative Network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 571, + 303, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 571, + 303, + 583 + ], + "score": 1.0, + "content": "for Speech Synthesis. In Proc. ICASSP, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 559, + 505, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 107, + 590, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 590, + 505, + 601 + ], + "score": 1.0, + "content": "Yi Ren, Yangjun Ruan, Xu Tan, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech:", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 600, + 402, + 613 + ], + "spans": [ + { + "bbox": [ + 116, + 600, + 402, + 613 + ], + "score": 1.0, + "content": "Fast, Robust and Controllable Text to Speech. In Proc. NeurIPS, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 107, + 590, + 505, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 618, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 632 + ], + "score": 1.0, + "content": "Yi Ren, Chenxu Hu, Tao Qin, Sheng Zhao, Zhou Zhao, and Tie-Yan Liu. FastSpeech 2: Fast and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 629, + 450, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 450, + 641 + ], + "score": 1.0, + "content": "High-Quality End-to-End Text-to-Speech. arXiv preprint arXiv:2006.04558, 2020.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 617, + 505, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "Jonathan Shen, Ruoming Pang, Ron J. Weiss, Mike Schuster, Navdeep Jaitly, Zongheng Yang, Zhifeng", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "Chen, Yu Zhang, Yuxuan Wang, RJ Skerrv-Ryan, Rif A. Saurous, Yannis Agiomyrgiannakis, and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 669, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 507, + 683 + ], + "score": 1.0, + "content": "Yonghui Wu. Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 279, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 279, + 693 + ], + "score": 1.0, + "content": "In Proc. ICASSP, pp. 4779–4783, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 646, + 507, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "RJ Skerry-Ryan, Eric Battenberg, Ying Xiao, Yuxuan Wang, Daisy Stanton, Joel Shor, Ron Weiss,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Rob Clark, and Rif A Saurous. Towards End-to-End Prosody Transfer for Expressive Speech", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 721, + 372, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 372, + 732 + ], + "score": 1.0, + "content": "Synthesis with Tacotron. In Proc. ICML, pp. 4700–4709, 2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 698, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Jose Sotelo, Soroush Mehri, Kundan Kumar, Joao Felipe Santos, Kyle Kastner, Aaron C. Courville,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 497, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 497, + 106 + ], + "score": 1.0, + "content": "and Yoshua Bengio. Char2Wav: End-to-End speech synthesis. In Proc. ICLR workshop, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Guangzhi Sun, Yu Zhang, Ron J Weiss, Yuan Cao, Heiga Zen, and Yonghui Wu. Fully-Hierarchical", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 136 + ], + "score": 1.0, + "content": "Fine-Grained Prosody Modeling for Interpretable Speech Synthesis. In Proc. ICASSP, pp. 6264–", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 166, + 145 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 166, + 145 + ], + "score": 1.0, + "content": "6268, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 105, + 153, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "David Talkin and Colin W Wightman. The aligner: Text to speech alignment using markov models", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 506, + 177 + ], + "score": 1.0, + "content": "and a pronunciation dictionary. In The Second ESCA/IEEE Workshop on Speech Synthesis, 1994.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 429, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 429, + 205 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention Is All You Need. In Proc. NIPS, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 506, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "score": 1.0, + "content": "Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly, Zongheng", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, Q. Le, Y. Agiomyrgiannakis, R. Clark, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 234, + 507, + 248 + ], + "spans": [ + { + "bbox": [ + 114, + 234, + 507, + 248 + ], + "score": 1.0, + "content": "R. Saurous. Tacotron: Towards End-to-End Speech Synthesis. In Proc. Interspeech, pp. 4006–", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 167, + 257 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 167, + 257 + ], + "score": 1.0, + "content": "4010, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 105, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "score": 1.0, + "content": "Ronald J. Williams and David Zipser. A Learning Algorithm for Continually Running Fully Recurrent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 275, + 361, + 288 + ], + "spans": [ + { + "bbox": [ + 116, + 275, + 361, + 288 + ], + "score": 1.0, + "content": "Neural Networks. Neural Computation, 1(2):270–280, 1989.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "Chengzhu Yu, Heng Lu, Na Hu, Meng Yu, Chao Weng, Kun Xu, Peng Liu, Deyi Tuo, Shiyin", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "Kang, Guangzhi Lei, Dan Su, and Dong Yu. DurIAN: Duration informed attention network for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 316, + 310, + 328 + ], + "spans": [ + { + "bbox": [ + 116, + 316, + 310, + 328 + ], + "score": 1.0, + "content": "multimodal synthesis. arXiv:1909.01700, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 108, + 335, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 349 + ], + "score": 1.0, + "content": "H. Zen, K. Tokuda, and A. Black. Statistical Parametric Speech Synthesis. Speech Communication,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 346, + 220, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 220, + 358 + ], + "score": 1.0, + "content": "51(11):1039–1064, 2009.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 380 + ], + "score": 1.0, + "content": "Heiga Zen, Andrew Senior, and Mike Schuster. Statistical Parametric Speech Synthesis Using Deep", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 376, + 352, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 352, + 389 + ], + "score": 1.0, + "content": "Neural Networks. In Proc. ICASSP, pp. 7962–7966, 2013.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "score": 1.0, + "content": "Heiga Zen, Viet Dang, Rob Clark, Yu Zhang, Ron J Weiss, Ye Jia, Zhifeng Chen, and Yonghui", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 404, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 115, + 404, + 506, + 420 + ], + "score": 1.0, + "content": "Wu. LibriTTS: A Corpus Derived from LibriSpeech for Text-to-Speech. In Proc. Interspeech, pp.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 417, + 190, + 428 + ], + "spans": [ + { + "bbox": [ + 116, + 417, + 190, + 428 + ], + "score": 1.0, + "content": "1526–1530, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "Zhen Zeng, Jianzong Wang, Ning Cheng, Tian Xia, and Jing Xiao. AlignTTS: Efficient Feed-Forward", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 447, + 488, + 459 + ], + "spans": [ + { + "bbox": [ + 116, + 447, + 488, + 459 + ], + "score": 1.0, + "content": "Text-to-Speech System without Explicit Alignment. In Proc. ICASSP, pp. 6714–6718, 2020.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 503, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "Jing-Xuan Zhang, Zhen-Hua Ling, and Li-Rong Dai. Forward attention in sequence-to-sequence", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 477, + 439, + 489 + ], + "spans": [ + { + "bbox": [ + 115, + 477, + 439, + 489 + ], + "score": 1.0, + "content": "acoustic modeling for speech synthesis. In Proc. ICASSP, pp. 4789–4793, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 504, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 504, + 508 + ], + "score": 1.0, + "content": "Zewang Zhang, Qiao Tian, Heng Lu, Ling-Hui Chen, and Shan Liu. Adadurian: Few-shot adaptation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 506, + 430, + 519 + ], + "spans": [ + { + "bbox": [ + 116, + 506, + 430, + 519 + ], + "score": 1.0, + "content": "for neural text-to-speech with durian. arXiv preprint arXiv:2005.05642, 2020.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 108, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "Yibin Zheng, Jianhua Tao, Wen. Zhengqi, and Jiangyan Yi. Forward–backward decoding sequence for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "regularizing end-to-end tts. IEEE/ACM Trans. Audio Speech & Lang. Process., 27(12):2067–2079,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 546, + 143, + 560 + ], + "spans": [ + { + "bbox": [ + 114, + 546, + 143, + 560 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 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, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Jose Sotelo, Soroush Mehri, Kundan Kumar, Joao Felipe Santos, Kyle Kastner, Aaron C. Courville,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 497, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 497, + 106 + ], + "score": 1.0, + "content": "and Yoshua Bengio. Char2Wav: End-to-End speech synthesis. In Proc. ICLR workshop, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 125 + ], + "score": 1.0, + "content": "Guangzhi Sun, Yu Zhang, Ron J Weiss, Yuan Cao, Heiga Zen, and Yonghui Wu. Fully-Hierarchical", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 136 + ], + "score": 1.0, + "content": "Fine-Grained Prosody Modeling for Interpretable Speech Synthesis. In Proc. ICASSP, pp. 6264–", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 166, + 145 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 166, + 145 + ], + "score": 1.0, + "content": "6268, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 111, + 506, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 153, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "David Talkin and Colin W Wightman. The aligner: Text to speech alignment using markov models", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 506, + 177 + ], + "score": 1.0, + "content": "and a pronunciation dictionary. In The Second ESCA/IEEE Workshop on Speech Synthesis, 1994.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 153, + 506, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 107, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 429, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 429, + 205 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention Is All You Need. In Proc. NIPS, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 107, + 183, + 505, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 506, + 257 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "score": 1.0, + "content": "Yuxuan Wang, RJ Skerry-Ryan, Daisy Stanton, Yonghui Wu, Ron J Weiss, Navdeep Jaitly, Zongheng", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "Yang, Ying Xiao, Zhifeng Chen, Samy Bengio, Q. Le, Y. Agiomyrgiannakis, R. Clark, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 234, + 507, + 248 + ], + "spans": [ + { + "bbox": [ + 114, + 234, + 507, + 248 + ], + "score": 1.0, + "content": "R. Saurous. Tacotron: Towards End-to-End Speech Synthesis. In Proc. Interspeech, pp. 4006–", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 167, + 257 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 167, + 257 + ], + "score": 1.0, + "content": "4010, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 212, + 507, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "score": 1.0, + "content": "Ronald J. Williams and David Zipser. A Learning Algorithm for Continually Running Fully Recurrent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 275, + 361, + 288 + ], + "spans": [ + { + "bbox": [ + 116, + 275, + 361, + 288 + ], + "score": 1.0, + "content": "Neural Networks. Neural Computation, 1(2):270–280, 1989.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 264, + 505, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "Chengzhu Yu, Heng Lu, Na Hu, Meng Yu, Chao Weng, Kun Xu, Peng Liu, Deyi Tuo, Shiyin", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "Kang, Guangzhi Lei, Dan Su, and Dong Yu. DurIAN: Duration informed attention network for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 316, + 310, + 328 + ], + "spans": [ + { + "bbox": [ + 116, + 316, + 310, + 328 + ], + "score": 1.0, + "content": "multimodal synthesis. arXiv:1909.01700, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 293, + 506, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 335, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 349 + ], + "score": 1.0, + "content": "H. Zen, K. Tokuda, and A. Black. Statistical Parametric Speech Synthesis. Speech Communication,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 346, + 220, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 220, + 358 + ], + "score": 1.0, + "content": "51(11):1039–1064, 2009.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 333, + 506, + 358 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 380 + ], + "score": 1.0, + "content": "Heiga Zen, Andrew Senior, and Mike Schuster. Statistical Parametric Speech Synthesis Using Deep", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 376, + 352, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 352, + 389 + ], + "score": 1.0, + "content": "Neural Networks. In Proc. ICASSP, pp. 7962–7966, 2013.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 363, + 505, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "score": 1.0, + "content": "Heiga Zen, Viet Dang, Rob Clark, Yu Zhang, Ron J Weiss, Ye Jia, Zhifeng Chen, and Yonghui", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 404, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 115, + 404, + 506, + 420 + ], + "score": 1.0, + "content": "Wu. LibriTTS: A Corpus Derived from LibriSpeech for Text-to-Speech. In Proc. Interspeech, pp.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 417, + 190, + 428 + ], + "spans": [ + { + "bbox": [ + 116, + 417, + 190, + 428 + ], + "score": 1.0, + "content": "1526–1530, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 394, + 506, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "Zhen Zeng, Jianzong Wang, Ning Cheng, Tian Xia, and Jing Xiao. AlignTTS: Efficient Feed-Forward", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 447, + 488, + 459 + ], + "spans": [ + { + "bbox": [ + 116, + 447, + 488, + 459 + ], + "score": 1.0, + "content": "Text-to-Speech System without Explicit Alignment. In Proc. ICASSP, pp. 6714–6718, 2020.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 435, + 505, + 459 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 503, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "Jing-Xuan Zhang, Zhen-Hua Ling, and Li-Rong Dai. Forward attention in sequence-to-sequence", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 477, + 439, + 489 + ], + "spans": [ + { + "bbox": [ + 115, + 477, + 439, + 489 + ], + "score": 1.0, + "content": "acoustic modeling for speech synthesis. In Proc. ICASSP, pp. 4789–4793, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 466, + 505, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 504, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 504, + 508 + ], + "score": 1.0, + "content": "Zewang Zhang, Qiao Tian, Heng Lu, Ling-Hui Chen, and Shan Liu. Adadurian: Few-shot adaptation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 506, + 430, + 519 + ], + "spans": [ + { + "bbox": [ + 116, + 506, + 430, + 519 + ], + "score": 1.0, + "content": "for neural text-to-speech with durian. arXiv preprint arXiv:2005.05642, 2020.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 495, + 504, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "Yibin Zheng, Jianhua Tao, Wen. Zhengqi, and Jiangyan Yi. Forward–backward decoding sequence for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "regularizing end-to-end tts. IEEE/ACM Trans. Audio Speech & Lang. Process., 27(12):2067–2079,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 546, + 143, + 560 + ], + "spans": [ + { + "bbox": [ + 114, + 546, + 143, + 560 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 525, + 506, + 560 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 241, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 242, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 242, + 96 + ], + "score": 1.0, + "content": "A MODEL PARAMETERS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 108, + 122, + 505, + 713 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 249, + 109, + 361, + 120 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 249, + 107, + 362, + 121 + ], + "spans": [ + { + "bbox": [ + 249, + 107, + 362, + 121 + ], + "score": 1.0, + "content": "Table 6: Model parameters.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 108, + 122, + 505, + 713 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 122, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 108, + 122, + 505, + 713 + ], + "score": 0.976, + "html": "
CommonTraining modeSynchronous 32
Batch size (per replica) Replicas Parameter init L² regularization Learning rate Learning rate scheduleXavier 1 ×10-6 0.001
Inputs and TargetsOptimizer LSTM zone-out prob LSTM cell abs value cap Sampling rate (Hz) Normalize waveform Pre-emphasis Frame size (ms) Frame hop (ms)decay half every 50K steps. Adam(0.9,0.999,1 × 10-6) 0.1 10.0 24,000 No No 50
EncoderMel channels K Mel frequency lower bound (Hz) Mel frequency upper bound (Hz)128 20 12,000
FVAE
Yes
512×2
5×1
512 64
Mel spectrogram dynamic range compressionlog(x +0.001)
Token embedding dim
Speaker embedding dim
Conv kernel
Conv dim[512, 512, 512]
Conv activation[None,None,None]
Conv batch norm decay0.999
Bi-LSTM dim
Segment encoder conv kernel3×1
Segment encoder conv dim[512,512,512]
Segment encoder Bi-LSTM dim256×2
Layer norm attention inputs
Latent dim8 projected to 16
Duration PredictorBi-LSTM dim512×2
Projection activationNone
Xdur supervised2.0
Xdur semi-supervised100.0
100.0
Au semi-supervised1×10-3
XKL semi-supervised
Xu unsupervised1.0
Range Parameter Predictor入KL unsupervised1 ×10-4
Bi-LSTM dim512×2
Positional EmbeddingProjection activationSoftPlus
Embedding dim32
Timestep denominator10.000
Decoder[256,256]
Pre-net dim supervised
Pre-net dim semi/unsupervised[128,128]
Pre-net activation[ReLU,ReLU]
[0.5,0.5]
Pre-net dropout prob
LSTM dim^1,024
LSTM inituniform(0.1)
Projection inituniform(0.1)
Post-net conv kernel5×1
Post-net conv dim
[512,512,512,512,128]
Post-net conv activation
[tanh,tanh,tanh,tanh,None]
Post-net conv init
", + "type": "table", + "image_path": "c6130592affe905937e350dff836f4094bc6bf9dad7472a16b4b7d624e43fbdb.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 122, + 505, + 319.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 319.0, + 505, + 516.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 516.0, + 505, + 713.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 2.0 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 241, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 242, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 242, + 96 + ], + "score": 1.0, + "content": "A MODEL PARAMETERS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 242, + 96 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 122, + 505, + 713 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 249, + 109, + 361, + 120 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 249, + 107, + 362, + 121 + ], + "spans": [ + { + "bbox": [ + 249, + 107, + 362, + 121 + ], + "score": 1.0, + "content": "Table 6: Model parameters.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 108, + 122, + 505, + 713 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 122, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 108, + 122, + 505, + 713 + ], + "score": 0.976, + "html": "
CommonTraining modeSynchronous 32
Batch size (per replica) Replicas Parameter init L² regularization Learning rate Learning rate scheduleXavier 1 ×10-6 0.001
Inputs and TargetsOptimizer LSTM zone-out prob LSTM cell abs value cap Sampling rate (Hz) Normalize waveform Pre-emphasis Frame size (ms) Frame hop (ms)decay half every 50K steps. Adam(0.9,0.999,1 × 10-6) 0.1 10.0 24,000 No No 50
EncoderMel channels K Mel frequency lower bound (Hz) Mel frequency upper bound (Hz)128 20 12,000
FVAE
Yes
512×2
5×1
512 64
Mel spectrogram dynamic range compressionlog(x +0.001)
Token embedding dim
Speaker embedding dim
Conv kernel
Conv dim[512, 512, 512]
Conv activation[None,None,None]
Conv batch norm decay0.999
Bi-LSTM dim
Segment encoder conv kernel3×1
Segment encoder conv dim[512,512,512]
Segment encoder Bi-LSTM dim256×2
Layer norm attention inputs
Latent dim8 projected to 16
Duration PredictorBi-LSTM dim512×2
Projection activationNone
Xdur supervised2.0
Xdur semi-supervised100.0
100.0
Au semi-supervised1×10-3
XKL semi-supervised
Xu unsupervised1.0
Range Parameter Predictor入KL unsupervised1 ×10-4
Bi-LSTM dim512×2
Positional EmbeddingProjection activationSoftPlus
Embedding dim32
Timestep denominator10.000
Decoder[256,256]
Pre-net dim supervised
Pre-net dim semi/unsupervised[128,128]
Pre-net activation[ReLU,ReLU]
[0.5,0.5]
Pre-net dropout prob
LSTM dim^1,024
LSTM inituniform(0.1)
Projection inituniform(0.1)
Post-net conv kernel5×1
Post-net conv dim
[512,512,512,512,128]
Post-net conv activation
[tanh,tanh,tanh,tanh,None]
Post-net conv init
", + "type": "table", + "image_path": "c6130592affe905937e350dff836f4094bc6bf9dad7472a16b4b7d624e43fbdb.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 122, + 505, + 319.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 319.0, + 505, + 516.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 516.0, + 505, + 713.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 2.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 408, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 410, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 410, + 97 + ], + "score": 1.0, + "content": "B WER BREAKDOWNS IN THE ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 149, + 130, + 459, + 239 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 109, + 503, + 122 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 109, + 503, + 121 + ], + "spans": [ + { + "bbox": [ + 108, + 109, + 503, + 121 + ], + "score": 1.0, + "content": "Table 7: WER breakdowns in the robustness evaluation. Deletion rate (del) is the WDR in Table 5.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 149, + 130, + 459, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 149, + 130, + 459, + 239 + ], + "spans": [ + { + "bbox": [ + 149, + 130, + 459, + 239 + ], + "score": 0.971, + "html": "
SystemLibriTTSweb-long
WERdelinssubWERdelinssub
Tacotron 2
w/LSA1.80.40.31.113.04.42.06.7
w/ GMMA1.70.10.11.510.11.31.37.4
Non-Attentive Tacotron
Supervised1.40.10.11.29.31.11.36.9
Semi-supervised3.30.90.22.214.13.51.69.0
Unsupervised3.50.70.32.615.33.22.010.1
", + "type": "table", + "image_path": "17cbaf3bc0c0241f4b4c555eff7c23510fbae1b714bc74220e5117554de38d48.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 149, + 130, + 459, + 166.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 149, + 166.33333333333334, + 459, + 202.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 149, + 202.66666666666669, + 459, + 239.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 106, + 259, + 335, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 335, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 335, + 275 + ], + "score": 1.0, + "content": "C CLASSIFICATION OF SOME TTS MODELS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "table", + "bbox": [ + 107, + 320, + 502, + 482 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 288, + 503, + 311 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 287, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 301 + ], + "score": 1.0, + "content": "Table 8: Classification of some TTS models into autoregressive (AR)/feed-forward (FF), RNN/Trans-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 299, + 361, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 361, + 311 + ], + "score": 1.0, + "content": "former/fully convolutional, and attention-based/duration-based.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 320, + 502, + 482 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 320, + 502, + 482 + ], + "spans": [ + { + "bbox": [ + 107, + 320, + 502, + 482 + ], + "score": 0.635, + "html": "
ModelYearARFFRNNTransformerFull ConvAttentionDuration
Deep Voice2017
Char2Wav2017
Tacotron2017
Deep Voice 22017
Tacotron 22018
Deep Voice 32018
Transformer TTS2019
CHiVE2019
DurIAN2019
Fastspeech2019
TalkNet2020
AlignTTS2020
JDI-T2020
Non-Attentive Tacotron2020
", + "type": "table", + "image_path": "650fa3d110c757c51bd5816919576387ca5e97e7e47e9826639887382164ddce.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 107, + 320, + 502, + 374.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 374.0, + 502, + 428.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 428.0, + 502, + 482.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 7.75 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 408, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 410, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 410, + 97 + ], + "score": 1.0, + "content": "B WER BREAKDOWNS IN THE ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 149, + 130, + 459, + 239 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 109, + 503, + 122 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 109, + 503, + 121 + ], + "spans": [ + { + "bbox": [ + 108, + 109, + 503, + 121 + ], + "score": 1.0, + "content": "Table 7: WER breakdowns in the robustness evaluation. Deletion rate (del) is the WDR in Table 5.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 149, + 130, + 459, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 149, + 130, + 459, + 239 + ], + "spans": [ + { + "bbox": [ + 149, + 130, + 459, + 239 + ], + "score": 0.971, + "html": "
SystemLibriTTSweb-long
WERdelinssubWERdelinssub
Tacotron 2
w/LSA1.80.40.31.113.04.42.06.7
w/ GMMA1.70.10.11.510.11.31.37.4
Non-Attentive Tacotron
Supervised1.40.10.11.29.31.11.36.9
Semi-supervised3.30.90.22.214.13.51.69.0
Unsupervised3.50.70.32.615.33.22.010.1
", + "type": "table", + "image_path": "17cbaf3bc0c0241f4b4c555eff7c23510fbae1b714bc74220e5117554de38d48.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 149, + 130, + 459, + 166.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 149, + 166.33333333333334, + 459, + 202.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 149, + 202.66666666666669, + 459, + 239.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 106, + 259, + 335, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 335, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 335, + 275 + ], + "score": 1.0, + "content": "C CLASSIFICATION OF SOME TTS MODELS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "table", + "bbox": [ + 107, + 320, + 502, + 482 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 288, + 503, + 311 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 287, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 301 + ], + "score": 1.0, + "content": "Table 8: Classification of some TTS models into autoregressive (AR)/feed-forward (FF), RNN/Trans-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 299, + 361, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 361, + 311 + ], + "score": 1.0, + "content": "former/fully convolutional, and attention-based/duration-based.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 320, + 502, + 482 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 320, + 502, + 482 + ], + "spans": [ + { + "bbox": [ + 107, + 320, + 502, + 482 + ], + "score": 0.635, + "html": "
ModelYearARFFRNNTransformerFull ConvAttentionDuration
Deep Voice2017
Char2Wav2017
Tacotron2017
Deep Voice 22017
Tacotron 22018
Deep Voice 32018
Transformer TTS2019
CHiVE2019
DurIAN2019
Fastspeech2019
TalkNet2020
AlignTTS2020
JDI-T2020
Non-Attentive Tacotron2020
", + "type": "table", + "image_path": "650fa3d110c757c51bd5816919576387ca5e97e7e47e9826639887382164ddce.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 107, + 320, + 502, + 374.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 374.0, + 502, + 428.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 107, + 428.0, + 502, + 482.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 7.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/CGFN_nV1ql/CGFN_nV1ql_model.json b/parse/train/CGFN_nV1ql/CGFN_nV1ql_model.json new file mode 100644 index 0000000000000000000000000000000000000000..b30f02b54edec6634fb70c838811839003856506 --- /dev/null +++ b/parse/train/CGFN_nV1ql/CGFN_nV1ql_model.json @@ -0,0 +1,16350 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1222, + 1404, + 1222, + 1404, + 1527, + 298, + 1527 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1543, + 1404, + 1543, + 1404, + 1787, + 298, + 1787 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 398, + 663, + 1303, + 663, + 1303, + 1029, + 398, + 1029 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 300, + 1803, + 1402, + 1803, + 1402, + 1956, + 300, + 1956 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 300, + 218, + 1347, + 218, + 1347, + 381, + 300, + 381 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1401, + 1972, + 1401, + 2033, + 298, + 2033 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 302, + 1135, + 573, + 1135, + 573, + 1170, + 302, + 1170 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 315, + 433, + 679, + 433, + 679, + 493, + 315, + 493 + ], + "score": 0.785 + }, + { + "category_id": 0, + "poly": [ + 773, + 574, + 926, + 574, + 926, + 608, + 773, + 608 + ], + "score": 0.78 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.716 + }, + { + "category_id": 1, + "poly": [ + 773, + 574, + 926, + 574, + 926, + 608, + 773, + 608 + ], + "score": 0.11 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 217.0, + 1194.0, + 217.0, + 1194.0, + 271.0, + 293.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 275.0, + 1178.0, + 275.0, + 1178.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 332.0, + 1349.0, + 332.0, + 1349.0, + 381.0, + 295.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 579.0, + 1132.0, + 579.0, + 1179.0, + 294.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 573.0, + 932.0, + 573.0, + 932.0, + 611.0, + 769.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1256.0, + 296.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1249.0, + 1408.0, + 1249.0, + 1408.0, + 1291.0, + 292.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1281.0, + 1408.0, + 1281.0, + 1408.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1309.0, + 1406.0, + 1309.0, + 1406.0, + 1352.0, + 293.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1378.0, + 295.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1374.0, + 1406.0, + 1374.0, + 1406.0, + 1410.0, + 296.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1402.0, + 1406.0, + 1402.0, + 1406.0, + 1444.0, + 292.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1434.0, + 1406.0, + 1434.0, + 1406.0, + 1472.0, + 292.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1409.0, + 1466.0, + 1409.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1496.0, + 1308.0, + 1496.0, + 1308.0, + 1533.0, + 292.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1578.0, + 293.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1639.0, + 296.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1667.0, + 293.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1666.0, + 1404.0, + 1666.0, + 1404.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 1404.0, + 1695.0, + 1404.0, + 1731.0, + 293.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1723.0, + 1409.0, + 1723.0, + 1409.0, + 1763.0, + 292.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1757.0, + 1036.0, + 1757.0, + 1036.0, + 1790.0, + 296.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 663.0, + 1305.0, + 663.0, + 1305.0, + 698.0, + 394.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 693.0, + 1305.0, + 693.0, + 1305.0, + 728.0, + 394.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 725.0, + 1304.0, + 725.0, + 1304.0, + 758.0, + 394.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 755.0, + 1304.0, + 755.0, + 1304.0, + 789.0, + 393.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 786.0, + 1305.0, + 786.0, + 1305.0, + 821.0, + 394.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 816.0, + 1306.0, + 816.0, + 1306.0, + 851.0, + 394.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 847.0, + 1308.0, + 847.0, + 1308.0, + 882.0, + 393.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 877.0, + 1308.0, + 877.0, + 1308.0, + 909.0, + 395.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 907.0, + 1306.0, + 907.0, + 1306.0, + 942.0, + 394.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 939.0, + 1306.0, + 939.0, + 1306.0, + 971.0, + 393.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 968.0, + 1306.0, + 968.0, + 1306.0, + 1003.0, + 392.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1000.0, + 651.0, + 1000.0, + 651.0, + 1035.0, + 393.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1833.0, + 1406.0, + 1833.0, + 1406.0, + 1870.0, + 295.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1865.0, + 1404.0, + 1865.0, + 1404.0, + 1898.0, + 295.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1894.0, + 1406.0, + 1894.0, + 1406.0, + 1930.0, + 293.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1924.0, + 776.0, + 1924.0, + 776.0, + 1960.0, + 295.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1974.0, + 1403.0, + 1974.0, + 1403.0, + 2005.0, + 297.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 434.0, + 560.0, + 434.0, + 560.0, + 466.0, + 314.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 462.0, + 683.0, + 462.0, + 683.0, + 495.0, + 309.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 573.0, + 932.0, + 573.0, + 932.0, + 611.0, + 769.0, + 611.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1207, + 1405, + 1207, + 1405, + 1453, + 298, + 1453 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 977, + 1405, + 977, + 1405, + 1193, + 298, + 1193 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1745, + 1405, + 1745, + 1405, + 1960, + 298, + 1960 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1576, + 1404, + 1576, + 1404, + 1728, + 298, + 1728 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1468, + 1399, + 1468, + 1399, + 1560, + 300, + 1560 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 302, + 307, + 1400, + 307, + 1400, + 399, + 302, + 399 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1401, + 228, + 1401, + 292, + 295, + 292 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 360, + 477, + 1405, + 477, + 1405, + 844, + 360, + 844 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 297, + 415, + 997, + 415, + 997, + 447, + 297, + 447 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 333, + 2005, + 858, + 2005, + 858, + 2034, + 333, + 2034 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 300, + 900, + 603, + 900, + 603, + 936, + 300, + 936 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.729 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.126 + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1999.0, + 860.0, + 1999.0, + 860.0, + 2039.0, + 332.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 895.0, + 609.0, + 895.0, + 609.0, + 944.0, + 290.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 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": [ + 292.0, + 1206.0, + 1407.0, + 1206.0, + 1407.0, + 1246.0, + 292.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1237.0, + 1405.0, + 1237.0, + 1405.0, + 1271.0, + 295.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 1406.0, + 1266.0, + 1406.0, + 1308.0, + 292.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1300.0, + 1408.0, + 1300.0, + 1408.0, + 1334.0, + 295.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1330.0, + 1407.0, + 1330.0, + 1407.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1359.0, + 1406.0, + 1359.0, + 1406.0, + 1395.0, + 292.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1406.0, + 1390.0, + 1406.0, + 1426.0, + 293.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1423.0, + 667.0, + 1423.0, + 667.0, + 1456.0, + 295.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 979.0, + 1405.0, + 979.0, + 1405.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1008.0, + 1406.0, + 1008.0, + 1406.0, + 1047.0, + 293.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1041.0, + 1403.0, + 1041.0, + 1403.0, + 1075.0, + 295.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 1403.0, + 1070.0, + 1403.0, + 1105.0, + 295.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1101.0, + 1405.0, + 1101.0, + 1405.0, + 1136.0, + 295.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1406.0, + 1131.0, + 1406.0, + 1164.0, + 293.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 1408.0, + 1162.0, + 1408.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1745.0, + 1408.0, + 1745.0, + 1408.0, + 1780.0, + 295.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1811.0, + 295.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1806.0, + 1405.0, + 1806.0, + 1405.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1873.0, + 292.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1865.0, + 1406.0, + 1865.0, + 1406.0, + 1903.0, + 293.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1897.0, + 1408.0, + 1897.0, + 1408.0, + 1935.0, + 295.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1930.0, + 733.0, + 1930.0, + 733.0, + 1961.0, + 296.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1575.0, + 1406.0, + 1575.0, + 1406.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1603.0, + 1405.0, + 1603.0, + 1405.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1638.0, + 1405.0, + 1638.0, + 1405.0, + 1670.0, + 296.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1664.0, + 1406.0, + 1664.0, + 1406.0, + 1703.0, + 293.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1697.0, + 453.0, + 1697.0, + 453.0, + 1727.0, + 294.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1470.0, + 1403.0, + 1470.0, + 1403.0, + 1500.0, + 296.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1530.0, + 817.0, + 1530.0, + 817.0, + 1563.0, + 296.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 304.0, + 1405.0, + 304.0, + 1405.0, + 345.0, + 294.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 337.0, + 1404.0, + 337.0, + 1404.0, + 373.0, + 296.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 369.0, + 745.0, + 369.0, + 745.0, + 400.0, + 294.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 259.0, + 1230.0, + 259.0, + 1230.0, + 295.0, + 297.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 478.0, + 1405.0, + 478.0, + 1405.0, + 517.0, + 360.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 510.0, + 1406.0, + 510.0, + 1406.0, + 547.0, + 393.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 558.0, + 1406.0, + 558.0, + 1406.0, + 602.0, + 357.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 596.0, + 829.0, + 596.0, + 829.0, + 630.0, + 396.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 645.0, + 1135.0, + 645.0, + 1135.0, + 684.0, + 359.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 736.0, + 357.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 729.0, + 1115.0, + 729.0, + 1115.0, + 764.0, + 394.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 781.0, + 1406.0, + 781.0, + 1406.0, + 819.0, + 359.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 813.0, + 1306.0, + 813.0, + 1306.0, + 849.0, + 393.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 415.0, + 1000.0, + 415.0, + 1000.0, + 451.0, + 295.0, + 451.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1009, + 1405, + 1009, + 1405, + 1254, + 298, + 1254 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1500, + 1405, + 1500, + 1405, + 1956, + 297, + 1956 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1268, + 1404, + 1268, + 1404, + 1485, + 297, + 1485 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 375, + 227, + 1383, + 227, + 1383, + 872, + 375, + 872 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1400, + 1972, + 1400, + 2034, + 297, + 2034 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 299, + 933, + 459, + 933, + 459, + 968, + 299, + 968 + ], + "score": 0.902 + }, + { + "category_id": 4, + "poly": [ + 567, + 885, + 1128, + 885, + 1128, + 916, + 567, + 916 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.62 + }, + { + "category_id": 4, + "poly": [ + 569, + 885, + 1126, + 885, + 1126, + 917, + 569, + 917 + ], + "score": 0.573 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.431 + }, + { + "category_id": 4, + "poly": [ + 951, + 821, + 1384, + 821, + 1384, + 875, + 951, + 875 + ], + "score": 0.375 + }, + { + "category_id": 13, + "poly": [ + 898, + 1452, + 1105, + 1452, + 1105, + 1486, + 898, + 1486 + ], + "score": 0.92, + "latex": "\\pmb { H } = ( h _ { 1 } , . . . , h _ { N } )" + }, + { + "category_id": 13, + "poly": [ + 803, + 1300, + 1012, + 1300, + 1012, + 1333, + 803, + 1333 + ], + "score": 0.92, + "latex": "\\pmb { Y } = ( \\pmb { y } _ { 1 } , \\dots , \\pmb { y } _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1269, + 1403, + 1269, + 1403, + 1302, + 1184, + 1302 + ], + "score": 0.92, + "latex": "\\pmb { X } = ( \\pmb { x } _ { 1 } , \\dots , \\pmb { x } _ { N } )" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1300, + 1177, + 1300, + 1177, + 1329, + 1094, + 1329 + ], + "score": 0.91, + "latex": "T \\times K" + }, + { + "category_id": 13, + "poly": [ + 925, + 1932, + 951, + 1932, + 951, + 1953, + 925, + 1953 + ], + "score": 0.87, + "latex": "\\mathbf { Y }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1927, + 598, + 1927, + 598, + 1953, + 562, + 1953 + ], + "score": 0.85, + "latex": "\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1835, + 1250, + 1835, + 1250, + 1863, + 1213, + 1863 + ], + "score": 0.84, + "latex": "\\mathbf { { \\mathbf { { \\mathbf { Y } } ^ { \\prime } } } }" + }, + { + "category_id": 13, + "poly": [ + 893, + 1423, + 921, + 1423, + 921, + 1449, + 893, + 1449 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 402, + 1301, + 430, + 1301, + 430, + 1327, + 402, + 1327 + ], + "score": 0.79, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 296, + 1393, + 324, + 1393, + 324, + 1421, + 296, + 1421 + ], + "score": 0.72, + "latex": "\\times" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 233.0, + 612.0, + 233.0, + 612.0, + 271.0, + 534.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 239.0, + 1139.0, + 239.0, + 1139.0, + 267.0, + 1006.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 241.0, + 1297.0, + 241.0, + 1297.0, + 262.0, + 1164.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 278.0, + 611.0, + 278.0, + 611.0, + 300.0, + 537.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 276.0, + 860.0, + 276.0, + 860.0, + 302.0, + 805.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 275.0, + 1073.0, + 275.0, + 1073.0, + 298.0, + 1007.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 274.0, + 1234.0, + 274.0, + 1234.0, + 300.0, + 1164.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 296.0, + 615.0, + 296.0, + 615.0, + 316.0, + 532.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 292.0, + 866.0, + 292.0, + 866.0, + 318.0, + 800.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 310.0, + 1061.0, + 310.0, + 1061.0, + 333.0, + 1008.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 310.0, + 1230.0, + 310.0, + 1230.0, + 333.0, + 1162.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 327.0, + 750.0, + 327.0, + 750.0, + 349.0, + 657.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 342.0, + 600.0, + 342.0, + 600.0, + 350.0, + 581.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 343.0, + 729.0, + 343.0, + 729.0, + 367.0, + 678.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 339.0, + 1104.0, + 339.0, + 1104.0, + 368.0, + 1008.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 337.0, + 1270.0, + 337.0, + 1270.0, + 367.0, + 1137.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 354.0, + 581.0, + 354.0, + 581.0, + 378.0, + 565.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 374.0, + 475.0, + 374.0, + 475.0, + 413.0, + 392.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 390.0, + 524.0, + 390.0, + 524.0, + 402.0, + 502.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 375.0, + 617.0, + 375.0, + 617.0, + 413.0, + 529.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 383.0, + 744.0, + 383.0, + 744.0, + 406.0, + 661.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 380.0, + 871.0, + 380.0, + 871.0, + 410.0, + 794.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 376.0, + 1053.0, + 376.0, + 1053.0, + 401.0, + 1008.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 373.0, + 1125.0, + 373.0, + 1125.0, + 405.0, + 1054.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 368.0, + 1228.0, + 368.0, + 1228.0, + 406.0, + 1134.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 433.0, + 610.0, + 433.0, + 610.0, + 455.0, + 536.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 432.0, + 1035.0, + 432.0, + 1035.0, + 452.0, + 994.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 439.0, + 1149.0, + 439.0, + 1149.0, + 452.0, + 1131.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 447.0, + 615.0, + 447.0, + 615.0, + 473.0, + 532.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 447.0, + 1051.0, + 447.0, + 1051.0, + 469.0, + 975.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 446.0, + 1151.0, + 446.0, + 1151.0, + 463.0, + 1131.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 474.0, + 578.0, + 474.0, + 578.0, + 483.0, + 569.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 460.0, + 724.0, + 460.0, + 724.0, + 481.0, + 697.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 483.0, + 748.0, + 483.0, + 748.0, + 525.0, + 658.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 485.0, + 1054.0, + 485.0, + 1054.0, + 526.0, + 972.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 487.0, + 1182.0, + 487.0, + 1182.0, + 528.0, + 1105.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 491.0, + 1373.0, + 491.0, + 1373.0, + 517.0, + 1280.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 523.0, + 710.0, + 523.0, + 710.0, + 537.0, + 697.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 524.0, + 1058.0, + 524.0, + 1058.0, + 547.0, + 968.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 538.0, + 472.0, + 538.0, + 472.0, + 575.0, + 393.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 538.0, + 611.0, + 538.0, + 611.0, + 577.0, + 536.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 536.0, + 748.0, + 536.0, + 748.0, + 579.0, + 659.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 546.0, + 1177.0, + 546.0, + 1177.0, + 584.0, + 1110.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 546.0, + 1359.0, + 546.0, + 1359.0, + 584.0, + 1295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 575.0, + 582.0, + 575.0, + 582.0, + 595.0, + 565.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 574.0, + 713.0, + 574.0, + 713.0, + 596.0, + 694.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 581.0, + 1336.0, + 581.0, + 1336.0, + 605.0, + 1319.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 601.0, + 611.0, + 601.0, + 611.0, + 624.0, + 536.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 601.0, + 741.0, + 601.0, + 741.0, + 624.0, + 665.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 604.0, + 1368.0, + 604.0, + 1368.0, + 626.0, + 1286.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 632.0, + 581.0, + 632.0, + 581.0, + 646.0, + 566.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 630.0, + 712.0, + 630.0, + 712.0, + 651.0, + 694.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 625.0, + 1273.0, + 625.0, + 1273.0, + 723.0, + 1242.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 619.0, + 1348.0, + 619.0, + 1348.0, + 644.0, + 1308.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 638.0, + 1337.0, + 638.0, + 1337.0, + 662.0, + 1319.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 655.0, + 611.0, + 655.0, + 611.0, + 679.0, + 536.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 655.0, + 741.0, + 655.0, + 741.0, + 679.0, + 665.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 669.0, + 1054.0, + 669.0, + 1054.0, + 693.0, + 971.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 665.0, + 1184.0, + 665.0, + 1184.0, + 703.0, + 1101.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 660.0, + 1359.0, + 660.0, + 1359.0, + 697.0, + 1296.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 686.0, + 700.0, + 686.0, + 700.0, + 705.0, + 680.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 687.0, + 723.0, + 687.0, + 723.0, + 702.0, + 708.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 697.0, + 1334.0, + 697.0, + 1334.0, + 714.0, + 1320.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 714.0, + 846.0, + 714.0, + 846.0, + 729.0, + 831.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 714.0, + 1060.0, + 714.0, + 1060.0, + 736.0, + 966.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 715.0, + 1255.0, + 715.0, + 1255.0, + 728.0, + 1246.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 730.0, + 475.0, + 730.0, + 475.0, + 753.0, + 392.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 723.0, + 615.0, + 723.0, + 615.0, + 763.0, + 532.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 731.0, + 1026.0, + 731.0, + 1026.0, + 751.0, + 1004.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 721.0, + 1172.0, + 721.0, + 1172.0, + 744.0, + 1111.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 723.0, + 1360.0, + 723.0, + 1360.0, + 767.0, + 1295.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 772.0, + 480.0, + 772.0, + 480.0, + 809.0, + 387.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 773.0, + 615.0, + 773.0, + 615.0, + 812.0, + 531.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 780.0, + 730.0, + 780.0, + 730.0, + 803.0, + 675.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 780.0, + 866.0, + 780.0, + 866.0, + 803.0, + 791.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 766.0, + 1054.0, + 766.0, + 1054.0, + 803.0, + 971.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 773.0, + 1169.0, + 773.0, + 1169.0, + 796.0, + 1114.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 773.0, + 1364.0, + 773.0, + 1364.0, + 796.0, + 1289.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 823.0, + 710.0, + 823.0, + 710.0, + 853.0, + 554.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 820.0, + 1388.0, + 820.0, + 1388.0, + 852.0, + 949.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 845.0, + 1179.0, + 845.0, + 1179.0, + 878.0, + 948.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 497.5, + 1275.0, + 497.5, + 1275.0, + 512.5, + 1243.0, + 512.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.25, + 575.0, + 1239.25, + 575.0, + 1239.25, + 590.0, + 1212.25, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 928.0, + 467.0, + 928.0, + 467.0, + 975.0, + 291.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 883.0, + 1131.0, + 883.0, + 1131.0, + 919.0, + 568.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 883.0, + 1131.0, + 883.0, + 1131.0, + 920.0, + 569.0, + 920.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": [ + 949.0, + 820.0, + 1386.0, + 820.0, + 1386.0, + 853.0, + 949.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 848.0, + 1177.0, + 848.0, + 1177.0, + 876.0, + 948.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1007.0, + 1406.0, + 1007.0, + 1406.0, + 1045.0, + 292.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1038.0, + 1410.0, + 1038.0, + 1410.0, + 1078.0, + 292.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1073.0, + 1403.0, + 1073.0, + 1403.0, + 1103.0, + 297.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1135.0, + 295.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1132.0, + 1408.0, + 1132.0, + 1408.0, + 1166.0, + 292.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1161.0, + 1407.0, + 1161.0, + 1407.0, + 1195.0, + 295.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1405.0, + 1190.0, + 1405.0, + 1229.0, + 292.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 577.0, + 1225.0, + 577.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1595.0, + 292.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1626.0, + 295.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1406.0, + 1680.0, + 1406.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1714.0, + 1403.0, + 1714.0, + 1403.0, + 1745.0, + 295.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1408.0, + 1774.0, + 1408.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1801.0, + 1405.0, + 1801.0, + 1405.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 1212.0, + 1832.0, + 1212.0, + 1871.0, + 292.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1871.0, + 1251.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1899.0, + 294.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1896.0, + 1405.0, + 1896.0, + 1405.0, + 1930.0, + 295.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1925.0, + 561.0, + 1925.0, + 561.0, + 1960.0, + 295.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1925.0, + 924.0, + 1925.0, + 924.0, + 1960.0, + 599.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1925.0, + 962.0, + 1925.0, + 962.0, + 1960.0, + 952.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1268.0, + 1183.0, + 1268.0, + 1183.0, + 1306.0, + 294.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 401.0, + 1298.0, + 401.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1298.0, + 802.0, + 1298.0, + 802.0, + 1337.0, + 431.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1298.0, + 1093.0, + 1298.0, + 1093.0, + 1337.0, + 1013.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1298.0, + 1407.0, + 1298.0, + 1407.0, + 1337.0, + 1178.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 1404.0, + 1329.0, + 1404.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1395.0, + 295.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1389.0, + 1405.0, + 1389.0, + 1405.0, + 1426.0, + 325.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 892.0, + 1420.0, + 892.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1420.0, + 1407.0, + 1420.0, + 1407.0, + 1458.0, + 922.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 897.0, + 1452.0, + 897.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1452.0, + 1117.0, + 1452.0, + 1117.0, + 1490.0, + 1106.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1402.0, + 1970.0, + 1402.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 337, + 1404, + 337, + 1404, + 584, + 298, + 584 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1461, + 1402, + 1461, + 1402, + 1616, + 297, + 1616 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 736, + 1404, + 736, + 1404, + 860, + 299, + 860 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1629, + 1403, + 1629, + 1403, + 1785, + 298, + 1785 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1176, + 1401, + 1176, + 1401, + 1272, + 299, + 1272 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 598, + 1403, + 598, + 1403, + 723, + 298, + 723 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 323, + 299, + 323 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 396, + 1332, + 1299, + 1332, + 1299, + 1428, + 396, + 1428 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 1884, + 1403, + 1884, + 1403, + 1948, + 298, + 1948 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 301, + 1977, + 1406, + 1977, + 1406, + 2033, + 301, + 2033 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 460, + 880, + 698, + 880, + 698, + 916, + 460, + 916 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 298, + 1117, + 656, + 1117, + 656, + 1149, + 298, + 1149 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 1825, + 613, + 1825, + 613, + 1857, + 300, + 1857 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 434, + 924, + 677, + 924, + 677, + 985, + 434, + 985 + ], + "score": 0.909 + }, + { + "category_id": 8, + "poly": [ + 420, + 991, + 1277, + 991, + 1277, + 1079, + 420, + 1079 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1365, + 883, + 1400, + 883, + 1400, + 913, + 1365, + 913 + ], + "score": 0.859 + }, + { + "category_id": 9, + "poly": [ + 1365, + 940, + 1401, + 940, + 1401, + 969, + 1365, + 969 + ], + "score": 0.851 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1020, + 1401, + 1020, + 1401, + 1051, + 1366, + 1051 + ], + "score": 0.846 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.787 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.722 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 854, + 75, + 854, + 104, + 299, + 104 + ], + "score": 0.169 + }, + { + "category_id": 14, + "poly": [ + 420, + 874, + 1275, + 874, + 1275, + 1086, + 420, + 1086 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { { \\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { d u r } } = \\frac { 1 } { N } \\| d - d ^ { * } \\| _ { 2 } ^ { 2 } } \\\\ & { } & { \\mathcal { L } _ { \\mathrm { s p e c } } = \\frac { 1 } { T K } \\displaystyle \\sum _ { t = 1 } ^ { T } \\Big ( \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } ^ { \\prime } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 1 } + \\| y _ { t } - y _ { t } ^ { * } \\| _ { 2 } ^ { 2 } \\Big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 712, + 429, + 912, + 429, + 912, + 463, + 712, + 463 + ], + "score": 0.93, + "latex": "\\pmb { d } \\overset { - } { = } ( d _ { 1 } , \\ldots , d _ { N } )" + }, + { + "category_id": 14, + "poly": [ + 400, + 1327, + 1301, + 1327, + 1301, + 1428, + 400, + 1428 + ], + "score": 0.92, + "latex": "c _ { i } = \\frac { d _ { i } } { 2 } + \\sum _ { j = 1 } ^ { i - 1 } d _ { j } , \\qquad w _ { t i } = \\frac { N \\left( t ; c _ { i } , \\sigma _ { i } ^ { 2 } \\right) } { \\sum _ { j = 1 } ^ { N } \\mathcal { N } \\left( t ; c _ { j } , \\sigma _ { j } ^ { 2 } \\right) } , \\qquad \\quad u _ { t } = \\sum _ { i = 1 } ^ { N } w _ { t i } h _ { i }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1239, + 622, + 1239, + 622, + 1272, + 406, + 1272 + ], + "score": 0.92, + "latex": "U = ( \\pmb { u } _ { 1 } , \\dots , \\pmb { u } _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 950, + 795, + 1049, + 795, + 1049, + 827, + 950, + 827 + ], + "score": 0.92, + "latex": "L ^ { 1 } + L ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 779, + 1209, + 991, + 1209, + 991, + 1241, + 779, + 1241 + ], + "score": 0.9, + "latex": "{ \\pmb \\sigma } = ( \\sigma _ { 1 } , \\ldots , \\sigma _ { N } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1207, + 441, + 1207, + 441, + 1240, + 296, + 1240 + ], + "score": 0.9, + "latex": "( d _ { 1 } , \\ldots , d _ { N } )" + }, + { + "category_id": 13, + "poly": [ + 832, + 1177, + 1062, + 1177, + 1062, + 1210, + 832, + 1210 + ], + "score": 0.9, + "latex": "\\pmb { H } = ( h _ { 1 } , \\ldots , h _ { N } )" + }, + { + "category_id": 13, + "poly": [ + 848, + 766, + 883, + 766, + 883, + 795, + 848, + 795 + ], + "score": 0.88, + "latex": "L ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 997, + 1469, + 1024, + 1469, + 1024, + 1493, + 997, + 1493 + ], + "score": 0.86, + "latex": "\\sigma _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1178, + 1405, + 1178, + 1405, + 1208, + 1347, + 1208 + ], + "score": 0.84, + "latex": "{ \\pmb d } =" + }, + { + "category_id": 13, + "poly": [ + 823, + 557, + 843, + 557, + 843, + 579, + 823, + 579 + ], + "score": 0.79, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1120, + 1494, + 1141, + 1494, + 1141, + 1520, + 1120, + 1520 + ], + "score": 0.77, + "latex": "^ d" + }, + { + "category_id": 13, + "poly": [ + 531, + 1495, + 544, + 1495, + 544, + 1520, + 531, + 1520 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1378, + 1558, + 1401, + 1558, + 1401, + 1581, + 1378, + 1581 + ], + "score": 0.68, + "latex": "\\pmb { \\sigma }" + }, + { + "category_id": 13, + "poly": [ + 406, + 689, + 567, + 689, + 567, + 723, + 406, + 723 + ], + "score": 0.67, + "latex": "[ 1 , 2 , 1 , 1 , 2 , 3 ]" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1971.0, + 1410.0, + 1971.0, + 1410.0, + 2012.0, + 328.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2005.0, + 443.0, + 2005.0, + 443.0, + 2033.0, + 297.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1117.0, + 658.0, + 1117.0, + 658.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1825.0, + 616.0, + 1825.0, + 616.0, + 1861.0, + 295.0, + 1861.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": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 373.0, + 294.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 369.0, + 1405.0, + 369.0, + 1405.0, + 401.0, + 292.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 399.0, + 1405.0, + 399.0, + 1405.0, + 435.0, + 292.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 711.0, + 430.0, + 711.0, + 464.0, + 294.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 464.0, + 913.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 495.0, + 294.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1406.0, + 521.0, + 1406.0, + 558.0, + 293.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 553.0, + 822.0, + 553.0, + 822.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 553.0, + 1081.0, + 553.0, + 1081.0, + 587.0, + 844.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1461.0, + 996.0, + 1461.0, + 996.0, + 1496.0, + 295.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1461.0, + 1404.0, + 1461.0, + 1404.0, + 1496.0, + 1025.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 530.0, + 1492.0, + 530.0, + 1528.0, + 293.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1492.0, + 1119.0, + 1492.0, + 1119.0, + 1528.0, + 545.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1492.0, + 1407.0, + 1492.0, + 1407.0, + 1528.0, + 1142.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1523.0, + 1406.0, + 1523.0, + 1406.0, + 1556.0, + 296.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1552.0, + 1377.0, + 1552.0, + 1377.0, + 1588.0, + 295.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1584.0, + 966.0, + 1584.0, + 966.0, + 1617.0, + 296.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 1408.0, + 736.0, + 1408.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 767.0, + 847.0, + 767.0, + 847.0, + 801.0, + 293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 801.0, + 884.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 797.0, + 949.0, + 797.0, + 949.0, + 832.0, + 293.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 797.0, + 1406.0, + 797.0, + 1406.0, + 832.0, + 1050.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 828.0, + 1362.0, + 828.0, + 1362.0, + 864.0, + 294.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1631.0, + 1404.0, + 1631.0, + 1404.0, + 1664.0, + 297.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 1404.0, + 1688.0, + 1404.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1719.0, + 1407.0, + 1719.0, + 1407.0, + 1759.0, + 293.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1754.0, + 1321.0, + 1754.0, + 1321.0, + 1787.0, + 294.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1173.0, + 831.0, + 1173.0, + 831.0, + 1213.0, + 294.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1173.0, + 1346.0, + 1173.0, + 1346.0, + 1213.0, + 1063.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1204.0, + 778.0, + 1204.0, + 778.0, + 1245.0, + 442.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1204.0, + 1405.0, + 1204.0, + 1405.0, + 1245.0, + 992.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1237.0, + 405.0, + 1237.0, + 405.0, + 1275.0, + 294.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1237.0, + 665.0, + 1237.0, + 665.0, + 1275.0, + 623.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 597.0, + 1405.0, + 597.0, + 1405.0, + 634.0, + 293.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1404.0, + 630.0, + 1404.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 657.0, + 1404.0, + 657.0, + 1404.0, + 696.0, + 292.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 690.0, + 405.0, + 690.0, + 405.0, + 724.0, + 296.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 690.0, + 578.0, + 690.0, + 578.0, + 724.0, + 568.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1361.0, + 291.0, + 1361.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1916.0, + 1408.0, + 1916.0, + 1408.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 495, + 1404, + 495, + 1404, + 719, + 297, + 719 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1273, + 1404, + 1273, + 1404, + 1429, + 297, + 1429 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1441, + 1405, + 1441, + 1405, + 1629, + 298, + 1629 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 948, + 1405, + 948, + 1405, + 1102, + 296, + 1102 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 731, + 1404, + 731, + 1404, + 888, + 297, + 888 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 385, + 298, + 385 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1735, + 1403, + 1735, + 1403, + 1830, + 298, + 1830 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1197, + 1403, + 1197, + 1403, + 1260, + 297, + 1260 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 617, + 1687, + 1081, + 1687, + 1081, + 1725, + 617, + 1725 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 698, + 900, + 1000, + 900, + 1000, + 939, + 698, + 939 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 365, + 1116, + 1329, + 1116, + 1329, + 1183, + 365, + 1183 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 300, + 1641, + 1133, + 1641, + 1133, + 1674, + 300, + 1674 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 300, + 430, + 1229, + 430, + 1229, + 464, + 300, + 464 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 301, + 1873, + 729, + 1873, + 729, + 1908, + 301, + 1908 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1690, + 1399, + 1690, + 1399, + 1720, + 1366, + 1720 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1367, + 1125, + 1400, + 1125, + 1400, + 1155, + 1367, + 1155 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.737 + }, + { + "category_id": 9, + "poly": [ + 1246, + 1122, + 1332, + 1122, + 1332, + 1157, + 1246, + 1157 + ], + "score": 0.199 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 852, + 75, + 852, + 104, + 299, + 104 + ], + "score": 0.111 + }, + { + "category_id": 13, + "poly": [ + 1088, + 1041, + 1179, + 1041, + 1179, + 1074, + 1088, + 1074 + ], + "score": 0.93, + "latex": "\\mathcal { N } ( \\mathbf { 0 } , \\mathbf { I } )" + }, + { + "category_id": 13, + "poly": [ + 840, + 621, + 1096, + 621, + 1096, + 662, + 840, + 662 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { u } } = \\frac { 1 } { N } \\left( T - \\sum _ { i } d _ { i } \\right) ^ { 2 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 615, + 1687, + 1081, + 1687, + 1081, + 1725, + 615, + 1725 + ], + "score": 0.92, + "latex": "\\mathcal { L } = \\mathcal { L } _ { \\mathrm { s p e c } } + \\lambda _ { \\mathrm { d u r } } \\mathcal { L } _ { \\mathrm { d u r } } + \\lambda _ { \\mathrm { u } } \\mathcal { L } _ { \\mathrm { u } } + \\lambda _ { \\mathrm { K L } } D _ { \\mathrm { K L } } ," + }, + { + "category_id": 13, + "poly": [ + 1248, + 587, + 1355, + 587, + 1355, + 623, + 1248, + 623 + ], + "score": 0.92, + "latex": "T / \\sum _ { i } d _ { i }" + }, + { + "category_id": 14, + "poly": [ + 366, + 1112, + 1335, + 1112, + 1335, + 1187, + 366, + 1187 + ], + "score": 0.92, + "latex": "\\log p \\left( { Y } \\mid { H } \\right) \\geq - \\sum _ { i } D _ { \\mathrm { K L } } \\left( q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) \\parallel p \\left( \\boldsymbol { z } _ { i } \\right) \\right) + \\mathbb { E } _ { q \\left( \\boldsymbol { z } _ { i } \\mid h _ { i } , \\boldsymbol { c } _ { i } \\right) } \\left[ \\log p \\left( { Y } \\mid { H } , \\boldsymbol { Z } \\right) \\right]" + }, + { + "category_id": 14, + "poly": [ + 698, + 899, + 999, + 899, + 999, + 938, + 698, + 938 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\pmb { c } _ { i } = \\mathrm { A t t n } ( \\pmb { h } _ { i } , f _ { \\mathrm { s p e c } } ( \\pmb { Y } ^ { * } ) ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 889, + 950, + 942, + 950, + 942, + 983, + 889, + 983 + ], + "score": 0.91, + "latex": "f _ { \\mathrm { s p e c } }" + }, + { + "category_id": 13, + "poly": [ + 474, + 1738, + 531, + 1738, + 531, + 1770, + 474, + 1770 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { \\mathrm { s p e c } }" + }, + { + "category_id": 13, + "poly": [ + 370, + 1737, + 424, + 1737, + 424, + 1768, + 370, + 1768 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1737, + 1376, + 1737, + 1376, + 1768, + 1326, + 1768 + ], + "score": 0.9, + "latex": "{ \\mathcal { L } } _ { \\mathrm { d u r } }" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1012, + 1193, + 1012, + 1193, + 1041, + 1162, + 1041 + ], + "score": 0.87, + "latex": "\\boldsymbol { h } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 373, + 951, + 405, + 951, + 405, + 980, + 373, + 980 + ], + "score": 0.87, + "latex": "\\boldsymbol { h } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 442, + 857, + 482, + 857, + 482, + 884, + 442, + 884 + ], + "score": 0.86, + "latex": "Y ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 802, + 1014, + 830, + 1014, + 830, + 1041, + 802, + 1041 + ], + "score": 0.86, + "latex": "z _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1014, + 1113, + 1014, + 1113, + 1041, + 1086, + 1041 + ], + "score": 0.84, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1297, + 1337, + 1323, + 1337, + 1323, + 1364, + 1297, + 1364 + ], + "score": 0.81, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1355, + 1307, + 1375, + 1307, + 1375, + 1333, + 1355, + 1333 + ], + "score": 0.81, + "latex": "^ d" + }, + { + "category_id": 13, + "poly": [ + 806, + 1367, + 833, + 1367, + 833, + 1395, + 806, + 1395 + ], + "score": 0.76, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1100, + 826, + 1132, + 826, + 1132, + 854, + 1100, + 854 + ], + "score": 0.73, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 994, + 1337, + 1026, + 1337, + 1026, + 1364, + 994, + 1364 + ], + "score": 0.71, + "latex": "\\pmb { H }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 427.0, + 1233.0, + 427.0, + 1233.0, + 470.0, + 293.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1870.0, + 735.0, + 1870.0, + 735.0, + 1914.0, + 292.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 497.0, + 1404.0, + 497.0, + 1404.0, + 532.0, + 294.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 526.0, + 1405.0, + 526.0, + 1405.0, + 565.0, + 294.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 558.0, + 1402.0, + 558.0, + 1402.0, + 593.0, + 294.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 587.0, + 1247.0, + 587.0, + 1247.0, + 626.0, + 295.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 587.0, + 1405.0, + 587.0, + 1405.0, + 626.0, + 1356.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 623.0, + 839.0, + 623.0, + 839.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 623.0, + 1406.0, + 623.0, + 1406.0, + 663.0, + 1097.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 656.0, + 1405.0, + 656.0, + 1405.0, + 692.0, + 295.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 687.0, + 747.0, + 687.0, + 747.0, + 722.0, + 295.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 1405.0, + 1271.0, + 1405.0, + 1311.0, + 294.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 1354.0, + 1304.0, + 1354.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1304.0, + 1406.0, + 1304.0, + 1406.0, + 1340.0, + 1376.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1335.0, + 993.0, + 1335.0, + 993.0, + 1370.0, + 293.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1335.0, + 1296.0, + 1335.0, + 1296.0, + 1370.0, + 1027.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1335.0, + 1406.0, + 1335.0, + 1406.0, + 1370.0, + 1324.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1367.0, + 805.0, + 1367.0, + 805.0, + 1400.0, + 296.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1367.0, + 1402.0, + 1367.0, + 1402.0, + 1400.0, + 834.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1396.0, + 1208.0, + 1396.0, + 1208.0, + 1430.0, + 296.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1440.0, + 1409.0, + 1440.0, + 1409.0, + 1478.0, + 293.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1508.0, + 295.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1540.0, + 295.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1534.0, + 1403.0, + 1534.0, + 1403.0, + 1568.0, + 295.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1567.0, + 1403.0, + 1567.0, + 1403.0, + 1599.0, + 296.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1593.0, + 480.0, + 1593.0, + 480.0, + 1634.0, + 293.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 948.0, + 372.0, + 948.0, + 372.0, + 985.0, + 294.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 948.0, + 888.0, + 948.0, + 888.0, + 985.0, + 406.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 948.0, + 1406.0, + 948.0, + 1406.0, + 985.0, + 943.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 980.0, + 1407.0, + 980.0, + 1407.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1009.0, + 801.0, + 1009.0, + 801.0, + 1046.0, + 295.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1009.0, + 1085.0, + 1009.0, + 1085.0, + 1046.0, + 831.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1009.0, + 1161.0, + 1009.0, + 1161.0, + 1046.0, + 1114.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1009.0, + 1406.0, + 1009.0, + 1406.0, + 1046.0, + 1194.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1040.0, + 1087.0, + 1040.0, + 1087.0, + 1077.0, + 293.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1040.0, + 1403.0, + 1040.0, + 1403.0, + 1077.0, + 1180.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 692.0, + 1071.0, + 692.0, + 1104.0, + 295.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 733.0, + 1406.0, + 733.0, + 1406.0, + 767.0, + 296.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 763.0, + 1406.0, + 763.0, + 1406.0, + 800.0, + 295.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 796.0, + 1405.0, + 796.0, + 1405.0, + 830.0, + 296.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 1099.0, + 823.0, + 1099.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 823.0, + 1406.0, + 823.0, + 1406.0, + 863.0, + 1133.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 854.0, + 441.0, + 854.0, + 441.0, + 892.0, + 292.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 854.0, + 1160.0, + 854.0, + 1160.0, + 892.0, + 483.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1408.0, + 228.0, + 1408.0, + 264.0, + 293.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 287.0, + 1405.0, + 287.0, + 1405.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 358.0, + 295.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 351.0, + 667.0, + 351.0, + 667.0, + 390.0, + 295.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1735.0, + 369.0, + 1735.0, + 369.0, + 1773.0, + 293.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1735.0, + 473.0, + 1735.0, + 473.0, + 1773.0, + 425.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1735.0, + 1325.0, + 1735.0, + 1325.0, + 1773.0, + 532.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1735.0, + 1407.0, + 1735.0, + 1407.0, + 1773.0, + 1377.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 1407.0, + 1765.0, + 1407.0, + 1803.0, + 294.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1798.0, + 658.0, + 1798.0, + 658.0, + 1832.0, + 296.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1197.0, + 1403.0, + 1197.0, + 1403.0, + 1232.0, + 295.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1229.0, + 896.0, + 1229.0, + 896.0, + 1262.0, + 295.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 1136.0, + 1638.0, + 1136.0, + 1679.0, + 294.0, + 1679.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 324, + 1729, + 766, + 1729, + 766, + 2016, + 324, + 2016 + ], + "score": 0.975, + "html": "
ModelMOS
Tacotron 2
w/LSA4.35 ± 0.05
w/ GMMA4.37 ± 0.04
Non-Attentive Tacotron w/ Gauss. upsampling
w/ vanilla upsampling4.41 ± 0.04
4.13 ± 0.05
Ground truth4.42 ± 0.04
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1409, + 1403, + 1409, + 1403, + 1531, + 299, + 1531 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1083, + 1404, + 1083, + 1404, + 1237, + 299, + 1237 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 876, + 1659, + 1353, + 1659, + 1353, + 1907, + 876, + 1907 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 975, + 1401, + 975, + 1401, + 1067, + 299, + 1067 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 839, + 1932, + 1397, + 1932, + 1397, + 2026, + 839, + 2026 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 308, + 1400, + 308, + 1400, + 399, + 300, + 399 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 297, + 230, + 1401, + 230, + 1401, + 292, + 297, + 292 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 1252, + 1401, + 1252, + 1401, + 1313, + 296, + 1313 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 299, + 799, + 1398, + 799, + 1398, + 861, + 299, + 861 + ], + "score": 0.944 + }, + { + "category_id": 6, + "poly": [ + 299, + 1672, + 794, + 1672, + 794, + 1705, + 299, + 1705 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 906, + 558, + 906, + 558, + 941, + 299, + 941 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 299, + 1352, + 543, + 1352, + 543, + 1382, + 299, + 1382 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 363, + 424, + 1404, + 424, + 1404, + 773, + 363, + 773 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2113, + 840, + 2113 + ], + "score": 0.819 + }, + { + "category_id": 1, + "poly": [ + 290, + 1546, + 1403, + 1546, + 1403, + 1609, + 290, + 1609 + ], + "score": 0.66 + }, + { + "category_id": 13, + "poly": [ + 1026, + 1204, + 1125, + 1204, + 1125, + 1235, + 1026, + 1235 + ], + "score": 0.92, + "latex": "L ^ { 1 } + L ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 958, + 640, + 1024, + 640, + 1024, + 669, + 958, + 669 + ], + "score": 0.88, + "latex": "100 \\%" + }, + { + "category_id": 13, + "poly": [ + 1062, + 489, + 1109, + 489, + 1109, + 517, + 1062, + 517 + ], + "score": 0.85, + "latex": "> 1" + }, + { + "category_id": 13, + "poly": [ + 512, + 1673, + 566, + 1673, + 566, + 1702, + 512, + 1702 + ], + "score": 0.85, + "latex": "9 5 \\%" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1661.0, + 1159.0, + 1661.0, + 1159.0, + 1690.0, + 1113.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1673.0, + 923.0, + 1673.0, + 923.0, + 1706.0, + 876.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1730.0, + 923.0, + 1730.0, + 923.0, + 1762.0, + 876.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1787.0, + 924.0, + 1787.0, + 924.0, + 1820.0, + 876.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1792.0, + 1099.0, + 1792.0, + 1099.0, + 1821.0, + 1054.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1787.0, + 1219.0, + 1787.0, + 1219.0, + 1815.0, + 1175.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1830.0, + 971.0, + 1830.0, + 971.0, + 1856.0, + 947.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1823.0, + 1034.0, + 1823.0, + 1034.0, + 1846.0, + 1004.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1819.0, + 1272.0, + 1819.0, + 1272.0, + 1845.0, + 1238.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1829.0, + 1331.0, + 1829.0, + 1331.0, + 1857.0, + 1297.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1848.0, + 920.0, + 1848.0, + 920.0, + 1871.0, + 899.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1860.0, + 986.0, + 1860.0, + 986.0, + 1888.0, + 932.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1858.0, + 1282.0, + 1858.0, + 1282.0, + 1889.0, + 990.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1860.0, + 1341.0, + 1860.0, + 1341.0, + 1888.0, + 1285.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1879.0, + 988.0, + 1879.0, + 988.0, + 1909.0, + 930.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1882.0, + 1223.0, + 1882.0, + 1223.0, + 1908.0, + 1050.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1879.0, + 1342.0, + 1879.0, + 1342.0, + 1909.0, + 1286.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1932.0, + 1397.0, + 1932.0, + 1397.0, + 1966.0, + 839.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1961.0, + 1398.0, + 1961.0, + 1398.0, + 1999.0, + 837.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1992.0, + 1174.0, + 1992.0, + 1174.0, + 2028.0, + 837.0, + 2028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 511.0, + 1671.0, + 511.0, + 1706.0, + 295.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1671.0, + 798.0, + 1671.0, + 798.0, + 1706.0, + 567.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 906.0, + 560.0, + 906.0, + 560.0, + 946.0, + 294.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1348.0, + 547.0, + 1348.0, + 547.0, + 1388.0, + 293.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1446.0, + 293.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1438.0, + 1407.0, + 1438.0, + 1407.0, + 1476.0, + 293.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1470.0, + 1407.0, + 1470.0, + 1407.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1129.0, + 1501.0, + 1129.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 1403.0, + 1085.0, + 1403.0, + 1118.0, + 295.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1148.0, + 292.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 1406.0, + 1175.0, + 1406.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1204.0, + 1025.0, + 1204.0, + 1025.0, + 1237.0, + 295.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1204.0, + 1184.0, + 1204.0, + 1184.0, + 1237.0, + 1126.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 1402.0, + 975.0, + 1402.0, + 1009.0, + 295.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1043.0, + 294.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1034.0, + 652.0, + 1034.0, + 652.0, + 1071.0, + 294.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 307.0, + 1404.0, + 307.0, + 1404.0, + 343.0, + 293.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 373.0, + 295.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 368.0, + 1375.0, + 368.0, + 1375.0, + 404.0, + 294.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 264.0, + 730.0, + 264.0, + 730.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1251.0, + 1405.0, + 1251.0, + 1405.0, + 1286.0, + 295.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1279.0, + 1388.0, + 1279.0, + 1388.0, + 1318.0, + 292.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 798.0, + 1404.0, + 798.0, + 1404.0, + 834.0, + 295.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 825.0, + 604.0, + 825.0, + 604.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 428.0, + 1404.0, + 428.0, + 1404.0, + 461.0, + 362.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 459.0, + 1406.0, + 459.0, + 1406.0, + 492.0, + 395.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 489.0, + 1061.0, + 489.0, + 1061.0, + 525.0, + 394.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 525.0, + 1110.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 518.0, + 1408.0, + 518.0, + 1408.0, + 554.0, + 394.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 548.0, + 1406.0, + 548.0, + 1406.0, + 584.0, + 394.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 579.0, + 1406.0, + 579.0, + 1406.0, + 615.0, + 394.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 609.0, + 1405.0, + 609.0, + 1405.0, + 645.0, + 394.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 641.0, + 957.0, + 641.0, + 957.0, + 673.0, + 395.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 641.0, + 1036.0, + 641.0, + 1036.0, + 673.0, + 1025.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 679.0, + 1405.0, + 679.0, + 1405.0, + 714.0, + 363.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 712.0, + 1405.0, + 712.0, + 1405.0, + 747.0, + 393.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 742.0, + 1028.0, + 742.0, + 1028.0, + 775.0, + 394.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1548.0, + 1404.0, + 1548.0, + 1404.0, + 1580.0, + 296.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1095, + 804, + 1095, + 804, + 1431, + 299, + 1431 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 804, + 804, + 804, + 804, + 1079, + 297, + 1079 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1448, + 804, + 1448, + 804, + 1661, + 297, + 1661 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 834, + 850, + 1393, + 850, + 1393, + 1410, + 834, + 1410 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 299, + 1739, + 1398, + 1739, + 1398, + 1860, + 299, + 1860 + ], + "score": 0.974, + "html": "
Pace0.67×0.8×0.9×1.0×1.11×1.25×1.5×
WER3.3%2.8%2.6%2.6%2.5%2.7%6.1%
MOS3.28 ± 0.063.87 ± 0.054.24 ± 0.044.41 ± 0.044.28 ± 0.043.79 ± 0.063.18± 0.06
" + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 1402, + 228, + 1402, + 325, + 300, + 325 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 337, + 1405, + 337, + 1405, + 492, + 297, + 492 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 823, + 1438, + 1406, + 1438, + 1406, + 1622, + 823, + 1622 + ], + "score": 0.964 + }, + { + "category_id": 5, + "poly": [ + 474, + 607, + 1216, + 607, + 1216, + 699, + 474, + 699 + ], + "score": 0.963, + "html": "
Pace0.8×1.0×1.25×
Preference -0.017 ±0.057 -0.055±0.054 -0.017±0.055
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1972, + 1399, + 1972, + 1399, + 2035, + 296, + 2035 + ], + "score": 0.95 + }, + { + "category_id": 6, + "poly": [ + 298, + 518, + 1400, + 518, + 1400, + 581, + 298, + 581 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 299, + 748, + 548, + 748, + 548, + 779, + 299, + 779 + ], + "score": 0.911 + }, + { + "category_id": 6, + "poly": [ + 363, + 1681, + 1330, + 1681, + 1330, + 1716, + 363, + 1716 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 1917, + 1099, + 1917, + 1099, + 1946, + 300, + 1946 + ], + "score": 0.808 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.771 + }, + { + "category_id": 13, + "poly": [ + 515, + 1096, + 673, + 1096, + 673, + 1126, + 515, + 1126 + ], + "score": 0.91, + "latex": "0 . 8 \\times - 1 . 2 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 329, + 1189, + 390, + 1189, + 390, + 1217, + 329, + 1217 + ], + "score": 0.89, + "latex": "1 . 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 1138, + 1562, + 1213, + 1562, + 1213, + 1590, + 1138, + 1590 + ], + "score": 0.88, + "latex": "0 . 6 7 \\times" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1592, + 1289, + 1592, + 1289, + 1621, + 1230, + 1621 + ], + "score": 0.87, + "latex": "1 . 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 297, + 1049, + 358, + 1049, + 358, + 1078, + 297, + 1078 + ], + "score": 0.84, + "latex": "2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1042, + 554, + 1062, + 554, + 1062, + 576, + 1042, + 576 + ], + "score": 0.75, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1358, + 555, + 1377, + 555, + 1377, + 576, + 1358, + 576 + ], + "score": 0.73, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 992, + 525, + 1014, + 525, + 1014, + 546, + 992, + 546 + ], + "score": 0.71, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 798, + 525, + 819, + 525, + 819, + 546, + 798, + 546 + ], + "score": 0.7, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 297, + 466, + 318, + 466, + 318, + 488, + 297, + 488 + ], + "score": 0.66, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 427, + 1401, + 496, + 1401, + 496, + 1432, + 427, + 1432 + ], + "score": 0.32, + "latex": "\\mathbf { \\eta } ^ { ( 0 . 8 \\mathbf { x } ) }" + }, + { + "category_id": 13, + "poly": [ + 698, + 1401, + 779, + 1401, + 779, + 1432, + 698, + 1432 + ], + "score": 0.3, + "latex": "( 1 . 2 5 \\mathrm { x } )" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 856.0, + 1029.0, + 856.0, + 1029.0, + 877.0, + 1019.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 875.0, + 899.0, + 875.0, + 899.0, + 882.0, + 886.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 871.0, + 971.0, + 871.0, + 971.0, + 884.0, + 915.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 872.0, + 1016.0, + 872.0, + 1016.0, + 884.0, + 983.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 874.0, + 1123.0, + 874.0, + 1123.0, + 883.0, + 1062.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 873.0, + 1178.0, + 873.0, + 1178.0, + 884.0, + 1164.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 868.0, + 1218.0, + 868.0, + 1218.0, + 886.0, + 1196.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 872.0, + 1280.0, + 872.0, + 1280.0, + 884.0, + 1247.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1010.0, + 987.0, + 1010.0, + 987.0, + 1023.0, + 935.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1012.0, + 1157.0, + 1012.0, + 1157.0, + 1022.0, + 1099.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1010.0, + 1314.0, + 1010.0, + 1314.0, + 1023.0, + 1282.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1149.0, + 967.0, + 1149.0, + 967.0, + 1161.0, + 917.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1150.0, + 1014.0, + 1150.0, + 1014.0, + 1159.0, + 987.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1148.0, + 1154.0, + 1148.0, + 1154.0, + 1160.0, + 1088.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1151.0, + 1235.0, + 1151.0, + 1235.0, + 1158.0, + 1225.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1150.0, + 1334.0, + 1150.0, + 1334.0, + 1159.0, + 1305.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1289.0, + 864.0, + 1289.0, + 864.0, + 1296.0, + 849.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1288.0, + 901.0, + 1288.0, + 901.0, + 1298.0, + 884.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1285.0, + 971.0, + 1285.0, + 971.0, + 1299.0, + 914.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1286.0, + 1040.0, + 1286.0, + 1040.0, + 1304.0, + 983.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1284.0, + 1125.0, + 1284.0, + 1125.0, + 1302.0, + 1059.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1287.0, + 1178.0, + 1287.0, + 1178.0, + 1298.0, + 1163.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1287.0, + 1226.0, + 1287.0, + 1226.0, + 1298.0, + 1205.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1285.0, + 1314.0, + 1285.0, + 1314.0, + 1301.0, + 1281.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1299.0, + 1027.0, + 1299.0, + 1027.0, + 1317.0, + 1020.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1315.0, + 1028.0, + 1315.0, + 1028.0, + 1369.0, + 1018.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1336.0, + 1244.0, + 1336.0, + 1244.0, + 1364.0, + 1237.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1396.0, + 950.0, + 1396.0, + 950.0, + 1411.0, + 932.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1396.0, + 1055.0, + 1396.0, + 1055.0, + 1411.0, + 1032.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1394.0, + 1159.0, + 1394.0, + 1159.0, + 1412.0, + 1134.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1396.0, + 1260.0, + 1396.0, + 1260.0, + 1411.0, + 1238.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1392.0, + 1365.0, + 1392.0, + 1365.0, + 1413.0, + 1340.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1147.5, + 1274.0, + 1147.5, + 1274.0, + 1160.5, + 1254.0, + 1160.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1438.0, + 1405.0, + 1438.0, + 1405.0, + 1472.0, + 824.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1468.0, + 1406.0, + 1468.0, + 1406.0, + 1500.0, + 822.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1497.0, + 1405.0, + 1497.0, + 1405.0, + 1533.0, + 821.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1563.0, + 822.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1559.0, + 1137.0, + 1559.0, + 1137.0, + 1595.0, + 820.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1595.0, + 1214.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1591.0, + 1229.0, + 1591.0, + 1229.0, + 1626.0, + 824.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1591.0, + 1299.0, + 1591.0, + 1299.0, + 1626.0, + 1290.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 519.0, + 797.0, + 519.0, + 797.0, + 551.0, + 297.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 519.0, + 991.0, + 519.0, + 991.0, + 551.0, + 820.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 551.0, + 1015.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 548.0, + 1041.0, + 548.0, + 1041.0, + 584.0, + 296.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 548.0, + 1357.0, + 548.0, + 1357.0, + 584.0, + 1063.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 548.0, + 1390.0, + 548.0, + 1390.0, + 584.0, + 1378.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 554.0, + 743.0, + 554.0, + 784.0, + 294.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1677.0, + 1333.0, + 1677.0, + 1333.0, + 1721.0, + 361.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1102.0, + 1913.0, + 1102.0, + 1950.0, + 294.0, + 1950.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, + 1093.0, + 514.0, + 1093.0, + 514.0, + 1127.0, + 294.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1093.0, + 807.0, + 1093.0, + 807.0, + 1127.0, + 674.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1126.0, + 808.0, + 1126.0, + 808.0, + 1159.0, + 294.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 805.0, + 1156.0, + 805.0, + 1188.0, + 295.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 328.0, + 1186.0, + 328.0, + 1219.0, + 294.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1186.0, + 805.0, + 1186.0, + 805.0, + 1219.0, + 391.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1217.0, + 805.0, + 1217.0, + 805.0, + 1250.0, + 295.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 807.0, + 1247.0, + 807.0, + 1280.0, + 294.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1279.0, + 807.0, + 1279.0, + 807.0, + 1312.0, + 295.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1309.0, + 807.0, + 1309.0, + 807.0, + 1342.0, + 296.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1338.0, + 808.0, + 1338.0, + 808.0, + 1373.0, + 294.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1370.0, + 805.0, + 1370.0, + 805.0, + 1402.0, + 295.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 426.0, + 1400.0, + 426.0, + 1434.0, + 295.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1400.0, + 697.0, + 1400.0, + 697.0, + 1434.0, + 497.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1400.0, + 791.0, + 1400.0, + 791.0, + 1434.0, + 780.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 804.0, + 806.0, + 804.0, + 806.0, + 837.0, + 296.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 834.0, + 805.0, + 834.0, + 805.0, + 870.0, + 294.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 866.0, + 804.0, + 866.0, + 804.0, + 900.0, + 296.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 895.0, + 805.0, + 895.0, + 805.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 928.0, + 805.0, + 928.0, + 805.0, + 958.0, + 295.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 958.0, + 806.0, + 958.0, + 806.0, + 988.0, + 296.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 808.0, + 988.0, + 808.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1018.0, + 806.0, + 1018.0, + 806.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1049.0, + 655.0, + 1049.0, + 655.0, + 1080.0, + 359.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1448.0, + 804.0, + 1448.0, + 804.0, + 1478.0, + 297.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1476.0, + 805.0, + 1476.0, + 805.0, + 1510.0, + 296.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1510.0, + 808.0, + 1510.0, + 808.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1538.0, + 809.0, + 1538.0, + 809.0, + 1570.0, + 295.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1569.0, + 807.0, + 1569.0, + 807.0, + 1602.0, + 296.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 807.0, + 1599.0, + 807.0, + 1633.0, + 295.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1632.0, + 406.0, + 1632.0, + 406.0, + 1663.0, + 295.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1406.0, + 226.0, + 1406.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 1407.0, + 258.0, + 1407.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 287.0, + 657.0, + 287.0, + 657.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 335.0, + 1406.0, + 335.0, + 1406.0, + 373.0, + 294.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 367.0, + 1405.0, + 367.0, + 1405.0, + 404.0, + 294.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 399.0, + 1407.0, + 399.0, + 1407.0, + 436.0, + 292.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 426.0, + 1406.0, + 426.0, + 1406.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 460.0, + 296.0, + 460.0, + 296.0, + 495.0, + 292.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 460.0, + 627.0, + 460.0, + 627.0, + 495.0, + 319.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 434, + 808, + 1261, + 808, + 1261, + 1082, + 434, + 1082 + ], + "score": 0.982, + "html": "
TrainingModelDur. MAE (ms)MOS
Unsupervisedw/o FVAE124.42.91± 0.09
w/ FVAE41.34.31 ± 0.04
Semi-supervisedw/o FVAE21.54.19 ± 0.05
Supervisedw/FVAE18.34.35 ± 0.04
Non-Attentive Tacotron15.44.37 ± 0.04
Tacotron2 w/ GMMA-4.35 ± 0.04
Ground truth=4.52 ± 0.03
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1681, + 1404, + 1681, + 1404, + 1866, + 298, + 1866 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1420, + 1404, + 1420, + 1404, + 1665, + 298, + 1665 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1881, + 1402, + 1881, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1282, + 1405, + 1282, + 1405, + 1405, + 298, + 1405 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 300, + 221, + 1295, + 221, + 1295, + 534, + 300, + 534 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1204, + 1400, + 1204, + 1400, + 1267, + 299, + 1267 + ], + "score": 0.954 + }, + { + "category_id": 6, + "poly": [ + 295, + 720, + 1404, + 720, + 1404, + 785, + 295, + 785 + ], + "score": 0.927 + }, + { + "category_id": 4, + "poly": [ + 295, + 559, + 1403, + 559, + 1403, + 624, + 295, + 624 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 854, + 76, + 854, + 104, + 297, + 104 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.796 + }, + { + "category_id": 13, + "poly": [ + 877, + 1206, + 931, + 1206, + 931, + 1235, + 877, + 1235 + ], + "score": 0.87, + "latex": "11 \\%" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 227.0, + 519.0, + 227.0, + 519.0, + 246.0, + 401.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 227.0, + 739.0, + 227.0, + 739.0, + 246.0, + 628.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 226.0, + 923.0, + 226.0, + 923.0, + 246.0, + 888.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 225.0, + 1150.0, + 225.0, + 1150.0, + 249.0, + 1108.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 243.0, + 363.0, + 243.0, + 363.0, + 264.0, + 333.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 239.0, + 1287.0, + 239.0, + 1287.0, + 253.0, + 1267.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 293.0, + 362.0, + 293.0, + 362.0, + 311.0, + 334.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 287.0, + 1289.0, + 287.0, + 1289.0, + 305.0, + 1264.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 338.0, + 320.0, + 338.0, + 320.0, + 409.0, + 301.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 342.0, + 361.0, + 342.0, + 361.0, + 360.0, + 336.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 347.0, + 713.0, + 347.0, + 713.0, + 356.0, + 704.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 338.0, + 1289.0, + 338.0, + 1289.0, + 355.0, + 1264.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 392.0, + 362.0, + 392.0, + 362.0, + 409.0, + 334.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 388.0, + 1289.0, + 388.0, + 1289.0, + 406.0, + 1264.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 421.0, + 640.0, + 421.0, + 640.0, + 433.0, + 631.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 441.0, + 361.0, + 441.0, + 361.0, + 458.0, + 339.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 439.0, + 1289.0, + 439.0, + 1289.0, + 456.0, + 1265.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 492.0, + 357.0, + 492.0, + 357.0, + 503.0, + 347.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 488.0, + 1289.0, + 488.0, + 1289.0, + 505.0, + 1265.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 502.0, + 366.0, + 502.0, + 366.0, + 514.0, + 357.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 498.0, + 413.0, + 498.0, + 413.0, + 517.0, + 391.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 500.0, + 452.0, + 500.0, + 452.0, + 517.0, + 431.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 498.0, + 492.0, + 498.0, + 492.0, + 517.0, + 471.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 500.0, + 532.0, + 500.0, + 532.0, + 517.0, + 510.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 501.0, + 569.0, + 501.0, + 569.0, + 515.0, + 551.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 503.0, + 590.0, + 503.0, + 590.0, + 514.0, + 579.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 500.0, + 634.0, + 500.0, + 634.0, + 517.0, + 614.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 498.0, + 674.0, + 498.0, + 674.0, + 517.0, + 654.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 500.0, + 714.0, + 500.0, + 714.0, + 517.0, + 693.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 498.0, + 754.0, + 498.0, + 754.0, + 517.0, + 732.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 501.0, + 792.0, + 501.0, + 792.0, + 515.0, + 775.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 501.0, + 813.0, + 501.0, + 813.0, + 515.0, + 799.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 500.0, + 857.0, + 500.0, + 857.0, + 517.0, + 836.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 498.0, + 897.0, + 498.0, + 897.0, + 517.0, + 876.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 498.0, + 937.0, + 498.0, + 937.0, + 517.0, + 916.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 498.0, + 975.0, + 498.0, + 975.0, + 517.0, + 955.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 501.0, + 1013.0, + 501.0, + 1013.0, + 515.0, + 996.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 503.0, + 1034.0, + 503.0, + 1034.0, + 512.0, + 1023.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 501.0, + 1078.0, + 501.0, + 1078.0, + 515.0, + 1060.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 498.0, + 1119.0, + 498.0, + 1119.0, + 517.0, + 1099.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 498.0, + 1158.0, + 498.0, + 1158.0, + 517.0, + 1137.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 500.0, + 1198.0, + 500.0, + 1198.0, + 517.0, + 1177.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 500.0, + 1237.0, + 500.0, + 1237.0, + 517.0, + 1217.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 512.0, + 850.0, + 512.0, + 850.0, + 537.0, + 768.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 353.0, + 1019.0, + 353.0, + 1019.0, + 379.5, + 795.0, + 379.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 449.0, + 629.0, + 449.0, + 629.0, + 459.0, + 589.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 357.0, + 1237.0, + 357.0, + 1237.0, + 382.5, + 1015.0, + 382.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 758.0, + 293.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 750.0, + 1071.0, + 750.0, + 1071.0, + 787.0, + 295.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 558.0, + 1401.0, + 558.0, + 1401.0, + 594.0, + 295.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 589.0, + 1176.0, + 589.0, + 1176.0, + 629.0, + 294.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1714.0, + 296.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1714.0, + 1405.0, + 1714.0, + 1405.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1744.0, + 1406.0, + 1744.0, + 1406.0, + 1776.0, + 296.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1800.0, + 1406.0, + 1800.0, + 1406.0, + 1841.0, + 293.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1836.0, + 895.0, + 1836.0, + 895.0, + 1868.0, + 296.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1484.0, + 1404.0, + 1484.0, + 1404.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1515.0, + 1405.0, + 1515.0, + 1405.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1544.0, + 1405.0, + 1544.0, + 1405.0, + 1577.0, + 293.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1406.0, + 1572.0, + 1406.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1635.0, + 773.0, + 1635.0, + 773.0, + 1668.0, + 296.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 298.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 296.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2005.0, + 716.0, + 2005.0, + 716.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1284.0, + 1403.0, + 1284.0, + 1403.0, + 1317.0, + 295.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1314.0, + 1408.0, + 1314.0, + 1408.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 1405.0, + 1342.0, + 1405.0, + 1380.0, + 293.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1373.0, + 1408.0, + 1373.0, + 1408.0, + 1410.0, + 295.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 876.0, + 1202.0, + 876.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1202.0, + 1404.0, + 1202.0, + 1404.0, + 1239.0, + 932.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1236.0, + 1320.0, + 1236.0, + 1320.0, + 1271.0, + 295.0, + 1271.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1066, + 1404, + 1066, + 1404, + 1492, + 298, + 1492 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 441, + 311, + 1250, + 311, + 1250, + 612, + 441, + 612 + ], + "score": 0.982, + "html": "
SystemLibriTTSweb-long
UDR (%)WDR (%)UDR (%)WDR (%)
Tacotron 2
w/LSA16.960.446.044.4
w/ GMMA3.8120.16.1571.3
Non-Attentive Tacotron
Supervised0.0050.10.0111.1
Semi-supervised0.2660.90.6953.5
Unsupervised0.2230.70.5273.2
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1788, + 1403, + 1788, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 758, + 1405, + 758, + 1405, + 942, + 298, + 942 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1509, + 1403, + 1509, + 1403, + 1633, + 300, + 1633 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 958, + 1403, + 958, + 1403, + 1051, + 300, + 1051 + ], + "score": 0.97 + }, + { + "category_id": 6, + "poly": [ + 298, + 223, + 1400, + 223, + 1400, + 287, + 298, + 287 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 299, + 692, + 525, + 692, + 525, + 722, + 299, + 722 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 301, + 1704, + 560, + 1704, + 560, + 1739, + 301, + 1739 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.796 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 1404.0, + 222.0, + 1404.0, + 259.0, + 293.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 255.0, + 1202.0, + 255.0, + 1202.0, + 288.0, + 294.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 688.0, + 529.0, + 688.0, + 529.0, + 728.0, + 293.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1698.0, + 566.0, + 1698.0, + 566.0, + 1749.0, + 291.0, + 1749.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, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1099.0, + 295.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1134.0, + 296.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1126.0, + 1405.0, + 1126.0, + 1405.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1159.0, + 1404.0, + 1159.0, + 1404.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 1406.0, + 1189.0, + 1406.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 1408.0, + 1216.0, + 1408.0, + 1256.0, + 293.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1249.0, + 1406.0, + 1249.0, + 1406.0, + 1284.0, + 293.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1280.0, + 1406.0, + 1280.0, + 1406.0, + 1314.0, + 293.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1338.0, + 1405.0, + 1338.0, + 1405.0, + 1379.0, + 292.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1371.0, + 1404.0, + 1371.0, + 1404.0, + 1407.0, + 293.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1402.0, + 1405.0, + 1402.0, + 1405.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1431.0, + 1405.0, + 1431.0, + 1405.0, + 1467.0, + 292.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 1263.0, + 1460.0, + 1263.0, + 1499.0, + 293.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1885.0, + 296.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1366.0, + 2002.0, + 1366.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 796.0, + 293.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 792.0, + 1407.0, + 792.0, + 1407.0, + 823.0, + 296.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 820.0, + 1407.0, + 820.0, + 1407.0, + 855.0, + 295.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 849.0, + 1406.0, + 849.0, + 1406.0, + 888.0, + 292.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 1407.0, + 882.0, + 1407.0, + 917.0, + 295.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 912.0, + 1060.0, + 912.0, + 1060.0, + 944.0, + 296.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1547.0, + 293.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1569.0, + 1404.0, + 1569.0, + 1404.0, + 1606.0, + 293.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1600.0, + 798.0, + 1600.0, + 798.0, + 1638.0, + 294.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 956.0, + 1404.0, + 956.0, + 1404.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1025.0, + 293.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1020.0, + 1011.0, + 1020.0, + 1011.0, + 1054.0, + 296.0, + 1054.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.829 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.816 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 489, + 228, + 489, + 261, + 300, + 261 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 303, + 280, + 1400, + 280, + 1400, + 374, + 303, + 374 + ], + "score": 0.7 + }, + { + "category_id": 1, + "poly": [ + 289, + 1653, + 1405, + 1653, + 1405, + 1720, + 289, + 1720 + ], + "score": 0.643 + }, + { + "category_id": 1, + "poly": [ + 295, + 880, + 1403, + 880, + 1403, + 946, + 295, + 946 + ], + "score": 0.64 + }, + { + "category_id": 1, + "poly": [ + 299, + 795, + 1401, + 795, + 1401, + 862, + 299, + 862 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 296, + 1568, + 1404, + 1568, + 1404, + 1634, + 296, + 1634 + ], + "score": 0.612 + }, + { + "category_id": 1, + "poly": [ + 298, + 681, + 1402, + 681, + 1402, + 776, + 298, + 776 + ], + "score": 0.611 + }, + { + "category_id": 1, + "poly": [ + 297, + 1368, + 1402, + 1368, + 1402, + 1463, + 297, + 1463 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 296, + 1484, + 1403, + 1484, + 1403, + 1547, + 296, + 1547 + ], + "score": 0.592 + }, + { + "category_id": 1, + "poly": [ + 290, + 1740, + 1401, + 1740, + 1401, + 1805, + 290, + 1805 + ], + "score": 0.578 + }, + { + "category_id": 1, + "poly": [ + 293, + 395, + 1401, + 395, + 1401, + 459, + 293, + 459 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 296, + 594, + 1400, + 594, + 1400, + 660, + 296, + 660 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 298, + 1282, + 1403, + 1282, + 1403, + 1348, + 298, + 1348 + ], + "score": 0.571 + }, + { + "category_id": 1, + "poly": [ + 298, + 480, + 1401, + 480, + 1401, + 574, + 298, + 574 + ], + "score": 0.544 + }, + { + "category_id": 1, + "poly": [ + 290, + 1113, + 1403, + 1113, + 1403, + 1177, + 290, + 1177 + ], + "score": 0.543 + }, + { + "category_id": 1, + "poly": [ + 301, + 1825, + 1402, + 1825, + 1402, + 1920, + 301, + 1920 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 293, + 1197, + 1403, + 1197, + 1403, + 1261, + 293, + 1261 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 298, + 965, + 1405, + 965, + 1405, + 1091, + 298, + 1091 + ], + "score": 0.444 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1405, + 1942, + 1405, + 2034, + 300, + 2034 + ], + "score": 0.393 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 489, + 228, + 489, + 261, + 300, + 261 + ], + "score": 0.123 + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 276.0, + 1404.0, + 276.0, + 1404.0, + 319.0, + 295.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 311.0, + 1404.0, + 311.0, + 1404.0, + 345.0, + 324.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 339.0, + 1368.0, + 339.0, + 1368.0, + 380.0, + 323.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1647.0, + 1406.0, + 1647.0, + 1406.0, + 1694.0, + 292.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1685.0, + 944.0, + 1685.0, + 944.0, + 1720.0, + 321.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 881.0, + 1408.0, + 881.0, + 1408.0, + 917.0, + 295.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 913.0, + 1367.0, + 913.0, + 1367.0, + 949.0, + 323.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 789.0, + 1406.0, + 789.0, + 1406.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 827.0, + 1316.0, + 827.0, + 1316.0, + 864.0, + 325.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1566.0, + 1404.0, + 1566.0, + 1404.0, + 1606.0, + 294.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1600.0, + 1087.0, + 1600.0, + 1087.0, + 1635.0, + 321.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 682.0, + 1404.0, + 682.0, + 1404.0, + 716.0, + 294.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 713.0, + 1404.0, + 713.0, + 1404.0, + 747.0, + 325.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 744.0, + 948.0, + 744.0, + 948.0, + 778.0, + 325.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 1403.0, + 1368.0, + 1403.0, + 1406.0, + 296.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1401.0, + 1404.0, + 1401.0, + 1404.0, + 1435.0, + 324.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1431.0, + 1015.0, + 1431.0, + 1015.0, + 1464.0, + 322.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1481.0, + 484.0, + 1481.0, + 484.0, + 1520.0, + 295.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1480.0, + 1406.0, + 1480.0, + 1406.0, + 1522.0, + 490.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1513.0, + 598.0, + 1513.0, + 598.0, + 1549.0, + 321.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1738.0, + 1404.0, + 1738.0, + 1404.0, + 1780.0, + 292.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1772.0, + 1240.0, + 1772.0, + 1240.0, + 1805.0, + 325.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 391.0, + 1404.0, + 391.0, + 1404.0, + 433.0, + 293.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 426.0, + 936.0, + 426.0, + 936.0, + 459.0, + 321.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 593.0, + 1405.0, + 593.0, + 1405.0, + 632.0, + 296.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 626.0, + 1236.0, + 626.0, + 1236.0, + 662.0, + 322.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1285.0, + 1403.0, + 1285.0, + 1403.0, + 1318.0, + 296.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1316.0, + 1093.0, + 1316.0, + 1093.0, + 1349.0, + 323.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 481.0, + 1405.0, + 481.0, + 1405.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 510.0, + 1405.0, + 510.0, + 1405.0, + 546.0, + 322.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 543.0, + 591.0, + 543.0, + 591.0, + 573.0, + 323.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1112.0, + 1408.0, + 1112.0, + 1408.0, + 1150.0, + 293.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1144.0, + 1135.0, + 1144.0, + 1135.0, + 1178.0, + 322.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1823.0, + 1406.0, + 1823.0, + 1406.0, + 1864.0, + 295.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1855.0, + 1406.0, + 1855.0, + 1406.0, + 1893.0, + 321.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1888.0, + 1222.0, + 1888.0, + 1222.0, + 1922.0, + 324.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1235.0, + 295.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1229.0, + 608.0, + 1229.0, + 608.0, + 1260.0, + 321.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 1408.0, + 966.0, + 1408.0, + 1004.0, + 295.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1000.0, + 1405.0, + 1000.0, + 1405.0, + 1033.0, + 323.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1027.0, + 1410.0, + 1027.0, + 1410.0, + 1066.0, + 321.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1060.0, + 717.0, + 1060.0, + 717.0, + 1094.0, + 320.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2006.0, + 324.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2004.0, + 663.0, + 2004.0, + 663.0, + 2035.0, + 321.0, + 2035.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": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 299, + 1333, + 1404, + 1333, + 1404, + 1427, + 299, + 1427 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 291, + 1555, + 1403, + 1555, + 1403, + 1619, + 291, + 1619 + ], + "score": 0.65 + }, + { + "category_id": 1, + "poly": [ + 295, + 1636, + 1401, + 1636, + 1401, + 1700, + 295, + 1700 + ], + "score": 0.642 + }, + { + "category_id": 1, + "poly": [ + 296, + 866, + 1401, + 866, + 1401, + 932, + 296, + 932 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 301, + 1444, + 1402, + 1444, + 1402, + 1538, + 301, + 1538 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 293, + 1717, + 1402, + 1717, + 1402, + 1782, + 293, + 1782 + ], + "score": 0.625 + }, + { + "category_id": 1, + "poly": [ + 300, + 948, + 1402, + 948, + 1402, + 1042, + 300, + 1042 + ], + "score": 0.611 + }, + { + "category_id": 1, + "poly": [ + 300, + 786, + 1399, + 786, + 1399, + 851, + 300, + 851 + ], + "score": 0.609 + }, + { + "category_id": 1, + "poly": [ + 295, + 1059, + 1403, + 1059, + 1403, + 1123, + 295, + 1123 + ], + "score": 0.604 + }, + { + "category_id": 1, + "poly": [ + 295, + 1251, + 1402, + 1251, + 1402, + 1315, + 295, + 1315 + ], + "score": 0.594 + }, + { + "category_id": 1, + "poly": [ + 306, + 401, + 1400, + 401, + 1400, + 495, + 306, + 495 + ], + "score": 0.585 + }, + { + "category_id": 1, + "poly": [ + 297, + 230, + 1407, + 230, + 1407, + 381, + 297, + 381 + ], + "score": 0.583 + }, + { + "category_id": 1, + "poly": [ + 299, + 1139, + 1401, + 1139, + 1401, + 1235, + 299, + 1235 + ], + "score": 0.582 + }, + { + "category_id": 1, + "poly": [ + 300, + 513, + 1398, + 513, + 1398, + 607, + 300, + 607 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 302, + 675, + 1399, + 675, + 1399, + 769, + 302, + 769 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 296, + 624, + 1354, + 624, + 1354, + 658, + 296, + 658 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 300, + 1943, + 1404, + 1943, + 1404, + 2034, + 300, + 2034 + ], + "score": 0.348 + }, + { + "category_id": 1, + "poly": [ + 298, + 1800, + 1405, + 1800, + 1405, + 1922, + 298, + 1922 + ], + "score": 0.305 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 853, + 75, + 853, + 104, + 299, + 104 + ], + "score": 0.128 + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1333.0, + 1408.0, + 1333.0, + 1408.0, + 1370.0, + 295.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1363.0, + 1406.0, + 1363.0, + 1406.0, + 1399.0, + 322.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1393.0, + 443.0, + 1393.0, + 443.0, + 1436.0, + 319.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1555.0, + 1405.0, + 1555.0, + 1405.0, + 1591.0, + 294.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1587.0, + 844.0, + 1587.0, + 844.0, + 1620.0, + 322.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1639.0, + 1405.0, + 1639.0, + 1405.0, + 1671.0, + 298.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1667.0, + 1117.0, + 1667.0, + 1117.0, + 1703.0, + 323.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 867.0, + 1403.0, + 867.0, + 1403.0, + 903.0, + 295.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 896.0, + 1131.0, + 896.0, + 1131.0, + 933.0, + 324.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1442.0, + 1404.0, + 1442.0, + 1404.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1475.0, + 1404.0, + 1475.0, + 1404.0, + 1512.0, + 322.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1507.0, + 671.0, + 1507.0, + 671.0, + 1541.0, + 324.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1748.0, + 1250.0, + 1748.0, + 1250.0, + 1783.0, + 322.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 1404.0, + 948.0, + 1404.0, + 985.0, + 295.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 978.0, + 1404.0, + 978.0, + 1404.0, + 1016.0, + 323.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1010.0, + 609.0, + 1010.0, + 609.0, + 1043.0, + 321.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 786.0, + 1403.0, + 786.0, + 1403.0, + 822.0, + 299.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 817.0, + 893.0, + 817.0, + 893.0, + 852.0, + 321.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1060.0, + 1405.0, + 1060.0, + 1405.0, + 1096.0, + 295.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1090.0, + 1086.0, + 1090.0, + 1086.0, + 1124.0, + 320.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1252.0, + 1405.0, + 1252.0, + 1405.0, + 1288.0, + 298.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1283.0, + 1306.0, + 1283.0, + 1306.0, + 1319.0, + 324.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 401.0, + 1404.0, + 401.0, + 1404.0, + 438.0, + 300.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 431.0, + 1405.0, + 431.0, + 1405.0, + 470.0, + 321.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 463.0, + 1033.0, + 463.0, + 1033.0, + 500.0, + 321.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 260.0, + 1407.0, + 260.0, + 1407.0, + 298.0, + 321.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 292.0, + 1408.0, + 292.0, + 1408.0, + 325.0, + 323.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 320.0, + 1407.0, + 320.0, + 1407.0, + 356.0, + 320.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 350.0, + 394.0, + 350.0, + 394.0, + 387.0, + 320.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1137.0, + 1407.0, + 1137.0, + 1407.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1207.0, + 323.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1203.0, + 919.0, + 1203.0, + 919.0, + 1237.0, + 323.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 510.0, + 1403.0, + 510.0, + 1403.0, + 550.0, + 294.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 544.0, + 1403.0, + 544.0, + 1403.0, + 578.0, + 322.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 573.0, + 864.0, + 573.0, + 864.0, + 611.0, + 321.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 676.0, + 1404.0, + 676.0, + 1404.0, + 710.0, + 297.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 706.0, + 1404.0, + 706.0, + 1404.0, + 739.0, + 322.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 737.0, + 1136.0, + 737.0, + 1136.0, + 771.0, + 323.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 623.0, + 1357.0, + 623.0, + 1357.0, + 662.0, + 295.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1408.0, + 1941.0, + 1408.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2006.0, + 323.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1034.0, + 2003.0, + 1034.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1797.0, + 1405.0, + 1797.0, + 1405.0, + 1837.0, + 292.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1829.0, + 1405.0, + 1829.0, + 1405.0, + 1867.0, + 321.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1860.0, + 1410.0, + 1860.0, + 1410.0, + 1899.0, + 321.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1891.0, + 775.0, + 1891.0, + 775.0, + 1927.0, + 321.0, + 1927.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 296, + 1294, + 1399, + 1294, + 1399, + 1360, + 296, + 1360 + ], + "score": 0.71 + }, + { + "category_id": 1, + "poly": [ + 296, + 1210, + 1401, + 1210, + 1401, + 1276, + 296, + 1276 + ], + "score": 0.688 + }, + { + "category_id": 1, + "poly": [ + 300, + 1461, + 1401, + 1461, + 1401, + 1553, + 300, + 1553 + ], + "score": 0.675 + }, + { + "category_id": 1, + "poly": [ + 297, + 1378, + 1400, + 1378, + 1400, + 1442, + 297, + 1442 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 295, + 1014, + 1404, + 1014, + 1404, + 1079, + 295, + 1079 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 296, + 1097, + 1405, + 1097, + 1405, + 1192, + 296, + 1192 + ], + "score": 0.614 + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1405, + 229, + 1405, + 294, + 292, + 294 + ], + "score": 0.591 + }, + { + "category_id": 1, + "poly": [ + 300, + 931, + 1403, + 931, + 1403, + 995, + 300, + 995 + ], + "score": 0.589 + }, + { + "category_id": 1, + "poly": [ + 300, + 311, + 1402, + 311, + 1402, + 405, + 300, + 405 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 294, + 735, + 1400, + 735, + 1400, + 800, + 294, + 800 + ], + "score": 0.563 + }, + { + "category_id": 1, + "poly": [ + 299, + 818, + 1402, + 818, + 1402, + 912, + 299, + 912 + ], + "score": 0.557 + }, + { + "category_id": 1, + "poly": [ + 295, + 508, + 1403, + 508, + 1403, + 572, + 295, + 572 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 294, + 426, + 1403, + 426, + 1403, + 490, + 294, + 490 + ], + "score": 0.501 + }, + { + "category_id": 1, + "poly": [ + 296, + 591, + 1406, + 591, + 1406, + 715, + 296, + 715 + ], + "score": 0.405 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 1295.0, + 1404.0, + 1295.0, + 1404.0, + 1332.0, + 295.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1327.0, + 1222.0, + 1327.0, + 1222.0, + 1359.0, + 321.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1247.0, + 295.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1243.0, + 1356.0, + 1243.0, + 1356.0, + 1277.0, + 323.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1460.0, + 1406.0, + 1460.0, + 1406.0, + 1497.0, + 296.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1493.0, + 1407.0, + 1493.0, + 1407.0, + 1526.0, + 321.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1519.0, + 399.0, + 1519.0, + 399.0, + 1556.0, + 319.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1377.0, + 1402.0, + 1377.0, + 1402.0, + 1413.0, + 296.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1407.0, + 1196.0, + 1407.0, + 1196.0, + 1443.0, + 323.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1010.0, + 1404.0, + 1010.0, + 1404.0, + 1056.0, + 293.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1045.0, + 980.0, + 1045.0, + 980.0, + 1081.0, + 322.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 1405.0, + 1097.0, + 1405.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1124.0, + 1408.0, + 1124.0, + 1408.0, + 1168.0, + 320.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1160.0, + 529.0, + 1160.0, + 529.0, + 1191.0, + 323.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 260.0, + 1383.0, + 260.0, + 1383.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 927.0, + 1408.0, + 927.0, + 1408.0, + 971.0, + 293.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 962.0, + 613.0, + 962.0, + 613.0, + 995.0, + 321.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 311.0, + 1403.0, + 311.0, + 1403.0, + 348.0, + 296.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 341.0, + 1406.0, + 341.0, + 1406.0, + 380.0, + 321.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 374.0, + 463.0, + 374.0, + 463.0, + 405.0, + 324.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 775.0, + 294.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 765.0, + 1005.0, + 765.0, + 1005.0, + 801.0, + 323.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 1406.0, + 816.0, + 1406.0, + 857.0, + 294.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 850.0, + 1406.0, + 850.0, + 1406.0, + 884.0, + 323.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 880.0, + 863.0, + 880.0, + 863.0, + 913.0, + 323.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 511.0, + 1404.0, + 511.0, + 1404.0, + 543.0, + 298.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 540.0, + 1194.0, + 540.0, + 1194.0, + 572.0, + 323.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 425.0, + 1405.0, + 425.0, + 1405.0, + 462.0, + 294.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 457.0, + 1406.0, + 457.0, + 1406.0, + 493.0, + 323.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 589.0, + 1406.0, + 589.0, + 1406.0, + 631.0, + 295.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 623.0, + 1407.0, + 623.0, + 1407.0, + 659.0, + 322.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 651.0, + 1409.0, + 651.0, + 1409.0, + 689.0, + 318.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 685.0, + 464.0, + 685.0, + 464.0, + 715.0, + 322.0, + 715.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 300, + 341, + 1404, + 341, + 1404, + 1982, + 300, + 1982 + ], + "score": 0.976, + "html": "
CommonTraining modeSynchronous 32
Batch size (per replica) Replicas Parameter init L² regularization Learning rate Learning rate scheduleXavier 1 ×10-6 0.001
Inputs and TargetsOptimizer LSTM zone-out prob LSTM cell abs value cap Sampling rate (Hz) Normalize waveform Pre-emphasis Frame size (ms) Frame hop (ms)decay half every 50K steps. Adam(0.9,0.999,1 × 10-6) 0.1 10.0 24,000 No No 50
EncoderMel channels K Mel frequency lower bound (Hz) Mel frequency upper bound (Hz)128 20 12,000
FVAE
Yes
512×2
5×1
512 64
Mel spectrogram dynamic range compressionlog(x +0.001)
Token embedding dim
Speaker embedding dim
Conv kernel
Conv dim[512, 512, 512]
Conv activation[None,None,None]
Conv batch norm decay0.999
Bi-LSTM dim
Segment encoder conv kernel3×1
Segment encoder conv dim[512,512,512]
Segment encoder Bi-LSTM dim256×2
Layer norm attention inputs
Latent dim8 projected to 16
Duration PredictorBi-LSTM dim512×2
Projection activationNone
Xdur supervised2.0
Xdur semi-supervised100.0
100.0
Au semi-supervised1×10-3
XKL semi-supervised
Xu unsupervised1.0
Range Parameter Predictor入KL unsupervised1 ×10-4
Bi-LSTM dim512×2
Positional EmbeddingProjection activationSoftPlus
Embedding dim32
Timestep denominator10.000
Decoder[256,256]
Pre-net dim supervised
Pre-net dim semi/unsupervised[128,128]
Pre-net activation[ReLU,ReLU]
[0.5,0.5]
Pre-net dropout prob
LSTM dim^1,024
LSTM inituniform(0.1)
Projection inituniform(0.1)
Post-net conv kernel5×1
Post-net conv dim
[512,512,512,512,128]
Post-net conv activation
[tanh,tanh,tanh,tanh,None]
Post-net conv init
" + }, + { + "category_id": 6, + "poly": [ + 694, + 303, + 1003, + 303, + 1003, + 334, + 694, + 334 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 670, + 228, + 670, + 261, + 300, + 261 + ], + "score": 0.584 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.302 + }, + { + "category_id": 6, + "poly": [ + 300, + 228, + 670, + 228, + 670, + 261, + 300, + 261 + ], + "score": 0.094 + }, + { + "category_id": 13, + "poly": [ + 609, + 1506, + 637, + 1506, + 637, + 1530, + 609, + 1530 + ], + "score": 0.87, + "latex": "\\lambda _ { \\mathrm { u } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1447, + 637, + 1447, + 637, + 1473, + 609, + 1473 + ], + "score": 0.86, + "latex": "\\lambda _ { \\mathrm { u } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1392, + 651, + 1392, + 651, + 1418, + 609, + 1418 + ], + "score": 0.86, + "latex": "\\lambda _ { \\mathrm { d u r } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1420, + 652, + 1420, + 652, + 1445, + 609, + 1445 + ], + "score": 0.85, + "latex": "\\lambda _ { \\mathrm { d u r } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1477, + 651, + 1477, + 651, + 1503, + 609, + 1503 + ], + "score": 0.84, + "latex": "\\lambda _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1534, + 651, + 1534, + 651, + 1560, + 609, + 1560 + ], + "score": 0.83, + "latex": "\\lambda _ { \\mathrm { K L } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 472, + 641, + 472, + 641, + 500, + 609, + 500 + ], + "score": 0.81, + "latex": "L ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 749, + 866, + 776, + 866, + 776, + 890, + 749, + 890 + ], + "score": 0.53, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1197, + 1146, + 1197, + 1146, + 1224, + 1084, + 1224 + ], + "score": 0.48, + "latex": "3 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 1093, + 585, + 1377, + 585, + 1377, + 617, + 1093, + 617 + ], + "score": 0.47, + "latex": "\\mathsf { A d a m } ( 0 . 9 , 0 . 9 9 9 , 1 \\times \\bar { 1 0 } ^ { - 6 } )" + }, + { + "category_id": 13, + "poly": [ + 755, + 672, + 803, + 672, + 803, + 699, + 755, + 699 + ], + "score": 0.47, + "latex": "\\overline { { ( \\mathrm { { H } } z ) } }" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1044, + 1146, + 1044, + 1146, + 1072, + 1084, + 1072 + ], + "score": 0.37, + "latex": "5 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 895, + 921, + 942, + 921, + 942, + 947, + 895, + 947 + ], + "score": 0.27, + "latex": "\\left( \\mathrm { H z } \\right)" + }, + { + "category_id": 13, + "poly": [ + 895, + 894, + 939, + 894, + 939, + 920, + 895, + 920 + ], + "score": 0.26, + "latex": "\\left( \\mathrm { H z } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1336, + 1172, + 1336, + 1172, + 1363, + 1084, + 1363 + ], + "score": 0.25, + "latex": "5 1 2 \\times 2" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 299.0, + 1006.0, + 299.0, + 1006.0, + 338.0, + 692.0, + 338.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": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 673.0, + 223.0, + 673.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 673.0, + 223.0, + 673.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 416, + 362, + 1275, + 362, + 1275, + 665, + 416, + 665 + ], + "score": 0.971, + "html": "
SystemLibriTTSweb-long
WERdelinssubWERdelinssub
Tacotron 2
w/LSA1.80.40.31.113.04.42.06.7
w/ GMMA1.70.10.11.510.11.31.37.4
Non-Attentive Tacotron
Supervised1.40.10.11.29.31.11.36.9
Semi-supervised3.30.90.22.214.13.51.69.0
Unsupervised3.50.70.32.615.33.22.010.1
" + }, + { + "category_id": 0, + "poly": [ + 297, + 721, + 931, + 721, + 931, + 759, + 297, + 759 + ], + "score": 0.935 + }, + { + "category_id": 6, + "poly": [ + 298, + 801, + 1399, + 801, + 1399, + 864, + 298, + 864 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 296, + 305, + 1398, + 305, + 1398, + 340, + 296, + 340 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 297, + 229, + 1135, + 229, + 1135, + 262, + 297, + 262 + ], + "score": 0.774 + }, + { + "category_id": 5, + "poly": [ + 299, + 890, + 1395, + 890, + 1395, + 1340, + 299, + 1340 + ], + "score": 0.635, + "html": "
ModelYearARFFRNNTransformerFull ConvAttentionDuration
Deep Voice2017
Char2Wav2017
Tacotron2017
Deep Voice 22017
Tacotron 22018
Deep Voice 32018
Transformer TTS2019
CHiVE2019
DurIAN2019
Fastspeech2019
TalkNet2020
AlignTTS2020
JDI-T2020
Non-Attentive Tacotron2020
" + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.471 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.466 + }, + { + "category_id": 3, + "poly": [ + 299, + 890, + 1395, + 890, + 1395, + 1340, + 299, + 1340 + ], + "score": 0.455 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 717.0, + 933.0, + 717.0, + 933.0, + 764.0, + 295.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 799.0, + 1403.0, + 799.0, + 1403.0, + 838.0, + 294.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 833.0, + 1004.0, + 833.0, + 1004.0, + 864.0, + 296.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 303.0, + 1399.0, + 303.0, + 1399.0, + 338.0, + 300.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 224.0, + 1139.0, + 224.0, + 1139.0, + 272.0, + 291.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 895.0, + 395.0, + 895.0, + 395.0, + 933.0, + 310.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 898.0, + 625.0, + 898.0, + 625.0, + 933.0, + 564.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 898.0, + 699.0, + 898.0, + 699.0, + 933.0, + 645.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 899.0, + 759.0, + 899.0, + 759.0, + 931.0, + 711.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 898.0, + 843.0, + 898.0, + 843.0, + 931.0, + 773.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 899.0, + 1137.0, + 899.0, + 1137.0, + 931.0, + 861.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 896.0, + 1260.0, + 896.0, + 1260.0, + 932.0, + 1144.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 897.0, + 1381.0, + 897.0, + 1381.0, + 934.0, + 1275.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 937.0, + 446.0, + 937.0, + 446.0, + 976.0, + 310.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 936.0, + 629.0, + 936.0, + 629.0, + 974.0, + 562.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 964.0, + 435.0, + 964.0, + 435.0, + 1004.0, + 311.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 966.0, + 630.0, + 966.0, + 630.0, + 1001.0, + 563.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 992.0, + 419.0, + 992.0, + 419.0, + 1031.0, + 311.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 993.0, + 630.0, + 993.0, + 630.0, + 1028.0, + 563.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1021.0, + 462.0, + 1021.0, + 462.0, + 1057.0, + 310.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1022.0, + 630.0, + 1022.0, + 630.0, + 1056.0, + 562.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1049.0, + 437.0, + 1049.0, + 437.0, + 1086.0, + 313.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1047.0, + 631.0, + 1047.0, + 631.0, + 1086.0, + 562.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1076.0, + 463.0, + 1076.0, + 463.0, + 1115.0, + 310.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1075.0, + 631.0, + 1075.0, + 631.0, + 1114.0, + 563.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1104.0, + 501.0, + 1104.0, + 501.0, + 1140.0, + 313.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1103.0, + 631.0, + 1103.0, + 631.0, + 1141.0, + 562.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1133.0, + 405.0, + 1133.0, + 405.0, + 1167.0, + 313.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1132.0, + 630.0, + 1132.0, + 630.0, + 1167.0, + 562.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1161.0, + 411.0, + 1161.0, + 411.0, + 1194.0, + 310.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1160.0, + 630.0, + 1160.0, + 630.0, + 1195.0, + 563.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1187.0, + 437.0, + 1187.0, + 437.0, + 1223.0, + 313.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1187.0, + 629.0, + 1187.0, + 629.0, + 1222.0, + 563.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1213.0, + 411.0, + 1213.0, + 411.0, + 1253.0, + 311.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1216.0, + 630.0, + 1216.0, + 630.0, + 1250.0, + 563.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1244.0, + 429.0, + 1244.0, + 429.0, + 1278.0, + 311.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1243.0, + 630.0, + 1243.0, + 630.0, + 1277.0, + 563.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1270.0, + 391.0, + 1270.0, + 391.0, + 1307.0, + 310.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1271.0, + 630.0, + 1271.0, + 630.0, + 1305.0, + 563.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1299.0, + 630.0, + 1299.0, + 630.0, + 1334.0, + 311.0, + 1334.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/JG-SlCAx5_K/JG-SlCAx5_K.md b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K.md new file mode 100644 index 0000000000000000000000000000000000000000..30b610693f63594e8c7a0c85dd54ee62d657d7aa --- /dev/null +++ b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K.md @@ -0,0 +1,305 @@ +# Geometry Processing with Neural Fields + +Guandao Yang ∗ Cornell University + +Serge Belongie University of Copenhagen + +Bharath Hariharan Cornell University + +Vladlen Koltun Intel Labs + +# Abstract + +Most existing geometry processing algorithms use meshes as the default shape representation. Manipulating meshes, however, requires one to maintain high quality in the surface discretization. For example, changing the topology of a mesh usually requires additional procedures such as remeshing. This paper instead proposes the use of neural fields for geometry processing. Neural fields can compactly store complicated shapes without spatial discretization. Moreover, neural fields are infinitely differentiable, which allows them to be optimized for objectives that involve higher-order derivatives. This raises the question: can geometry processing be done entirely using neural fields? We introduce loss functions and architectures to show that some of the most challenging geometry processing tasks, such as deformation and filtering, can be done with neural fields. Experimental results show that our methods are on par with the well-established mesh-based methods without committing to a particular surface discretization. Code is available at https://github.com/stevenygd/NFGP. + +# 1 Introduction + +In many graphics applications, users may want to edit digital shapes using just a few clicks, such as making a character bow by dragging the head downwards. Such manipulation from sparse input requires geometry processing algorithms. Most of these algorithms use polygonal meshes to represent shapes [11]. Polygonal meshes were created initially for researchers as a representation of real-world shapes that they can both interpret and manipulate [14, 52, 78]. However, developing algorithms that automatically manipulate meshes is often difficult since they involve discretizing the surface. For example, changing the topology of a mesh, such as turning a sphere into a torus, will break such discretization and require additional repair procedures such as remeshing [2, 3]. Given that shape editing is increasingly performed by algorithms, it seems worthwhile to search for a shape representation that is more amenable to automatic geometry processing. + +An alternative to the polygonal mesh is an implicit representation, in which the surface is represented by a level set of a field: $\bar { \{ x \vert f ( x ) = c \} }$ [22, 39, 63]. Since it is easy to change shape topology using implicit representations, people have applied them for geometry processing tasks such as shape merging [8, 51, 54]. These works store implicit fields using voxels or octrees, which introduce memory-intensive spatial discretization. Recent research addresses this by using continuous neural networks to represent implicit fields [19, 45, 46, 56]. These neural fields possess several advantages in addition to the merits inherited from implicit representation: they are compact to store [23, 45] and can produce high-quality continuous surfaces at arbitrary resolutions [45, 56]. The community has achieved compelling results using neural fields in a variety of applications [47, 64, 73, 84]. Notwithstanding these results, it is still unclear whether shape editing tasks challenging for implicit fields (e.g., deformation and filtering) can be performed with neural fields. In this paper, we ask: can geometry processing be done entirely using neural fields? + +Geometry processing tasks are challenging because they are typically under-constrained: user input is very sparse. Therefore, we need to leverage priors that characterize how a natural surface behaves. Such surface priors are usually instantiated by minimizing energy functionals that describe the physical properties of surfaces using operators from differential geometry. For example, one can encourage surfaces to be smooth by minimizing the curvature, which can be measured by the LaplaceBeltrami operator. Such operators, however, require a parameterization of the surface, which is not available for level sets of a neural field. Mesh algorithms usually approximate these geometric operators using the geodesic neighbors of the surface point. This allows the algorithms to focus on intrinsic geometric properties that are independent of shape parameterization. However, it is not easy to obtain geodesic neighbors in a neural field since the surface of interest is encoded implicitly by a set of points that evaluate the field function to the same value. + +We posit that computing these geometric operators in neural fields requires a fundamentally different approach. The idea is to approximate the local surface of the level set using the derivatives of the underlying field. We can evaluate intrinsic geometry properties of the level set, such as curvature, using only the field derivatives [39, 54]. This allows us to develop loss functions that describe surface priors such as elasticity or rigidity. To achieve this, we use the fact that neural fields are designed to be infinitely differentiable [66, 74]. The infinite differentiability of neural fields makes it possible to optimize loss functions that involve higher-order derivatives using gradient descent methods. Thus, unlike mesh-based geometry processing algorithms that approximate these objectives using surface discretizations, we can directly optimize in terms of the derivatives of the field. + +Our formulation provides a proof of concept that geometry processing can be done entirely using neural fields. In particular, we focus on two tasks: shape filtering (e.g., smoothing and sharpening) and topology-preserving deformations. These two tasks are not only essential for downstream applications but also bring out the known challenges associated with implicit representations. We first tackle shape sharpening and smoothing and show how these can be done by optimizing a loss function based on geometric properties computed via the neural field’s derivatives. To achieve shape deformation, we propose to warp the neural field using a deformation vector field modeled by an invertible neural network [7]. With this invertible deformation field, we derive a training objective that models the implicitly represented surfaces as elastic shells. + +We compare our method with well-established mesh-based baselines [70, 76]. Our method can match the quality of the mesh-based counterparts without discretizing the surface. We hope that our work can inspire future generations of geometry processing algorithms using neural fields. + +# 2 Related Work + +This paper builds on two bodies of work: polygon mesh geometry processing and neural field representations. We will focus on prior work on two geometry processing tasks: shape filtering and topology-preserving deformation. Please refer to Botsch et al. [11] for further reading. + +Mesh smoothing (and sharpening). The goal of mesh smoothing is to remove high-frequency noise and produce a smooth surface. Noise removal can be achieved by Fourier analysis [76, 79] or by modeling surface motion with a diffusion equation [26]. Smoothness can be promoted by minimizing energy functionals inspired by differential operators [50, 72, 82]. Sharpening is the inverse of smoothing. In this paper, we adopt the goal of smoothing from prior work [20, 76] and design a corresponding differentiable objective for neural fields. + +Implicit field smoothing. Implicit representations can be smoothed by evolving the level set according to its curvature normal [49, 54]. Many network architectures, such as ReLU MLP, bias toward smoothness when modeling an implicit field [61, 66, 74]. Regularization objectives and initialization schemes have been proposed to obtain smooth level sets from scanned surface points [5, 31]. These works mostly use smoothness as a prior when training neural fields. Our work formulates an objective that allows smoothing or sharpening a neural field as desired. + +Mesh deformation. Mesh deformation is done by either deforming the shape (i.e. vertices) [9, 69] or the space [6, 36, 41, 48, 65]. These algorithms usually draw inspiration from physics and differential geometry to develop energy functions that encourage natural deformation [10, 15, 24, 70, 71, 77]. They also linearize such objectives so that they can be solved efficiently using linear solvers [9]. Recent research also applies deep learning to optimize for non-linear deformation losses [32, 34, 38, 80, 81, 83]. Deforming a mesh, however, requires estimating the deformation objectives with spatial discretization and maintaining vertex connectivity in a way that preserves topology [42]. We deform neural fields with a continuous invertible field to circumvent these issues. + +Implicit field deformation. Prior works have studied the deformation of implicit fields for tasks like physics simulation [39, 51, 54, 55]. These works use voxels or octrees to represent implicit fields, while our paper advocates for using neural fields for deformation. There is some past work on deforming neural fields to match a target shape [12, 18, 37, 53, 58] or image [43, 57, 60] without any correspondences between the two. In contrast, we perform such deformation with very few localized user-provided correspondences, but without any other information about the target shape. Our setting is very convenient for artists, but it requires the algorithm to provide a strong surface prior due to the lack of a densely specified target state. Other prior works on editing neural fields are trained on a dataset of shapes from a particular object category [25, 29, 30, 33, 85]. Since surface priors are specified implicitly by the dataset, it is unclear how to apply these methods to out-of-distribution shapes. In contrast, our paper requires no training dataset and instead enforces priors inspired by more general physical properties such as smoothness and elasticity. Remelli et al. [62] developed a way to differentiate iso-surface extraction, which allows deforming neural fields using objectives carried over from mesh-based algorithms. Our method avoids iso-surface extraction entirely and formulates differentiable deformation objectives directly on the implicit field. + +# 3 Computing Surface Properties of Neural Fields + +In this section, we will discuss how to compute surface properties using neural fields and establish notation for the following sections. Let $\partial \Omega$ be a surface enclosing the region $\Omega$ . A signed distance field (SDF) for surface $\partial \Omega$ is defined as $d ( \mathbf { x } ) = s ( \mathbf { x } ) \operatorname* { m i n } _ { \mathbf { y } \in \partial \Omega } \bar { \| } \mathbf { x } - \mathbf { y } \bar { \| }$ . The sign function $s ( \mathbf { x } )$ evaluates to $- 1$ if $\textbf { x } \in { \Omega }$ and 1 otherwise. We will assume that a neural field approximate an SDF whose zero-isosurface represents the surface of interest. For a neural field $f$ , we denote its zero-isosurface using $\mathcal { M } _ { f }$ . This section summarizes how to compute surface normals and curvatures from neural fields. This is well-understood and we summarize this here for convenience [39, 54, 59]. + +Surface normal. The surface normal is the vector perpendicular to the tangent plane and describes the local orientation of the surface. For an SDF, the outward oriented surface normal of its level set is the field gradient: $\mathbf { n } _ { d } ( \mathbf { x } ) = \nabla _ { \mathbf { x } } d ( \mathbf { x } )$ . It can be shown that the SDF’s gradient norm is always one: $\lVert \nabla _ { \mathbf { x } } d ( \mathbf { x } ) \rVert = 1$ . This property can be used to ensure that the field remains a valid SDF throughout any manipulation [4, 31]. The closest point in $\partial \Omega$ from $\mathbf { x }$ can be found by $\mathbf { x } - d ( \mathbf { x } ) \mathbf { n } _ { d } ( \mathbf { x } )$ . This property can be used to sample points from the isosurface without creating a mesh [5, 13]. Finally, since the tangent plane is perpendicular to the surface normal, we can project vectors onto the tangent plane by subtracting their projection onto the normal using the following projection matrix $\mathbf { x }$ : $\mathbf { P } _ { d } \mathbf { \bar { ( x ) } } \overset { \mathbf { \bar { \alpha } } } { = } \mathbf { I } - \mathbf { \bar { n _ { d } } } \mathbf { ( x ) } \mathbf { n } _ { d } \mathbf { ( x ) } \mathbf { \breve { \alpha } }$ . This projection matrix allows us to characterize the tangent plane. This matrix is important for measuring how much a given deformation stretches the tangent direction [35]. + +Curvature. Intuitively, curvature describes how much a surface deviates from a plane. This can be captured by the total derivative of the surface normal, which is also known as the shape operator: $\bar { \mathbf { \xi } } S _ { D } ( \bar { \mathbf { x } } ) = \mathcal { D } \bar { \mathbf { n } _ { d } } ( \mathbf { x } )$ . For an SDF, the normal itself is given by the derivative of the field, thus the shape operator for an SDF is the Hessian of the field function: $\dot { H _ { d } } ( \mathbf { x } ) = \mathcal { D } ^ { 2 } d ( \mathbf { x } )$ . The shape operator can be used to capture many different notions of curvature, including mean curvature (half the trace of $S _ { D } ( \mathbf { x } )$ , denoted by $\bar { \kappa }$ ), Gaussian curvature (the determinant of $S _ { D } ( { \bf x } ) _ { , }$ ), and principal curvatures (the eigenvalues of $S _ { D } ( { \bf x } ) _ { , }$ ). We will use these to define objectives that smooth or sharpen the surface. + +# 4 Shape Smoothing and Sharpening + +In this section, we will show that shape smoothing and sharpening can be done directly on neural fields without producing meshes. In our setup, the input shape is represented as the zero-isosurface $\mathcal { M } _ { F }$ of the neural field $F$ . The algorithm needs to output neural field $G _ { \theta }$ whose zero-isosurface $\mathcal { M } _ { G _ { \theta } }$ satisfies two goals. First, $\mathcal { M } _ { G _ { \theta } }$ should preserve the global structure of $\mathcal { M } _ { F }$ . Second, the surface $\mathcal { M } _ { G _ { \theta } }$ should make desired changes to match the curvature of shape $\mathcal { M } _ { F }$ . + +![](images/a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg) +Figure 2: Smoothing and sharpening results. (A) zoomed-in input; (B) our method; (C) baseline without remeshing; (D) baseline with remeshing. We can see that the baseline without remeshing finds it difficult to smooth or sharpen the mesh extracted from neural fields. Our method is able to achieve good results without discretizing the surface. + +To achieve these goals, we first instantiate $G _ { \theta }$ using the same architecture and parameter values as $F$ Then we optimize $G _ { \theta }$ using the following objective: + +$$ +\mathcal { L } ( \theta ) = \int _ { \mathbf { x } \in U } \left| G _ { \theta } ( \mathbf { x } ) - F ( \mathbf { x } ) \right| ^ { 2 } + \lambda _ { g } \left( \left\| \nabla _ { \mathbf { x } } G _ { \theta } ( \mathbf { x } ) \right\| - 1 \right) ^ { 2 } d \mathbf { x } + \int _ { \mathbf { x } \in V _ { \tau } } \lambda _ { k } \left( \kappa _ { G _ { \theta } } ( \mathbf { x } ) - \beta \kappa _ { F } ( \mathbf { x } ) \right) ^ { 2 } d \mathbf { x } . +$$ + +The first integral encourages the network $G _ { \theta }$ to preserve the original shape. The second term regularizes $G _ { \theta }$ to remain a valid SDF by enforcing that the norm of the gradient is 1 (i.e., the Eikonal constraint [4, 31]). The integration is over the region $U$ where the original neural field $F$ is supervised over. The final term aims to smooth or sharpen the surface by increasing or decreasing the curvature $\kappa$ . Setting $\beta < 1$ will decrease the curvature of the output surface $\kappa _ { G _ { \theta } }$ , resulting in a smoother shape. $\beta > 1$ will lead to surfaces with higher curvature details and will thus sharpen shapes. In this paper, we will use mean curvature since it’s easy to compute with neural fields: $\kappa _ { f } ( \mathbf { x } ) = \mathrm { t r } \mathcal { D } ( \mathbf { n } _ { f } ( \mathbf { x } ) )$ . + +![](images/f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg) +Figure 1: L: SIREN learned to fit the SDF of a square; R: Zooming in on the surface. + +One challenge is that the computation of curvature can be very noisy for neural fields using periodic activations. Figure 4 shows how an ostensibly smooth isosurface learned through SIREN [66] is actually quite rough when zoomed in. The curvature evaluated on such a rough surface can be too noisy to be used for training. To alleviate this issue, we only compute the curvature regularization in areas where the curvature of the level set is less than a certain threshold $\tau$ . Formally, we define this area as $V _ { \tau } = \{ \mathbf { x } \in U | \operatorname* { m a x } ( | \kappa _ { G _ { \theta } } | , | \kappa _ { F } | ) < \tau \}$ . We use rejection sampling to sample points from $V _ { \tau }$ when computing the loss during training. + +Results. We follow prior works [20, 76] to use Armadillo [40] and a sphere with one half of it corrupted by Gaussian noise. We compare our algorithm to two baselines. The first baseline directly applies the smoothing algorithm developed by Taubin [76] to the mesh extracted from the neural field using Marching cube [44]. The second baseline applies the filtering algorithms on meshes simplified by quadratic decimation [27]. The input neural fields are created following the procedure of Park et al. [56]. The results are shown in Figure 2. The first baseline fails to smooth or sharpen the surface appropriately. It only modifies the surface with high-frequency noise. While the second baseline can filter the surface correctly, it introduces discretization artifacts due to the decimation process. This suggests it is challenging to filter the neural field surface with mesh processing algorithms since these algorithms are sensitive to the quality of surface discretization. On the other hand, our algorithm can produce good filtering results without the need to maintain a good discretization of the surface. + +# 5 Deformation + +To deform a shape, the user will choose a set of deformation handles $\{ { \bf h } _ { i } \} _ { i = 1 } ^ { n }$ . For each handles $\mathbf { h } _ { i }$ , the user will specify a target location $\mathbf { t } _ { i }$ describing where the handle will be dragged to. Users can set $\mathbf { t } _ { i } = \mathbf { h } _ { i }$ to enforce a part of the surface to be unchanged. Given this input, there are two goals for the shape deformation algorithm: 1) satisfying user inputs and 2) ensuring that the deformation resembles the natural behavior of real objects. The input shape will be represented by the zero-isosurface of a neural field $F$ in our setting. The algorithm must therefore output a neural field $G _ { \theta }$ whose zero-isosurface represents the deformed shape that satisfies the aforementioned two goals. + +In this setting, deformation can be formulated as solving a constrained optimization problem: + +$$ +\operatorname* { m i n } _ { \theta } \ \mathcal { L } _ { d f m } ( G _ { \theta } , F ) \quad \mathrm { s . t . } \ \mathcal { L } _ { c o n s t } ( G _ { \theta } , \mathbf { t } _ { i } , \mathbf { h } _ { i } ) = 0 , 1 \leq i \leq n , +$$ + +where the objective $\mathcal { L } _ { d f m } ( G _ { \theta } , F )$ measures how natural the deformation is. The constraints $\mathcal { L } _ { c o n s t } ( G _ { \theta } , \mathbf { t } _ { i } , \mathbf { h } _ { i } ) = 0$ ensure that the result deformation matches user input. + +One way to ensure a natural-looking deformation is to assume that the surface behaves like a thin elastic shell, which is resistant to stretching and bending [1, 70]. Traditional mesh-based algorithms model elasticity by minimizing the thin shell energy that penalizes stretching or bending happened to any local patch. Naively adapting such training objectives from mesh-based algorithms to neural fields is challenging because these algorithms assume dense correspondences between two surfaces and efficient access to geodesic neighbors. + +In this section, we will address these challenges by following strategy. To measure how much bending or stretching happened to the whole surface, we will first divide the surface into infinitesimal patches and then sum the amount of bending or stretching that happened to each patch. To achieve that, we first develop a sampling schema to sample these infinitesimal patches uniformly from the input shapes (Sec 5.1). Then we warp the input shape with an invertible neural network to achieve correspondences between the input and output surfaces (Sec 5.2). Finally, we derive ways that measure the amount of bending and stretching between two infinitesimal surface patches (Sec 5.3). + +# 5.1 Sampling + +Our first step is to sample infinitesimal surface patches uniformly to the surface area from the zero-isosurface of the neural field. Each infinitesimal surface patch can be represented by a surface point and its local derivatives. With this said, the problem amounts to sampling points from the zero-isosurface. Formally, we are given a neural field $F$ that approximates the signed distance field of the input shape. The goal is to find a way to sample an arbitrary number of points on its zero-isosurface $\mathcal { M } _ { F }$ . One way to sample points from $\mathcal { M } _ { F }$ is to run Langevin dynamics using the gradient of the field $F$ [5, 13]: $\mathbf { x } _ { t + 1 } \overset { \cdot } { = } \tilde { \mathbf { x } } _ { t } - F ( \tilde { \mathbf { x } } _ { t } ) n _ { F } ( \tilde { \mathbf { x } } _ { t } )$ , $\tilde { \mathbf { x } } _ { t } \sim \mathcal { N } ( \mathbf { x } _ { t } , \sigma \mathbf { I } )$ . $\mathbf { x } _ { \mathrm { 0 } }$ are initialized by sampling uniformly within $[ - 1 , 1 ] ^ { 3 }$ . Here we also leverage an SDF property: the closest surface point to $\mathbf { x }$ can be computed by ${ \bf x } - { \bf n } ( { \bf x } ) F ( { \bf x } )$ (Sec 3). While this process produces points guaranteed to be on the zero-isosurface, the mixing time of the procedure is very long without appropriate coarse-to-fine annealing [68]. Running this process for limited iterations results in point samples that are concentrating near the high curvature area, as shown on the left side of Figure 5.1. + +![](images/1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg) +Figure 3: Sampling from dino. L: no rejection; R: ours (with rejection). + +To alleviate this issue, we instantiate the sampling procedure with $\mathbf { x } _ { \mathrm { 0 } }$ sampled from a rough shape. This can be done by first sampling uniformly from the bounded space and rejecting points that are too far away from the isosurface: $\mathbf { x } _ { 0 } \sim \{ \mathbf { x } \in U ( - 1 , 1 ) | F ( \mathbf { x } ) < \tau _ { s } \}$ . We found that $\tau _ { s }$ can be set to a relatively large number (e.g., about 0.1). This prevents high rejection rates without sacrificing sampling quality. Figure 5.1 shows that our method creates uniform samples. + +We quantitatively evaluate the effectiveness of the sampling scheme. Specifically, we compare our sampling scheme with directly applying Langevin dynamics [13] ( $L D$ in Table 1). To do that, we compute the Chamfer Distance (CD) and Earth Mover Distance (EMD) between points sampled by the valuated algorithms and points sampled uniformly from the extracted mesh. For both metrics, lower values indicate better performance Since larger surfaces can lead to larger CD and EMD values, we normalize the metrics by the values obtained by comparing two sets of uniform samples from the mesh (i.e., CDr and EMDr) The results show that initializing $\mathbf { x } _ { \mathrm { 0 } }$ by rejection sampling significantly improves both CD and EMD compared to naively applying Langevin dynamics, at a minor cost in sampling time. + +# 5.2 Invertible Deformation Field + +After we obtained surface points samples from zero isosurfaces of the input neural fields, the next step is to deform these surface points to the output shapes. One way to deform neural fields is to warp the coordinate space of the input network using a deformation field predicted by a neural network $D _ { \theta }$ [25, 43, 57]. Under this framework, the output network can be defined as $G _ { \theta } ( \mathbf { x } ) = F ( D _ { \theta } ( \mathbf { x } ) )$ . Then the constraint $\mathcal { L } _ { c o n s t } ( G _ { \theta } , \mathbf { t } , \mathbf { h } )$ can be defined as $\mathcal { L } _ { c o n s t } ( G _ { \theta } , \mathbf { t } , \mathbf { h } ) = \| D _ { \theta } ( \mathbf { t } ) - \mathbf { h } \|$ . + +Table 1: Our sampling method achieves better results than the baseline. + +
Dino Armadillo
MetricsLDOursLDOurs
CDr (↓)1.541.041.361.02
EMDr (↓)3.381.153.301.08
Time0.150.210.120.18
+ +Ideally, we would like the deformation $D _ { \theta }$ to be continuous and invertible. This will allow us to create well-behaved one-to-one correspondences between points on the deform shape (i.e., x) and points on the input shape (i.e., $D _ { \theta } ( \mathbf { x } ) )$ . To achieve this, we make $D _ { \theta }$ to be an invertible network composed of a sequence of invertible residual blocks [7]. + +Invertible residual block. Prior works [7, 17] have shown that a sufficient condition for the residual block $f ( x ) = x + g ( x )$ to be invertible is that the Lipschitz constant of function $g$ is less than 1. The architecture of the network $g ( x )$ is usually composed of spectral normalized linear layers and Lipschitz continuous nonlinearities such as ELU [21]. The inverse of such residual block can be computed by finding the fixed point of function $y \mapsto y - g ( x )$ [7]. Intuitively, deforming using one invertible residual block amounts to moving point $x$ with deformation vector $g ( x )$ . + +Lipschitz continuous positional encoding. Applying such architecture directly without modification fails to produce deformations with many different local rotations. Recent research suggests that periodic functions are essential for coordinate MLPs to predict complex signals [47, 66, 74]. Periodic functions are usually used as positional encoding or activations of the form $\sin ( a x + b )$ , where $a$ controls the frequency of the activation. To use such periodic function as part of the invertible residual block without restricting the frequency, we normalize the output of the periodic function $\sin ( a x + b ) | a | ^ { - 1 }$ , bringing it is Lipschitz constant below 1. Formally, the positional encoding with normalized Lipschitz constant applied to one dimension is + +$$ +\gamma _ { i } ( { \bf x } ) = \frac { 1 } { \sqrt { 2 L + 1 } } \left( x _ { i } , \frac { \cos ( 2 ^ { 0 } \pi { \bf x } _ { i } ) } { 2 ^ { 0 } \pi } , \frac { \sin ( 2 ^ { 0 } \pi { \bf x } _ { i } ) } { 2 ^ { 0 } \pi } , \ldots , \frac { \cos ( 2 ^ { L } \pi { \bf x } _ { i } ) } { 2 ^ { L } \pi } , \frac { \sin ( 2 ^ { L } \pi { \bf x } _ { i } ) } { 2 ^ { L } \pi } \right) . +$$ + +We will apply such encoding to each of the dimensions of the input coordinate for the body of the invertible residual block: $\begin{array} { r } { \bar { R _ { \theta } } ( \mathbf { x } ) = \mathbf { x } + g _ { \theta } \left( \frac { 1 } { \sqrt { d } } [ \gamma _ { 1 } \left( \mathbf { x } \right) , \mathbf { \Omega } , \mathbf { \Omega } . . . , \gamma _ { d } \left( \mathbf { \bar { x } } \right) ] \right) } \end{array}$ . + +Ablation. We conduct ablation studies on two architecture choices: invertibility and positional encoding. In this experiment, we deform a neural field representing the SDF of a 2D rectangle. We optimize each ablation case to satisfies the user specified constraints with following loss: $\begin{array} { r } { \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \left\| D _ { \theta } ( \mathbf { h } _ { i } ) - \mathbf { t } _ { i } \right\| ^ { 2 } } \end{array}$ . The results are shown in Figure 4. If we replace the invertible architecture with SIREN as done in Deng et al. [25], the deformation field will tend to break topology (No inverse). Removing the positional encoding will fail to create a complex field (No $P E _ { \mathrm { { \ell } } }$ ). Our architecture can create a reasonable guess (No loss). This shows that our network architecture prioritizes natural deformation that preserves topology. + +![](images/513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg) +Figure 4: Architecture ablation on 2D SDF deformation. Blue points are handles; Red points are targets. + +# 5.3 Implicit Thin Shell Loss + +At this point, we have obtained the correspondences $\mathbf { y } = D _ { \theta } ( \mathbf { x } )$ , with $\mathbf { x }$ in the output (or deformed) space and y in the input space. Our next step is to design $\mathcal { L } _ { d f m }$ that compares these corresponding patches to ensure natural deformation. Recall that one way to ensure a natural-looking deformation is to minimize the amount the resistance to bending or stretching that happened during the deformation [1, 70]. We will develop novel loss functions for measuring stretching and bending. Please refer to the supplement for the connection between our loss and the thin shell energy. + +# 5.3.1 Stretching Loss + +Stretching can be captured by the change of dot product in tangent space. Intuitively, a local surface patch is stretched when the lengths of some tangent vectors change. The change of tangent vectors’ norm can be measured by the tangent dot-product. With this said, the amount of stretch can be measured by the change of tangent dot product. + +Note that we do not have access to analytical surface parameterization, so we need to express the tangent dot product with neural fields and its derivative. We can describe the tangent dot product to the spatial dot product using the projection matrix. The tangent vector of $\mathbf { x }$ can be parameterized by projecting a vector $\mathbf { v }$ to the tangent space. To achieve that, we need to multiply $\mathbf { v }$ with the projection matrix $\bar { \mathbf { P } _ { G _ { \theta } } } ( \mathbf { x } ) = \mathbf { I } - \mathbf { n } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { \bar { n } } _ { G _ { \theta } } ( \mathbf { \bar { x } } ) ^ { T }$ , where $\mathbf { n } _ { G _ { \theta } } ( \mathbf { x } )$ is the surface normal of point $\mathbf { x }$ . $\mathbf { \bar { P } } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v }$ is a tangent vector in the tangent plane of $\mathbf { x }$ . + +Now we are ready to compute the change of tangent dot-product. Let $\mathbf { t } _ { i }$ and $\mathbf { t } _ { j }$ be two arbitrary tangent vectors near point $\mathbf { x }$ at the deformed shape. Further assume that these vectors can be parameterized as $\mathbf { t } _ { i } = \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v } _ { 1 }$ and $\mathbf { t } _ { j } = \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v } _ { 2 }$ . These tangent vector will be transformed by $D _ { \theta }$ into $\mathbf { t } _ { i } ^ { \prime } = \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) \mathbf { t } _ { i }$ and $\mathbf { t } _ { j } ^ { \prime } = \mathbf { J } _ { D _ { \theta } } ( \mathbf { \bar { x } } ) \mathbf { t } _ { j }$ . These are tangent vectors at point $\mathbf { y }$ at the input shape. The change of tangent dot-product with respect to these two vectors can be computed as follows: + +$$ +\begin{array} { r } { \vert \mathbf { t } _ { 1 } ^ { T } \mathbf { t } _ { 2 } - \mathbf { t } _ { 1 } ^ { \prime T } \mathbf { t } _ { 2 } ^ { \prime } \vert = \vert \mathbf { v } _ { 1 } ^ { T } \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) ^ { T } \left( \mathbf { I } - \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) ^ { T } \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) \right) \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v } _ { 2 } \vert . } \end{array} +$$ + +To minimize the stretch, we need to enforce that dot-product stays the same for all tangent vectors. This can be done by minimize the matrix norm of $\mathbf { \dot { P } } _ { G _ { \theta } } ^ { T } \bigl ( \mathbf { I } - \mathbf { \dot { J } } _ { D _ { \theta } } ^ { T } \mathbf { J } _ { D _ { \theta } } \bigr ) \mathbf { P } _ { G _ { \theta } }$ . Here, we drop the function arguments $\mathbf { x }$ for the matrix for notation clarity. With these, we define the the stretch loss as: + +$$ +\mathcal { L } _ { s } ( G _ { \theta } ) = \int _ { \mathbf { x } \in \mathcal { M } _ { G _ { \theta } } } \left. \mathbf { P } _ { G _ { \theta } } ^ { T } \left( \mathbf { I } - \mathbf { J } _ { D _ { \theta } } ^ { T } \mathbf { J } _ { D _ { \theta } } \right) \mathbf { P } _ { G _ { \theta } } \right. _ { F } ^ { 2 } d \mathbf { x } . +$$ + +# 5.3.2 Bending Loss + +Bending can be characterized by the change of surface curvature (e.g., making the surface more or less curved). Intuitively, curvature can be described as the change of tangent dot product along the surface normal direction [16, 59]. Let $\mathbf { t } _ { 1 } = \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v } _ { 1 }$ and $\mathbf { t } _ { 2 } = \mathbf { \bar { P } } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { \bar { v } } _ { 2 }$ be two tangent vectors at $\mathbf { x }$ . Consider the tangent dot product of the surface family $\mathbf { x } + t \mathbf { n } ( \mathbf { x } )$ . Note that this set of surface corresponding to the level sets ${ \bf \dot { \{ p \vert } } G _ { \theta } ( { \bf p } ) = t \}$ if $G _ { \theta }$ is approximating an SDF [54]. Then the change of dot product along the surface normal direction can be given by Hessian and directional derivative: $\begin{array} { r } { \frac { d } { d t } \mathbf { t } _ { 1 } ^ { T } \mathbf { t } _ { 2 } \mathbf { \bar { \Psi } } _ { t = 0 } = \mathbf { t } _ { 1 } ^ { T } \bar { H _ { G _ { \theta } } } ( \mathbf { x } ) \mathbf { t } _ { 2 } } \end{array}$ . Intuitively, the larger this value is, the faster the surface changes whenmal direction, which means the surface has larger curvature. + +Measuring bending amounts to measure the change of tangent dot-product derivative along the surface normal direction. Similar to the previous section, assume we have tangent vectors $\mathbf { t } _ { i } = \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v } _ { i }$ and $\mathbf { t } _ { j } = \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) \mathbf { v } _ { j }$ . These tangent vectors are are transformed by the Jacobian of the deformation field $\mathbf { J } _ { D _ { \theta } } ( \mathbf { x } )$ to $\dot { \mathbf { t } } _ { i } ^ { \prime } = \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) \mathbf { t } _ { i }$ and $\mathbf { t } _ { j } ^ { \prime } = \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) \mathbf { t } _ { j }$ . Since $\mathbf { t } _ { i } ^ { \prime }$ and $\mathbf { t } _ { j } ^ { \prime }$ are tangent vectors at point $\mathbf { y }$ on the surface $\mathcal { M } _ { F }$ , the derivative of tangent dot-product is given by the hessian matrix of field $F$ $: \mathbf { \Gamma } _ { d t } ^ { d } \mathbf { t } _ { 1 } ^ { \prime T } \mathbf { t } _ { 2 } ^ { \prime } | _ { t = 0 } = \mathbf { t } _ { 1 } ^ { \prime T } H _ { F } ( D _ { \theta } ( \mathbf { x } ) ) \mathbf { t } _ { 2 } ^ { \prime } = \mathbf { t } _ { 1 } ^ { T } \mathbf { J } _ { D _ { \theta } } ^ { T } ( \mathbf { x } ) H _ { F } ( D _ { \theta } ( \mathbf { x } ) ) \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) \mathbf { t } _ { 2 } .$ . We will drop the function argument to $\mathbf { J } _ { D _ { \theta } }$ , $H _ { G _ { \theta } }$ , and $\mathbf { P } _ { G _ { \theta } }$ for notation clarity. The change of tangent dot-product derivative is: + +$$ +\left| \frac { d } { d t } \left( \mathbf { t } _ { 1 } ^ { T } \mathbf { t } _ { 2 } - \mathbf { t } _ { 1 } ^ { \prime T } \mathbf { t } _ { 2 } ^ { \prime } \right) _ { t = 0 } \right| = \left| \mathbf { v } _ { 1 } ^ { T } \mathbf { P } _ { G _ { \theta } } ^ { T } \left( H _ { G _ { \theta } } - \mathbf { J } _ { D _ { \theta } } ^ { T } H _ { F } ( D _ { \theta } ( \mathbf { x } ) ) \mathbf { J } _ { D _ { \theta } } \right) \mathbf { P } _ { G _ { \theta } } \mathbf { v } _ { 2 } \right| . +$$ + +If there is almost no bending happened between the infinitesimal patches around $\mathbf { x }$ and $\mathbf { y }$ , then the quantity $\begin{array} { r } { \left| \frac { d } { d t } \left( \mathbf { t } _ { 1 } ^ { T } \mathbf { t } _ { 2 } - \mathbf { t } _ { 1 } ^ { \prime T } \bar { \mathbf { t } } _ { 2 } ^ { \prime } \right) _ { t = 0 } \right| } \end{array} \qquad = 0 .$ should stay close to 0 for all pairs of tangent vectors. We will + +quantify this by the matrix norm of ${ \bf P } _ { G _ { \theta } } ^ { T } \left( H _ { G _ { \theta } } - { \bf J } _ { D _ { \theta } } ^ { T } H _ { F } ( D _ { \theta } ( { \bf x } ) ) { \bf J } _ { D _ { \theta } } \right) { \bf P } _ { G _ { \theta } }$ . Finally, we arrive at our bending loss, which minimizes the norm of the matrix that modulate the change of tangent dot-product derivatives moving along the surface normal direction: + +$$ +\mathcal { L } _ { b } ( G _ { \theta } ) = \int _ { x \in \mathcal { M } _ { G _ { \theta } } } \left\| \mathbf { P } _ { G _ { \theta } } ^ { T } \left( H _ { G _ { \theta } } - \mathbf { J } _ { D _ { \theta } } ^ { T } H _ { F } ( D _ { \theta } ( \mathbf { x } ) ) \mathbf { J } _ { D _ { \theta } } \right) \mathbf { P } _ { G _ { \theta } } \right\| _ { F } ^ { s } d \mathbf { x } . +$$ + +# 5.3.3 Computing $\mathcal { L } _ { s }$ and $\mathcal { L } _ { b }$ + +Computing $\mathcal { L } _ { s }$ and $\mathcal { L } _ { b }$ during training requires approximating a surface integral of the form $\begin{array} { r } { \int _ { \mathbf { x } \in \mathcal { M } _ { G _ { \theta } } } \bar { \mathcal { L } } ( \mathbf { x } ) d \mathbf { x } } \end{array}$ using Monte Carlo integration, which requires an efficient way to sample points θuniformly from surface $\mathcal { M } _ { G _ { \theta } }$ . While it is feasible to sample uniformly from an SDF, this is challenging to do with $G _ { \theta }$ since there is no guarantee that $G _ { \theta }$ remains a valid SDF during the course of training. Thanks to the invertibility of $D _ { \theta }$ , we can apply change of variable $\mathbf { x } = D _ { \theta } ^ { - 1 } ( \mathbf { y } )$ to the integration, where $\mathbf { y }$ are points on the input surface $\mathcal { M } _ { F }$ : + +$$ +\int _ { \mathbf { x } \in \mathcal { M } _ { G _ { \theta } } } \mathcal { L } ( \mathbf { x } ) d \mathbf { x } = \int _ { \mathbf { y } \in \mathcal { M } _ { F } } \mathcal { L } ( \mathbf { x } ) \left| \operatorname* { d e t } \left( \mathbf { J } _ { D _ { \theta } } ( \mathbf { x } ) \mathbf { P } _ { G _ { \theta } } ( \mathbf { x } ) + \mathbf { n } _ { F } ( \mathbf { y } ) \mathbf { n } _ { G _ { \theta } } ( \mathbf { x } ) ^ { T } \right) \right| ^ { - 2 } d \mathbf { y } . +$$ + +$\mathbf { J } _ { D _ { \theta } } \mathbf { P } _ { G _ { \theta } } \in \mathbb { R } ^ { 3 \times 3 }$ maps tangent vector from $\mathcal { M } _ { G _ { \theta } }$ to $\mathcal { M } _ { F }$ . We apply the extension trick from Iglesias et al. [35] to create a matrix whose determinant equals the change of surface area. This is achieved by adding the surface normal component $\mathbf { n } _ { F } \mathbf { n } _ { G } ^ { T }$ and keeping it unchanged. With this change of variable, we now can compute the losses with point samples from the input field $F$ . Since the input field $F$ approximates an SDF, we can use the method introduced in Section 5.1 to sample uniform points. + +# 5.4 Optimization + +Putting the losses together, we deform a neural field by solving the constrained optimization problem + +$$ +\underset { \theta } { \arg \operatorname* { m i n } } \lambda _ { s } \mathcal { L } _ { s } ( G _ { \theta } ) + \lambda _ { b } \mathcal { L } _ { b } ( G _ { \theta } ) , \quad \mathrm { s . t . } \forall 1 \leq i \leq n , \ \| D _ { \theta } ( \mathbf { t } _ { i } ) - \mathbf { h } _ { i } \| = 0 +$$ + +where $\lambda _ { s } , \lambda _ { b }$ are hyperparameters that determine the material properties. One way to solve this constrained optimization problem for a neural network is to make the constraints a soft loss adding to the objective function: $\begin{array} { r } { \dot { \mathcal { L } } _ { c o n s t } ^ { { \bf \Delta } } ( D _ { \theta } ) = \frac { 1 } { n } \sum _ { 1 = 1 } ^ { n } \left. D _ { \theta } ( \mathbf { t } _ { i } ) - \mathbf { h } _ { i } \right. } \end{array}$ . Our final objective is: + +We set $\lambda _ { c }$ to be a high value to enforce that the model satisfies user-specified input as much as possible. The user can tune $\lambda _ { b }$ and $\lambda _ { s }$ depending on the application scenario. We optimize $\mathcal { L } ( \boldsymbol { \theta } )$ with Adam optimizer to obtain the output field $G _ { \theta }$ . Hyperparameters are provided in the supplement. + +# 6 Deformation Results + +In this section, we will demonstrate the results of our methods to shape deformation. The shapes for deformation are taken from Sorkine-Hornung and Alexa [70]. To create neural fields from these meshes, we follow the procedure of Park et al. [56] to compute ground-truth SDF for locations sampled within $[ - 1 , 1 ] ^ { 3 }$ . We then fit a SIREN [66] to the ground-truth SDF to generate our initial neural fields. Our main baseline is ARAP [70, 86]. The simplest way to use ARAP to edit neural fields is applying it on a mesh extracted from the input neural fields using marching cubes [44, 45]. We first present results comparing with ARAP applied to the extracted mesh. Then we will conduct an analysis to show our losses encourage the right behaviors. + +Comparing to ARAP baseline. We follow ARAP [70] to create a set of basic shape deformation operations to evaluate our algorithm. In this setting, the user will first specify a set of handles used for manipulation (shown in Figure 5 in blue). In general, the user can apply three basic types of operation on a handle: 1) make it static (i.e., no deformation), 2) translate it, or 3) rotate it around a center. Usually, the first operation is used in combination with the latter two to produce useful deformation. We first show how our algorithm deforms simple objects (e.g., a cylinder and a rectangle bar) when the user rotates or translates one end while fixing the other. We then extend this set of operations to shapes with more detail (e.g., Cactus, Armadillo, and Dino). Finally, we test our algorithms when all three operations are specified together on a single shape. The results are shown in Figure 5. We can see that applying ARAP directly on the extracted mesh creates undesirable volume distortion. Our algorithm is able to produce deformation results that are natural while satisfying the user’s intention. + +![](images/4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg) +Figure 5: Deformation results. (A) Input shape. (B) Baseline. (C) Ours. Red points are user specified handles $\mathbf { h } _ { i }$ . Blue points denote user specified target points $\mathbf { t } _ { i }$ . First row: single rotation or translation on simple shapes. Second and third rows: single rotation or translation on more complex objects. Fourth row: multiple edits on complex objects. + +Comparing to different ARAP variants. This artifact is partially due to the surface discretization made by the marching cubed algorithm doesn’t agree with the assumptions made by ARAP [41]. To verify this hypothesis, we also include three additional baselines in Figure 6. First, we show the results of applying ARAP on the low-poly mesh used to create the input neural fields (Original). Second, we first apply Garland and Heckbert [28] to simplify the surface of the extracted mesh before applying ARAP to it (Remeshed). Finally, we also compare to the results of SR-ARAP [41], which adds smoothness regularization to ARAP to remove some unnatural distortion (SR-ARAP). The figure shows that ARAP works much better when the surface is discretized appropriately. Discretizing the surface, however, usually requires case-by-case manual adjustment to perform well. Our algorithm does not suffer from such issues as we optimize the thin shell objective directly without committing to a particular discretization of the surface. + +Loss analysis. Here we provide an experiment to analyze the behavior of stretching loss and bending loss. Specifically, we compare models optimized for only the stretching loss $\mathcal { L } _ { s }$ , only the bending loss $\mathcal { L } _ { b }$ , and both losses together. Similar to Section 5.2, we deform a neural field that approximates the SDF of a 2D rectangle. The results are shown in Figure 7. Optimizing only for $\mathcal { L } _ { s }$ produces a shape that best preserves surface area (or the perimeter in the 2D case), which explains the wiggling. Optimizing only for $\mathcal { L } _ { b }$ produces a shape that tries to prevent wiggling of the surface, which changes the curvature of the surface. The user can choose appropriate $\lambda _ { s }$ and $\lambda _ { b }$ to produce deformation with resistance to both bending and stretching. + +![](images/2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg) +Figure 6: Additional ARAP baselines. Directly applying ARAP to extracted mesh produces poor results (i.e., MC). While this can be alleviated by remshing (i.e. Original or Remeshed) or regularization (i.e. SR-ARAP), this shows mesh deformation algorithms can be sensitive to discretization quality. Our method do not discretize the surface, thus circumvent such issue. Red points are handles; Blue points are targets. + +# 7 Discussion, Limitations, and Future work + +Advantages of using neural fields for geometry processing. The main strength of using neural fields for geometry processing is that one can disentangle the processing algorithm from the surface discretization. Users do not need to worry about discretization while manipulating a shape represented in neural fields. This might open the door to more automatic geometry processing pipelines. Additionally, neural fields are modular and can be combined with other neural networks. Neural fields can be easily incorporated into current deep learning pipelines. This makes them well-suited for data-driven applications. + +![](images/019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg) +Figure 7: Analysis of stretching and bending losses. Blue points are handles; Red points are targets. + +Limitations and future directions. The main limitation of our method is the slow optimization speed that hinders interactive editing. Typically, ARAP can solve each of such deformation problems within half an hour for large meshes, and it can achieve interactive speed for meshes with a small number of triangles. The Taubin smoothing can finish in a couple of seconds. Our deformation method right now requires a TitanX GPU with 12GB memory to train for 10 hours. Our smoothing and sharpening method takes about 10 minutes on the same GPU. The current algorithm does not ensure that the output field remains an SDF, which prevents performing multiple editing operations. + +We believe many of these limitations can be addressed in future work. One can potentially use techniques like progressive training or meta-learning [67, 75] to improve the training speed. To allow consecutive editing, we can design regularization loss that enforces the output fields to approximate an SDF [4] or design sampling methods robust with noisy SDF. Other interesting directions include providing deeper theoretical analysis and applying neural fields in other geometry processing tasks. + +Societal impact. Our work can lead to more efficient geometry processing algorithms. Such algorithms can empower artists to generate creative content. Potential negative impact includes misuse of geometry processing algorithms to create offensive content. + +# 8 Conclusion + +Our work provides a proof of concept that geometry processing can be done entirely with neural fields without discretizing the surface. We develop network architectures and training objectives for filtering and deforming shapes represented by neural fields and demonstrate the advantages of using neural fields for geometry processing. We hope that our work can inspire a new generation of geometry processing algorithms using neural fields. + +Acknowledgement. Guandao’s PhD was supported in part by a research gift from Magic Leap and a donation from NVIDIA. We want to thank Wenqi Xian, Professor Steve Marschner, and members of Intel Labs for providing insightful feedback for this project. + +References [1] M. Alexa, D. Cohen-Or, and D. Levin. As-rigid-as-possible shape interpolation. Proceedings of the 27th annual conference on Computer graphics and interactive techniques, 2000. 5, 7 [2] Pierre Alliez, Mark Meyer, and Mathieu Desbrun. Interactive geometry remeshing. ACM Transactions on Graphics (TOG), 21(3):347–354, 2002. 1 [3] Pierre Alliez, David Cohen-Steiner, Olivier Devillers, Bruno Lévy, and Mathieu Desbrun. Anisotropic polygonal remeshing. ACM SIGGRAPH 2003 Papers, 2003. 1 [4] Matan Atzmon and Y. Lipman. Sal: Sign agnostic learning of shapes from raw data. 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 2562–2571, +2020. 3, 4, 10 [5] Matan Atzmon, Niv Haim, Lior Yariv, Ofer Israelov, Haggai Maron, and Y. Lipman. Controlling neural level sets. In NeurIPS, 2019. 2, 3, 5 [6] D. Bechmann. Space deformation models survey. Comput. Graph., 18:571–586, 1994. 2 [7] Jens Behrmann, D. Duvenaud, and J. Jacobsen. Invertible residual networks. In ICML, 2019. 2, +6 [8] J. Bloomenthal and B. Wyvill. Introduction to implicit surfaces. 1997. 1 [9] Mario Botsch and O. Sorkine-Hornung. On linear variational surface deformation methods. IEEE Transactions on Visualization and Computer Graphics, 14:213–230, 2008. 2, 3 [10] Mario Botsch, Mark Pauly, Markus H. Gross, and Leif P. Kobbelt. Primo: coupled prisms for intuitive surface modeling. In SGP ’06, 2006. 2 [11] Mario Botsch, Leif Kobbelt, Mark Pauly, Pierre Alliez, and Bruno Lévy. Polygon mesh processing. CRC press, 2010. 1, 2 [12] Aljavz Bovzivc, Pablo Rodríguez Palafox, Michael Zollhofer, Justus Thies, Angela Dai, and Matthias Nießner. Neural deformation graphs for globally-consistent non-rigid reconstruction. ArXiv, abs/2012.01451, 2020. 3 [13] Ruojin Cai, Guandao Yang, Hadar Averbuch-Elor, Zekun Hao, Serge Belongie, Noah Snavely, and Bharath Hariharan. Learning gradient fields for shape generation. In Proceedings of the European Conference on Computer Vision (ECCV), 2020. 3, 5 [14] Edwin Catmull. A system for computer generated movies. In Proceedings of the ACM annual conference-Volume 1, pages 422–431, 1972. 1 [15] Isaac Chao, Ulrich Pinkall, Patrick Sanan, and Peter Schröder. A simple geometric model for elastic deformations. In SIGGRAPH 2010, 2010. 2 [16] Hunter Chase. Fundamental forms of surfaces and the gauss-bonnet theorem. 2012. 7 [17] Ricky T. Q. Chen, Jens Behrmann, D. Duvenaud, and J. Jacobsen. Residual flows for invertible generative modeling. ArXiv, abs/1906.02735, 2019. 6 [18] Xu Chen, Yufeng Zheng, M. Black, Otmar Hilliges, and Andreas Geiger. Snarf: Differentiable forward skinning for animating non-rigid neural implicit shapes. ArXiv, abs/2104.03953, 2021. +3 [19] Zhiqin Chen and Hao Zhang. Learning implicit fields for generative shape modeling. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages +5939–5948, 2019. 1 [20] Ming Chuang and M. Kazhdan. Interactive and anisotropic geometry processing using the screened poisson equation. ACM SIGGRAPH 2011 papers, 2011. 2, 4 [21] Djork-Arné Clevert, Thomas Unterthiner, and S. Hochreiter. Fast and accurate deep network learning by exponential linear units (elus). arXiv: Learning, 2016. 6 +[22] B. Curless and M. Levoy. A volumetric method for building complex models from range images. Proceedings of the 23rd annual conference on Computer graphics and interactive techniques, 1996. 1 +[23] T. Davies, Derek Nowrouzezahrai, and A. Jacobson. On the effectiveness of weight-encoded neural implicit 3d shapes. 2020. 1 +[24] A. de Boer, Martijn van der Schoot, and Hester Bijl. Mesh deformation based on radial basis function interpolation. Computers & Structures, 85:784–795, 2007. 2 +[25] Yu Deng, J. Yang, and Xin Tong. Deformed implicit field: Modeling 3d shapes with learned dense correspondence. 2021. 3, 6 +[26] Mathieu Desbrun, M. Meyer, P. Schröder, and A. Barr. Implicit fairing of irregular meshes using diffusion and curvature flow. In SIGGRAPH ’99, 1999. 2 +[27] Michael Garland and Paul S. Heckbert. Surface simplification using quadric error metrics. Proceedings of the 24th annual conference on Computer graphics and interactive techniques, 1997. 4 +[28] Michael Garland and Paul S Heckbert. Surface simplification using quadric error metrics. In Proceedings of the 24th annual conference on Computer graphics and interactive techniques, pages 209–216, 1997. 9 +[29] Kyle Genova, Forrester Cole, Daniel Vlasic, Aaron Sarna, William T Freeman, and Thomas Funkhouser. Learning shape templates with structured implicit functions. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 7154–7164, 2019. 3 +[30] Kyle Genova, Forrester Cole, Avneesh Sud, Aaron Sarna, and Thomas Funkhouser. Local deep implicit functions for 3d shape. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 4857–4866, 2020. 3 +[31] Amos Gropp, Lior Yariv, Niv Haim, Matan Atzmon, and Y. Lipman. Implicit geometric regularization for learning shapes. In ICML, 2020. 2, 3, 4 +[32] Kunal Gupta and Manmohan Chandraker. Neural mesh flow: 3d manifold mesh generationvia diffeomorphic flows. ArXiv, abs/2007.10973, 2020. 3 +[33] Zekun Hao, Hadar Averbuch-Elor, Noah Snavely, and Serge J. Belongie. Dualsdf: Semantic shape manipulation using a two-level representation. pages 7628–7638, 2020. 3 +[34] Jingwei Huang, C. Jiang, Baiqiang Leng, Bin Wang, and L. Guibas. Meshode: A robust and scalable framework for mesh deformation. ArXiv, abs/2005.11617, 2020. 3 +[35] José A. Iglesias, M. Rumpf, and O. Scherzer. Shape-aware matching of implicit surfaces based on thin shell energies. Foundations of Computational Mathematics (New York, N.y.), 18:891 – 927, 2018. 3, 8 +[36] A. Jacobson, I. Baran, Jovan Popovic, and O. Sorkine-Hornung. Bounded biharmonic weights for real-time deformation. Communications of the ACM, 57:99 – 106, 2014. 2 +[37] Timothy Jeruzalski, Boyang Deng, Mohammad Norouzi, J. P. Lewis, G. Hinton, and Andrea Tagliasacchi. Nasa: Neural articulated shape approximation. In ECCV, 2020. 3 +[38] Chiyu Max Jiang, Jingwei Huang, Andrea Tagliasacchi, and Leonidas J. Guibas. Shapeflow: Learnable deformation flows among 3d shapes. In NeurIPS, 2020. 3 +[39] M. W. Jones, J. A. Bærentzen, and M. Srámek. 3d distance fields: a survey of techniques and applications. IEEE Transactions on Visualization and Computer Graphics, 12:581–599, 2006. 1, 2, 3 +[40] Venkat Krishnamurthy and M. Levoy. Fitting smooth surfaces to dense polygon meshes. Proceedings of the 23rd annual conference on Computer graphics and interactive techniques, 1996. 4 + +[41] Zohar Levi and C. Gotsman. Smooth rotation enhanced as-rigid-as-possible mesh animation. IEEE Transactions on Visualization and Computer Graphics, 21:264–277, 2015. 2, 9, 10 + +[42] Y. Lipman, O. Sorkine-Hornung, D. Cohen-Or, D. Levin, Christian Rössl, and H. Seidel. Differential coordinates for interactive mesh editing. Proceedings Shape Modeling Applications, 2004., pages 181–190, 2004. 3 + +[43] Steven Liu, Xiuming Zhang, Zhoutong Zhang, Richard Zhang, Jun-Yan Zhu, and Bryan C. Russell. Editing conditional radiance fields. ArXiv, abs/2105.06466, 2021. 3, 6 + +[44] W. Lorensen and H. Cline. Marching cubes: A high resolution 3d surface construction algorithm. In SIGGRAPH ’87, 1987. 4, 8 + +[45] Lars M. Mescheder, Michael Oechsle, M. Niemeyer, S. Nowozin, and Andreas Geiger. Occupancy networks: Learning 3d reconstruction in function space. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 4455–4465, 2019. 1, 8 + +[46] Mateusz Michalkiewicz, Jhony K Pontes, Dominic Jack, Mahsa Baktashmotlagh, and Anders Eriksson. Deep level sets: Implicit surface representations for 3d shape inference. arXiv preprint arXiv:1901.06802, 2019. 1 + +[47] Ben Mildenhall, Pratul P. Srinivasan, Matthew Tancik, J. T. Barron, R. Ramamoorthi, and Ren Ng. Nerf: Representing scenes as neural radiance fields for view synthesis. In ECCV, 2020. 1, 6 [48] Tim Milliron, R. Jensen, Ronen Barzel, and A. Finkelstein. A framework for geometric warps and deformations. ACM Trans. Graph., 21:20–51, 2002. 2 + +[49] I. Mitchell. The flexible, extensible and efficient toolbox of level set methods. Journal of Scientific Computing, 35:300–329, 2008. 2 + +[50] Henry P. Moreton and C. Séquin. Functional optimization for fair surface design. Proceedings of the 19th annual conference on Computer graphics and interactive techniques, 1992. 2 + +[51] K. Museth, D. Breen, R. Whitaker, and A. Barr. Level set surface editing operators. Proceedings of the 29th annual conference on Computer graphics and interactive techniques, 2002. 1, 3 [52] Martin E Newell. The utilization of procedure models in digital image synthesis. Technical report, UTAH UNIV SALT LAKE CITY SCHOOL OF COMPUTING, 1975. 1 + +[53] M. Niemeyer, Lars M. Mescheder, Michael Oechsle, and Andreas Geiger. Occupancy flow: 4d reconstruction by learning particle dynamics. 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pages 5378–5388, 2019. 3 + +[54] S. Osher and Ronald Fedkiw. Level set methods and dynamic implicit surfaces. In Applied mathematical sciences, 2003. 1, 2, 3, 7 + +[55] S. Osher and N. Paragios. Geometric level set methods in imaging, vision, and graphics. In Springer New York, 2003. 3 + +[56] Jeong Joon Park, Peter R. Florence, J. Straub, Richard A. Newcombe, and S. Lovegrove. Deepsdf: Learning continuous signed distance functions for shape representation. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 165–174, 2019. 1, 4, 8 + +[57] Keunhong Park, Utkarsh Sinha, Jonathan T. Barron, Sofien Bouaziz, Dan B Goldman, Steven M. Seitz, and Ricardo Martin-Brualla. Deformable neural radiance fields. arXiv preprint arXiv:2011.12948, 2020. 3, 6 + +[58] Sida Peng, Junting Dong, Qianqian Wang, Shangzhan Zhang, Qing Shuai, Hujun Bao, and Xiaowei Zhou. Animatable neural radiance fields for human body modeling. ArXiv, abs/2105.02872, 2021. 3 + +[59] H. Piaggio. Differential geometry of curves and surfaces. Nature, 169:560–560, 1952. 3, 7 + +[60] Albert Pumarola, Enric Corona, Gerard Pons-Moll, and F. Moreno-Noguer. D-nerf: Neural radiance fields for dynamic scenes. ArXiv, abs/2011.13961, 2020. 3 +[61] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht, Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International Conference on Machine Learning, pages 5301–5310. PMLR, 2019. 2 +[62] Edoardo Remelli, Artem Lukoianov, Stephan R. Richter, Benoit Guillard, Timur M. Bagautdinov, Pierre Baqué, and P. Fua. Meshsdf: Differentiable iso-surface extraction. NeurIPS, 2020. 3 +[63] A. Rosenfeld and J. Pfaltz. Sequential operations in digital picture processing. J. ACM, 13: 471–494, 1966. 1 +[64] S. Saito, Zeng Huang, R. Natsume, S. Morishima, Angjoo Kanazawa, and Hao Li. Pifu: Pixel-aligned implicit function for high-resolution clothed human digitization. 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pages 2304–2314, 2019. 1 +[65] T. Sederberg and S. Parry. Free-form deformation of solid geometric models. Proceedings of the 13th annual conference on Computer graphics and interactive techniques, 1986. 2 +[66] V. Sitzmann, Julien N. P. Martel, Alexander W. Bergman, David B. Lindell, and G. Wetzstein. Implicit neural representations with periodic activation functions. ArXiv, abs/2006.09661, 2020. 2, 4, 6, 8 +[67] Vincent Sitzmann, Eric Chan, Richard Tucker, Noah Snavely, and Gordon Wetzstein. Metasdf: Meta-learning signed distance functions. ArXiv, abs/2006.09662, 2020. 10 +[68] Yang Song and S. Ermon. Generative modeling by estimating gradients of the data distribution. ArXiv, abs/1907.05600, 2019. 5 +[69] Olga Sorkine. Differential representations for mesh processing. In Computer Graphics Forum, volume 25, pages 789–807. Wiley Online Library, 2006. 2 +[70] O. Sorkine-Hornung and M. Alexa. As-rigid-as-possible surface modeling. In Symposium on Geometry Processing, 2007. 2, 5, 7, 8 +[71] O. Sorkine-Hornung, D. Cohen-Or, Y. Lipman, M. Alexa, Christian Rössl, and H. Seidel. Laplacian surface editing. In SGP ’04, 2004. 2 +[72] O. Stein, E. Grinspun, M. Wardetzky, and A. Jacobson. Natural boundary conditions for smoothing in geometry processing. ACM Transactions on Graphics (TOG), 37:1 – 13, 2018. 2 +[73] Towaki Takikawa, Joey Litalien, K. Yin, K. Kreis, Charles T. Loop, Derek Nowrouzezahrai, A. Jacobson, M. McGuire, and S. Fidler. Neural geometric level of detail: Real-time rendering with implicit 3d shapes. ArXiv, abs/2101.10994, 2021. 1 +[74] Matthew Tancik, Pratul P. Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan, Utkarsh Singhal, R. Ramamoorthi, J. T. Barron, and Ren Ng. Fourier features let networks learn high frequency functions in low dimensional domains. ArXiv, abs/2006.10739, 2020. 2, 6 +[75] Matthew Tancik, Ben Mildenhall, Terrance Wang, Divi Schmidt, Pratul P. Srinivasan, Jonathan T. Barron, and Ren Ng. Learned initializations for optimizing coordinate-based neural representations. In CVPR, 2021. 10 +[76] G. Taubin. A signal processing approach to fair surface design. Proceedings of the 22nd annual conference on Computer graphics and interactive techniques, 1995. 2, 4 +[77] Demetri Terzopoulos, John C. Platt, A. Barr, and K. Fleischer. Elastically deformable models. In SIGGRAPH ’87, 1987. 2 +[78] Jason Torchinsky. The first real object ever 3D scanned and rendered was a VW beetle. Jalopnik, 2013. https://jalopnik.com/ the-first-real-object-ever-3d-scanned-and-rendered-was-494241353. +[79] B. Vallet and B. Lévy. Spectral geometry processing with manifold harmonics. Computer Graphics Forum, 27, 2008. 2 +[80] Weiyue Wang, D. Ceylan, R. Mech, and U. Neumann. 3dn: 3d deformation network. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 1038–1046, 2019. 3 +[81] Yifan Wang, Noam Aigerman, Vladimir G. Kim, S. Chaudhuri, and O. Sorkine-Hornung. Neural cages for detail-preserving 3d deformations. 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 72–80, 2020. 3 +[82] William Welch and A. Witkin. Variational surface modeling. Proceedings of the 19th annual conference on Computer graphics and interactive techniques, 1992. 2 +[83] Zhan Xu, Yang Zhou, E. Kalogerakis, Chris Landreth, and Karan Singh. Rignet: Neural rigging for articulated characters. ArXiv, abs/2005.00559, 2020. 3 +[84] Lior Yariv, Yoni Kasten, Dror Moran, Meirav Galun, Matan Atzmon, Basri Ronen, and Yaron Lipman. Multiview neural surface reconstruction by disentangling geometry and appearance. Advances in Neural Information Processing Systems, 33, 2020. 1 +[85] Zerong Zheng, Tao Yu, Qionghai Dai, and Y. Liu. Deep implicit templates for 3d shape representation. ArXiv, abs/2011.14565, 2020. 3 +[86] Qian-Yi Zhou, Jaesik Park, and Vladlen Koltun. Open3D: A modern library for 3D data processing. arXiv:1801.09847, 2018. 8 \ No newline at end of file diff --git a/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_content_list.json b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..3b6495eee440c2d69ed0293e50a7c9f46be87670 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_content_list.json @@ -0,0 +1,1412 @@ +[ + { + "type": "text", + "text": "Geometry Processing with Neural Fields ", + "text_level": 1, + "bbox": [ + 253, + 122, + 745, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Guandao Yang ∗ Cornell University ", + "bbox": [ + 192, + 202, + 315, + 229 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Serge Belongie University of Copenhagen ", + "bbox": [ + 338, + 202, + 509, + 229 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Bharath Hariharan Cornell University ", + "bbox": [ + 535, + 202, + 673, + 228 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Vladlen Koltun Intel Labs ", + "bbox": [ + 696, + 202, + 807, + 228 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 265, + 535, + 281 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Most existing geometry processing algorithms use meshes as the default shape representation. Manipulating meshes, however, requires one to maintain high quality in the surface discretization. For example, changing the topology of a mesh usually requires additional procedures such as remeshing. This paper instead proposes the use of neural fields for geometry processing. Neural fields can compactly store complicated shapes without spatial discretization. Moreover, neural fields are infinitely differentiable, which allows them to be optimized for objectives that involve higher-order derivatives. This raises the question: can geometry processing be done entirely using neural fields? We introduce loss functions and architectures to show that some of the most challenging geometry processing tasks, such as deformation and filtering, can be done with neural fields. Experimental results show that our methods are on par with the well-established mesh-based methods without committing to a particular surface discretization. Code is available at https://github.com/stevenygd/NFGP. ", + "bbox": [ + 233, + 299, + 766, + 492 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 523, + 310, + 540 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In many graphics applications, users may want to edit digital shapes using just a few clicks, such as making a character bow by dragging the head downwards. Such manipulation from sparse input requires geometry processing algorithms. Most of these algorithms use polygonal meshes to represent shapes [11]. Polygonal meshes were created initially for researchers as a representation of real-world shapes that they can both interpret and manipulate [14, 52, 78]. However, developing algorithms that automatically manipulate meshes is often difficult since they involve discretizing the surface. For example, changing the topology of a mesh, such as turning a sphere into a torus, will break such discretization and require additional repair procedures such as remeshing [2, 3]. Given that shape editing is increasingly performed by algorithms, it seems worthwhile to search for a shape representation that is more amenable to automatic geometry processing. ", + "bbox": [ + 174, + 558, + 825, + 695 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "An alternative to the polygonal mesh is an implicit representation, in which the surface is represented by a level set of a field: $\\bar { \\{ x \\vert f ( x ) = c \\} }$ [22, 39, 63]. Since it is easy to change shape topology using implicit representations, people have applied them for geometry processing tasks such as shape merging [8, 51, 54]. These works store implicit fields using voxels or octrees, which introduce memory-intensive spatial discretization. Recent research addresses this by using continuous neural networks to represent implicit fields [19, 45, 46, 56]. These neural fields possess several advantages in addition to the merits inherited from implicit representation: they are compact to store [23, 45] and can produce high-quality continuous surfaces at arbitrary resolutions [45, 56]. The community has achieved compelling results using neural fields in a variety of applications [47, 64, 73, 84]. Notwithstanding these results, it is still unclear whether shape editing tasks challenging for implicit fields (e.g., deformation and filtering) can be performed with neural fields. In this paper, we ask: can geometry processing be done entirely using neural fields? ", + "bbox": [ + 174, + 702, + 825, + 867 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Geometry processing tasks are challenging because they are typically under-constrained: user input is very sparse. Therefore, we need to leverage priors that characterize how a natural surface behaves. Such surface priors are usually instantiated by minimizing energy functionals that describe the physical properties of surfaces using operators from differential geometry. For example, one can encourage surfaces to be smooth by minimizing the curvature, which can be measured by the LaplaceBeltrami operator. Such operators, however, require a parameterization of the surface, which is not available for level sets of a neural field. Mesh algorithms usually approximate these geometric operators using the geodesic neighbors of the surface point. This allows the algorithms to focus on intrinsic geometric properties that are independent of shape parameterization. However, it is not easy to obtain geodesic neighbors in a neural field since the surface of interest is encoded implicitly by a set of points that evaluate the field function to the same value. ", + "bbox": [ + 174, + 90, + 825, + 243 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We posit that computing these geometric operators in neural fields requires a fundamentally different approach. The idea is to approximate the local surface of the level set using the derivatives of the underlying field. We can evaluate intrinsic geometry properties of the level set, such as curvature, using only the field derivatives [39, 54]. This allows us to develop loss functions that describe surface priors such as elasticity or rigidity. To achieve this, we use the fact that neural fields are designed to be infinitely differentiable [66, 74]. The infinite differentiability of neural fields makes it possible to optimize loss functions that involve higher-order derivatives using gradient descent methods. Thus, unlike mesh-based geometry processing algorithms that approximate these objectives using surface discretizations, we can directly optimize in terms of the derivatives of the field. ", + "bbox": [ + 174, + 250, + 825, + 375 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our formulation provides a proof of concept that geometry processing can be done entirely using neural fields. In particular, we focus on two tasks: shape filtering (e.g., smoothing and sharpening) and topology-preserving deformations. These two tasks are not only essential for downstream applications but also bring out the known challenges associated with implicit representations. We first tackle shape sharpening and smoothing and show how these can be done by optimizing a loss function based on geometric properties computed via the neural field’s derivatives. To achieve shape deformation, we propose to warp the neural field using a deformation vector field modeled by an invertible neural network [7]. With this invertible deformation field, we derive a training objective that models the implicitly represented surfaces as elastic shells. ", + "bbox": [ + 174, + 381, + 825, + 506 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We compare our method with well-established mesh-based baselines [70, 76]. Our method can match the quality of the mesh-based counterparts without discretizing the surface. We hope that our work can inspire future generations of geometry processing algorithms using neural fields. ", + "bbox": [ + 176, + 511, + 825, + 554 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 571, + 321, + 589 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This paper builds on two bodies of work: polygon mesh geometry processing and neural field representations. We will focus on prior work on two geometry processing tasks: shape filtering and topology-preserving deformation. Please refer to Botsch et al. [11] for further reading. ", + "bbox": [ + 176, + 603, + 823, + 645 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Mesh smoothing (and sharpening). The goal of mesh smoothing is to remove high-frequency noise and produce a smooth surface. Noise removal can be achieved by Fourier analysis [76, 79] or by modeling surface motion with a diffusion equation [26]. Smoothness can be promoted by minimizing energy functionals inspired by differential operators [50, 72, 82]. Sharpening is the inverse of smoothing. In this paper, we adopt the goal of smoothing from prior work [20, 76] and design a corresponding differentiable objective for neural fields. ", + "bbox": [ + 174, + 660, + 823, + 742 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Implicit field smoothing. Implicit representations can be smoothed by evolving the level set according to its curvature normal [49, 54]. Many network architectures, such as ReLU MLP, bias toward smoothness when modeling an implicit field [61, 66, 74]. Regularization objectives and initialization schemes have been proposed to obtain smooth level sets from scanned surface points [5, 31]. These works mostly use smoothness as a prior when training neural fields. Our work formulates an objective that allows smoothing or sharpening a neural field as desired. ", + "bbox": [ + 174, + 757, + 825, + 840 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Mesh deformation. Mesh deformation is done by either deforming the shape (i.e. vertices) [9, 69] or the space [6, 36, 41, 48, 65]. These algorithms usually draw inspiration from physics and differential geometry to develop energy functions that encourage natural deformation [10, 15, 24, 70, 71, 77]. They also linearize such objectives so that they can be solved efficiently using linear solvers [9]. Recent research also applies deep learning to optimize for non-linear deformation losses [32, 34, 38, 80, 81, 83]. Deforming a mesh, however, requires estimating the deformation objectives with spatial discretization and maintaining vertex connectivity in a way that preserves topology [42]. We deform neural fields with a continuous invertible field to circumvent these issues. ", + "bbox": [ + 176, + 856, + 823, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 92, + 825, + 147 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Implicit field deformation. Prior works have studied the deformation of implicit fields for tasks like physics simulation [39, 51, 54, 55]. These works use voxels or octrees to represent implicit fields, while our paper advocates for using neural fields for deformation. There is some past work on deforming neural fields to match a target shape [12, 18, 37, 53, 58] or image [43, 57, 60] without any correspondences between the two. In contrast, we perform such deformation with very few localized user-provided correspondences, but without any other information about the target shape. Our setting is very convenient for artists, but it requires the algorithm to provide a strong surface prior due to the lack of a densely specified target state. Other prior works on editing neural fields are trained on a dataset of shapes from a particular object category [25, 29, 30, 33, 85]. Since surface priors are specified implicitly by the dataset, it is unclear how to apply these methods to out-of-distribution shapes. In contrast, our paper requires no training dataset and instead enforces priors inspired by more general physical properties such as smoothness and elasticity. Remelli et al. [62] developed a way to differentiate iso-surface extraction, which allows deforming neural fields using objectives carried over from mesh-based algorithms. Our method avoids iso-surface extraction entirely and formulates differentiable deformation objectives directly on the implicit field. ", + "bbox": [ + 173, + 162, + 825, + 371 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Computing Surface Properties of Neural Fields ", + "text_level": 1, + "bbox": [ + 174, + 391, + 599, + 409 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we will discuss how to compute surface properties using neural fields and establish notation for the following sections. Let $\\partial \\Omega$ be a surface enclosing the region $\\Omega$ . A signed distance field (SDF) for surface $\\partial \\Omega$ is defined as $d ( \\mathbf { x } ) = s ( \\mathbf { x } ) \\operatorname* { m i n } _ { \\mathbf { y } \\in \\partial \\Omega } \\bar { \\| } \\mathbf { x } - \\mathbf { y } \\bar { \\| }$ . The sign function $s ( \\mathbf { x } )$ evaluates to $- 1$ if $\\textbf { x } \\in { \\Omega }$ and 1 otherwise. We will assume that a neural field approximate an SDF whose zero-isosurface represents the surface of interest. For a neural field $f$ , we denote its zero-isosurface using $\\mathcal { M } _ { f }$ . This section summarizes how to compute surface normals and curvatures from neural fields. This is well-understood and we summarize this here for convenience [39, 54, 59]. ", + "bbox": [ + 174, + 422, + 825, + 521 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Surface normal. The surface normal is the vector perpendicular to the tangent plane and describes the local orientation of the surface. For an SDF, the outward oriented surface normal of its level set is the field gradient: $\\mathbf { n } _ { d } ( \\mathbf { x } ) = \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } )$ . It can be shown that the SDF’s gradient norm is always one: $\\lVert \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } ) \\rVert = 1$ . This property can be used to ensure that the field remains a valid SDF throughout any manipulation [4, 31]. The closest point in $\\partial \\Omega$ from $\\mathbf { x }$ can be found by $\\mathbf { x } - d ( \\mathbf { x } ) \\mathbf { n } _ { d } ( \\mathbf { x } )$ . This property can be used to sample points from the isosurface without creating a mesh [5, 13]. Finally, since the tangent plane is perpendicular to the surface normal, we can project vectors onto the tangent plane by subtracting their projection onto the normal using the following projection matrix $\\mathbf { x }$ : $\\mathbf { P } _ { d } \\mathbf { \\bar { ( x ) } } \\overset { \\mathbf { \\bar { \\alpha } } } { = } \\mathbf { I } - \\mathbf { \\bar { n _ { d } } } \\mathbf { ( x ) } \\mathbf { n } _ { d } \\mathbf { ( x ) } \\mathbf { \\breve { \\alpha } }$ . This projection matrix allows us to characterize the tangent plane. This matrix is important for measuring how much a given deformation stretches the tangent direction [35]. ", + "bbox": [ + 174, + 536, + 825, + 676 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Curvature. Intuitively, curvature describes how much a surface deviates from a plane. This can be captured by the total derivative of the surface normal, which is also known as the shape operator: $\\bar { \\mathbf { \\xi } } S _ { D } ( \\bar { \\mathbf { x } } ) = \\mathcal { D } \\bar { \\mathbf { n } _ { d } } ( \\mathbf { x } )$ . For an SDF, the normal itself is given by the derivative of the field, thus the shape operator for an SDF is the Hessian of the field function: $\\dot { H _ { d } } ( \\mathbf { x } ) = \\mathcal { D } ^ { 2 } d ( \\mathbf { x } )$ . The shape operator can be used to capture many different notions of curvature, including mean curvature (half the trace of $S _ { D } ( \\mathbf { x } )$ , denoted by $\\bar { \\kappa }$ ), Gaussian curvature (the determinant of $S _ { D } ( { \\bf x } ) _ { , }$ ), and principal curvatures (the eigenvalues of $S _ { D } ( { \\bf x } ) _ { , }$ ). We will use these to define objectives that smooth or sharpen the surface. ", + "bbox": [ + 174, + 691, + 825, + 789 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 Shape Smoothing and Sharpening ", + "text_level": 1, + "bbox": [ + 174, + 809, + 490, + 827 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we will show that shape smoothing and sharpening can be done directly on neural fields without producing meshes. In our setup, the input shape is represented as the zero-isosurface $\\mathcal { M } _ { F }$ of the neural field $F$ . The algorithm needs to output neural field $G _ { \\theta }$ whose zero-isosurface $\\mathcal { M } _ { G _ { \\theta } }$ satisfies two goals. First, $\\mathcal { M } _ { G _ { \\theta } }$ should preserve the global structure of $\\mathcal { M } _ { F }$ . Second, the surface $\\mathcal { M } _ { G _ { \\theta } }$ should make desired changes to match the curvature of shape $\\mathcal { M } _ { F }$ . ", + "bbox": [ + 174, + 842, + 825, + 911 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg", + "image_caption": [ + "Figure 2: Smoothing and sharpening results. (A) zoomed-in input; (B) our method; (C) baseline without remeshing; (D) baseline with remeshing. We can see that the baseline without remeshing finds it difficult to smooth or sharpen the mesh extracted from neural fields. Our method is able to achieve good results without discretizing the surface. " + ], + "image_footnote": [], + "bbox": [ + 178, + 88, + 823, + 290 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To achieve these goals, we first instantiate $G _ { \\theta }$ using the same architecture and parameter values as $F$ Then we optimize $G _ { \\theta }$ using the following objective: ", + "bbox": [ + 173, + 367, + 825, + 396 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/318f4b7b85ff34c65448f1858758db87fc47d86433ef6e6cdd2a92d8816934ea.jpg", + "text": "$$\n\\mathcal { L } ( \\theta ) = \\int _ { \\mathbf { x } \\in U } \\left| G _ { \\theta } ( \\mathbf { x } ) - F ( \\mathbf { x } ) \\right| ^ { 2 } + \\lambda _ { g } \\left( \\left\\| \\nabla _ { \\mathbf { x } } G _ { \\theta } ( \\mathbf { x } ) \\right\\| - 1 \\right) ^ { 2 } d \\mathbf { x } + \\int _ { \\mathbf { x } \\in V _ { \\tau } } \\lambda _ { k } \\left( \\kappa _ { G _ { \\theta } } ( \\mathbf { x } ) - \\beta \\kappa _ { F } ( \\mathbf { x } ) \\right) ^ { 2 } d \\mathbf { x } .\n$$", + "text_format": "latex", + "bbox": [ + 179, + 406, + 813, + 450 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The first integral encourages the network $G _ { \\theta }$ to preserve the original shape. The second term regularizes $G _ { \\theta }$ to remain a valid SDF by enforcing that the norm of the gradient is 1 (i.e., the Eikonal constraint [4, 31]). The integration is over the region $U$ where the original neural field $F$ is supervised over. The final term aims to smooth or sharpen the surface by increasing or decreasing the curvature $\\kappa$ . Setting $\\beta < 1$ will decrease the curvature of the output surface $\\kappa _ { G _ { \\theta } }$ , resulting in a smoother shape. $\\beta > 1$ will lead to surfaces with higher curvature details and will thus sharpen shapes. In this paper, we will use mean curvature since it’s easy to compute with neural fields: $\\kappa _ { f } ( \\mathbf { x } ) = \\mathrm { t r } \\mathcal { D } ( \\mathbf { n } _ { f } ( \\mathbf { x } ) )$ . ", + "bbox": [ + 174, + 483, + 614, + 636 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg", + "image_caption": [ + "Figure 1: L: SIREN learned to fit the SDF of a square; R: Zooming in on the surface. " + ], + "image_footnote": [], + "bbox": [ + 627, + 487, + 821, + 582 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "One challenge is that the computation of curvature can be very noisy for neural fields using periodic activations. Figure 4 shows how an ostensibly smooth isosurface learned through SIREN [66] is actually quite rough when zoomed in. The curvature evaluated on such a rough surface can be too noisy to be used for training. To alleviate this issue, we only compute the curvature regularization in areas where the curvature of the level set is less than a certain threshold $\\tau$ . Formally, we define this area as $V _ { \\tau } = \\{ \\mathbf { x } \\in U | \\operatorname* { m a x } ( | \\kappa _ { G _ { \\theta } } | , | \\kappa _ { F } | ) < \\tau \\}$ . We use rejection sampling to sample points from $V _ { \\tau }$ when computing the loss during training. ", + "bbox": [ + 173, + 642, + 825, + 739 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Results. We follow prior works [20, 76] to use Armadillo [40] and a sphere with one half of it corrupted by Gaussian noise. We compare our algorithm to two baselines. The first baseline directly applies the smoothing algorithm developed by Taubin [76] to the mesh extracted from the neural field using Marching cube [44]. The second baseline applies the filtering algorithms on meshes simplified by quadratic decimation [27]. The input neural fields are created following the procedure of Park et al. [56]. The results are shown in Figure 2. The first baseline fails to smooth or sharpen the surface appropriately. It only modifies the surface with high-frequency noise. While the second baseline can filter the surface correctly, it introduces discretization artifacts due to the decimation process. This suggests it is challenging to filter the neural field surface with mesh processing algorithms since these algorithms are sensitive to the quality of surface discretization. On the other hand, our algorithm can produce good filtering results without the need to maintain a good discretization of the surface. ", + "bbox": [ + 173, + 758, + 825, + 911 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "5 Deformation ", + "text_level": 1, + "bbox": [ + 173, + 89, + 312, + 106 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To deform a shape, the user will choose a set of deformation handles $\\{ { \\bf h } _ { i } \\} _ { i = 1 } ^ { n }$ . For each handles $\\mathbf { h } _ { i }$ , the user will specify a target location $\\mathbf { t } _ { i }$ describing where the handle will be dragged to. Users can set $\\mathbf { t } _ { i } = \\mathbf { h } _ { i }$ to enforce a part of the surface to be unchanged. Given this input, there are two goals for the shape deformation algorithm: 1) satisfying user inputs and 2) ensuring that the deformation resembles the natural behavior of real objects. The input shape will be represented by the zero-isosurface of a neural field $F$ in our setting. The algorithm must therefore output a neural field $G _ { \\theta }$ whose zero-isosurface represents the deformed shape that satisfies the aforementioned two goals. ", + "bbox": [ + 173, + 119, + 826, + 218 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this setting, deformation can be formulated as solving a constrained optimization problem: ", + "bbox": [ + 171, + 223, + 784, + 238 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d2141fab6172c932163522b1a6abc7db12b2a399d6dea33ec0fdf70bc739ed9e.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\theta } \\ \\mathcal { L } _ { d f m } ( G _ { \\theta } , F ) \\quad \\mathrm { s . t . } \\ \\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0 , 1 \\leq i \\leq n ,\n$$", + "text_format": "latex", + "bbox": [ + 299, + 244, + 694, + 267 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where the objective $\\mathcal { L } _ { d f m } ( G _ { \\theta } , F )$ measures how natural the deformation is. The constraints $\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0$ ensure that the result deformation matches user input. ", + "bbox": [ + 173, + 275, + 826, + 304 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "One way to ensure a natural-looking deformation is to assume that the surface behaves like a thin elastic shell, which is resistant to stretching and bending [1, 70]. Traditional mesh-based algorithms model elasticity by minimizing the thin shell energy that penalizes stretching or bending happened to any local patch. Naively adapting such training objectives from mesh-based algorithms to neural fields is challenging because these algorithms assume dense correspondences between two surfaces and efficient access to geodesic neighbors. ", + "bbox": [ + 174, + 309, + 825, + 393 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section, we will address these challenges by following strategy. To measure how much bending or stretching happened to the whole surface, we will first divide the surface into infinitesimal patches and then sum the amount of bending or stretching that happened to each patch. To achieve that, we first develop a sampling schema to sample these infinitesimal patches uniformly from the input shapes (Sec 5.1). Then we warp the input shape with an invertible neural network to achieve correspondences between the input and output surfaces (Sec 5.2). Finally, we derive ways that measure the amount of bending and stretching between two infinitesimal surface patches (Sec 5.3). ", + "bbox": [ + 173, + 398, + 825, + 497 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5.1 Sampling ", + "text_level": 1, + "bbox": [ + 174, + 512, + 279, + 529 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our first step is to sample infinitesimal surface patches uniformly to the surface area from the zero-isosurface of the neural field. Each infinitesimal surface patch can be represented by a surface point and its local derivatives. With this said, the problem amounts to sampling points from the zero-isosurface. Formally, we are given a neural field $F$ that approximates the signed distance field of the input shape. The goal is to find a way to sample an arbitrary number of points on its zero-isosurface $\\mathcal { M } _ { F }$ . One way to sample points from $\\mathcal { M } _ { F }$ is to run Langevin dynamics using the gradient of the field $F$ [5, 13]: $\\mathbf { x } _ { t + 1 } \\overset { \\cdot } { = } \\tilde { \\mathbf { x } } _ { t } - F ( \\tilde { \\mathbf { x } } _ { t } ) n _ { F } ( \\tilde { \\mathbf { x } } _ { t } )$ , $\\tilde { \\mathbf { x } } _ { t } \\sim \\mathcal { N } ( \\mathbf { x } _ { t } , \\sigma \\mathbf { I } )$ . $\\mathbf { x } _ { \\mathrm { 0 } }$ are initialized by sampling uniformly within $[ - 1 , 1 ] ^ { 3 }$ . Here we also leverage an SDF property: the closest surface point to $\\mathbf { x }$ can be computed by ${ \\bf x } - { \\bf n } ( { \\bf x } ) F ( { \\bf x } )$ (Sec 3). While this process produces points guaranteed to be on the zero-isosurface, the mixing time of the procedure is very long without appropriate coarse-to-fine annealing [68]. Running this process for limited iterations results in point samples that are concentrating near the high curvature area, as shown on the left side of Figure 5.1. ", + "bbox": [ + 174, + 537, + 550, + 676 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg", + "image_caption": [ + "Figure 3: Sampling from dino. L: no rejection; R: ours (with rejection). " + ], + "image_footnote": [], + "bbox": [ + 562, + 541, + 823, + 633 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 676, + 825, + 761 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To alleviate this issue, we instantiate the sampling procedure with $\\mathbf { x } _ { \\mathrm { 0 } }$ sampled from a rough shape. This can be done by first sampling uniformly from the bounded space and rejecting points that are too far away from the isosurface: $\\mathbf { x } _ { 0 } \\sim \\{ \\mathbf { x } \\in U ( - 1 , 1 ) | F ( \\mathbf { x } ) < \\tau _ { s } \\}$ . We found that $\\tau _ { s }$ can be set to a relatively large number (e.g., about 0.1). This prevents high rejection rates without sacrificing sampling quality. Figure 5.1 shows that our method creates uniform samples. ", + "bbox": [ + 173, + 766, + 825, + 835 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We quantitatively evaluate the effectiveness of the sampling scheme. Specifically, we compare our sampling scheme with directly applying Langevin dynamics [13] ( $L D$ in Table 1). To do that, we compute the Chamfer Distance (CD) and Earth Mover Distance (EMD) between points sampled by the valuated algorithms and points sampled uniformly from the extracted mesh. For both metrics, lower values indicate better performance Since larger surfaces can lead to larger CD and EMD values, we normalize the metrics by the values obtained by comparing two sets of uniform samples from the mesh (i.e., CDr and EMDr) The results show that initializing $\\mathbf { x } _ { \\mathrm { 0 } }$ by rejection sampling significantly improves both CD and EMD compared to naively applying Langevin dynamics, at a minor cost in sampling time. ", + "bbox": [ + 174, + 842, + 825, + 911 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 147 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.2 Invertible Deformation Field ", + "text_level": 1, + "bbox": [ + 174, + 167, + 413, + 183 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "After we obtained surface points samples from zero isosurfaces of the input neural fields, the next step is to deform these surface points to the output shapes. One way to deform neural fields is to warp the coordinate space of the input network using a deformation field predicted by a neural network $D _ { \\theta }$ [25, 43, 57]. Under this framework, the output network can be defined as $G _ { \\theta } ( \\mathbf { x } ) = F ( D _ { \\theta } ( \\mathbf { x } ) )$ . Then the constraint $\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } )$ can be defined as $\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } ) = \\| D _ { \\theta } ( \\mathbf { t } ) - \\mathbf { h } \\|$ . ", + "bbox": [ + 174, + 195, + 550, + 321 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/1e60e5f175445785ae5b7f05d14eca9ff4503fbba92a5039188753eade047450.jpg", + "table_caption": [ + "Table 1: Our sampling method achieves better results than the baseline. " + ], + "table_footnote": [], + "table_body": "
Dino Armadillo
MetricsLDOursLDOurs
CDr (↓)1.541.041.361.02
EMDr (↓)3.381.153.301.08
Time0.150.210.120.18
", + "bbox": [ + 562, + 226, + 828, + 319 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Ideally, we would like the deformation $D _ { \\theta }$ to be continuous and invertible. This will allow us to create well-behaved one-to-one correspondences between points on the deform shape (i.e., x) and points on the input shape (i.e., $D _ { \\theta } ( \\mathbf { x } ) )$ . To achieve this, we make $D _ { \\theta }$ to be an invertible network composed of a sequence of invertible residual blocks [7]. ", + "bbox": [ + 174, + 325, + 825, + 382 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Invertible residual block. Prior works [7, 17] have shown that a sufficient condition for the residual block $f ( x ) = x + g ( x )$ to be invertible is that the Lipschitz constant of function $g$ is less than 1. The architecture of the network $g ( x )$ is usually composed of spectral normalized linear layers and Lipschitz continuous nonlinearities such as ELU [21]. The inverse of such residual block can be computed by finding the fixed point of function $y \\mapsto y - g ( x )$ [7]. Intuitively, deforming using one invertible residual block amounts to moving point $x$ with deformation vector $g ( x )$ . ", + "bbox": [ + 173, + 401, + 825, + 486 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Lipschitz continuous positional encoding. Applying such architecture directly without modification fails to produce deformations with many different local rotations. Recent research suggests that periodic functions are essential for coordinate MLPs to predict complex signals [47, 66, 74]. Periodic functions are usually used as positional encoding or activations of the form $\\sin ( a x + b )$ , where $a$ controls the frequency of the activation. To use such periodic function as part of the invertible residual block without restricting the frequency, we normalize the output of the periodic function $\\sin ( a x + b ) | a | ^ { - 1 }$ , bringing it is Lipschitz constant below 1. Formally, the positional encoding with normalized Lipschitz constant applied to one dimension is ", + "bbox": [ + 173, + 505, + 826, + 616 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/115f0ef27b3ae276645a06d8c15371d771109c767a72d8ffc95998a6ec1d55db.jpg", + "text": "$$\n\\gamma _ { i } ( { \\bf x } ) = \\frac { 1 } { \\sqrt { 2 L + 1 } } \\left( x _ { i } , \\frac { \\cos ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\frac { \\sin ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\ldots , \\frac { \\cos ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } , \\frac { \\sin ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 214, + 626, + 784, + 662 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We will apply such encoding to each of the dimensions of the input coordinate for the body of the invertible residual block: $\\begin{array} { r } { \\bar { R _ { \\theta } } ( \\mathbf { x } ) = \\mathbf { x } + g _ { \\theta } \\left( \\frac { 1 } { \\sqrt { d } } [ \\gamma _ { 1 } \\left( \\mathbf { x } \\right) , \\mathbf { \\Omega } , \\mathbf { \\Omega } . . . , \\gamma _ { d } \\left( \\mathbf { \\bar { x } } \\right) ] \\right) } \\end{array}$ . ", + "bbox": [ + 173, + 671, + 825, + 710 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Ablation. We conduct ablation studies on two architecture choices: invertibility and positional encoding. In this experiment, we deform a neural field representing the SDF of a 2D rectangle. We optimize each ablation case to satisfies the user specified constraints with following loss: $\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left\\| D _ { \\theta } ( \\mathbf { h } _ { i } ) - \\mathbf { t } _ { i } \\right\\| ^ { 2 } } \\end{array}$ . The results are shown in Figure 4. If we replace the invertible architecture with SIREN as done in Deng et al. [25], the deformation field will tend to break topology (No inverse). Removing the positional encoding will fail to create a complex field (No $P E _ { \\mathrm { { \\ell } } }$ ). Our architecture can create a reasonable guess (No loss). This shows that our network architecture prioritizes natural deformation that preserves topology. ", + "bbox": [ + 174, + 729, + 549, + 911 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg", + "image_caption": [ + "Figure 4: Architecture ablation on 2D SDF deformation. Blue points are handles; Red points are targets. " + ], + "image_footnote": [], + "bbox": [ + 562, + 732, + 808, + 818 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.3 Implicit Thin Shell Loss ", + "text_level": 1, + "bbox": [ + 174, + 90, + 380, + 106 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "At this point, we have obtained the correspondences $\\mathbf { y } = D _ { \\theta } ( \\mathbf { x } )$ , with $\\mathbf { x }$ in the output (or deformed) space and y in the input space. Our next step is to design $\\mathcal { L } _ { d f m }$ that compares these corresponding patches to ensure natural deformation. Recall that one way to ensure a natural-looking deformation is to minimize the amount the resistance to bending or stretching that happened during the deformation [1, 70]. We will develop novel loss functions for measuring stretching and bending. Please refer to the supplement for the connection between our loss and the thin shell energy. ", + "bbox": [ + 173, + 116, + 826, + 200 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3.1 Stretching Loss ", + "text_level": 1, + "bbox": [ + 174, + 214, + 333, + 229 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Stretching can be captured by the change of dot product in tangent space. Intuitively, a local surface patch is stretched when the lengths of some tangent vectors change. The change of tangent vectors’ norm can be measured by the tangent dot-product. With this said, the amount of stretch can be measured by the change of tangent dot product. ", + "bbox": [ + 174, + 237, + 825, + 294 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Note that we do not have access to analytical surface parameterization, so we need to express the tangent dot product with neural fields and its derivative. We can describe the tangent dot product to the spatial dot product using the projection matrix. The tangent vector of $\\mathbf { x }$ can be parameterized by projecting a vector $\\mathbf { v }$ to the tangent space. To achieve that, we need to multiply $\\mathbf { v }$ with the projection matrix $\\bar { \\mathbf { P } _ { G _ { \\theta } } } ( \\mathbf { x } ) = \\mathbf { I } - \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { n } } _ { G _ { \\theta } } ( \\mathbf { \\bar { x } } ) ^ { T }$ , where $\\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } )$ is the surface normal of point $\\mathbf { x }$ . $\\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v }$ is a tangent vector in the tangent plane of $\\mathbf { x }$ . ", + "bbox": [ + 173, + 299, + 825, + 383 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Now we are ready to compute the change of tangent dot-product. Let $\\mathbf { t } _ { i }$ and $\\mathbf { t } _ { j }$ be two arbitrary tangent vectors near point $\\mathbf { x }$ at the deformed shape. Further assume that these vectors can be parameterized as $\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }$ and $\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 }$ . These tangent vector will be transformed by $D _ { \\theta }$ into $\\mathbf { t } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }$ and $\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { \\bar { x } } ) \\mathbf { t } _ { j }$ . These are tangent vectors at point $\\mathbf { y }$ at the input shape. The change of tangent dot-product with respect to these two vectors can be computed as follows: ", + "bbox": [ + 173, + 388, + 825, + 459 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/55ae1d4778cf1a5b605b4f6ba8167ec34cdc7a7d659dad5a3652492fa3cd586b.jpg", + "text": "$$\n\\begin{array} { r } { \\vert \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\vert = \\vert \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\right) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 } \\vert . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 271, + 465, + 725, + 486 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To minimize the stretch, we need to enforce that dot-product stays the same for all tangent vectors. This can be done by minimize the matrix norm of $\\mathbf { \\dot { P } } _ { G _ { \\theta } } ^ { T } \\bigl ( \\mathbf { I } - \\mathbf { \\dot { J } } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\bigr ) \\mathbf { P } _ { G _ { \\theta } }$ . Here, we drop the function arguments $\\mathbf { x }$ for the matrix for notation clarity. With these, we define the the stretch loss as: ", + "bbox": [ + 173, + 491, + 826, + 534 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/17478aacfa0825c24d4efefdcc10b097ca24f3d4fdf4bc8e89046ebe7f0b15a8.jpg", + "text": "$$\n\\mathcal { L } _ { s } ( G _ { \\theta } ) = \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\left. \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right. _ { F } ^ { 2 } d \\mathbf { x } .\n$$", + "text_format": "latex", + "bbox": [ + 320, + 537, + 676, + 575 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3.2 Bending Loss ", + "text_level": 1, + "bbox": [ + 173, + 587, + 320, + 603 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Bending can be characterized by the change of surface curvature (e.g., making the surface more or less curved). Intuitively, curvature can be described as the change of tangent dot product along the surface normal direction [16, 59]. Let $\\mathbf { t } _ { 1 } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }$ and $\\mathbf { t } _ { 2 } = \\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { v } } _ { 2 }$ be two tangent vectors at $\\mathbf { x }$ . Consider the tangent dot product of the surface family $\\mathbf { x } + t \\mathbf { n } ( \\mathbf { x } )$ . Note that this set of surface corresponding to the level sets ${ \\bf \\dot { \\{ p \\vert } } G _ { \\theta } ( { \\bf p } ) = t \\}$ if $G _ { \\theta }$ is approximating an SDF [54]. Then the change of dot product along the surface normal direction can be given by Hessian and directional derivative: $\\begin{array} { r } { \\frac { d } { d t } \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } \\mathbf { \\bar { \\Psi } } _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { T } \\bar { H _ { G _ { \\theta } } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } } \\end{array}$ . Intuitively, the larger this value is, the faster the surface changes whenmal direction, which means the surface has larger curvature. ", + "bbox": [ + 173, + 611, + 825, + 724 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Measuring bending amounts to measure the change of tangent dot-product derivative along the surface normal direction. Similar to the previous section, assume we have tangent vectors $\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { i }$ and $\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { j }$ . These tangent vectors are are transformed by the Jacobian of the deformation field $\\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } )$ to $\\dot { \\mathbf { t } } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }$ and $\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { j }$ . Since $\\mathbf { t } _ { i } ^ { \\prime }$ and $\\mathbf { t } _ { j } ^ { \\prime }$ are tangent vectors at point $\\mathbf { y }$ on the surface $\\mathcal { M } _ { F }$ , the derivative of tangent dot-product is given by the hessian matrix of field $F$ $: \\mathbf { \\Gamma } _ { d t } ^ { d } \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } | _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { \\prime T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { t } _ { 2 } ^ { \\prime } = \\mathbf { t } _ { 1 } ^ { T } \\mathbf { J } _ { D _ { \\theta } } ^ { T } ( \\mathbf { x } ) H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } .$ . We will drop the function argument to $\\mathbf { J } _ { D _ { \\theta } }$ , $H _ { G _ { \\theta } }$ , and $\\mathbf { P } _ { G _ { \\theta } }$ for notation clarity. The change of tangent dot-product derivative is: ", + "bbox": [ + 173, + 729, + 825, + 829 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/be54971a5a60e73bdcd5debb0fd63cc7fee4f4a5f165a9cbfea5a89a4ff84aef.jpg", + "text": "$$\n\\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| = \\left| \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\mathbf { v } _ { 2 } \\right| .\n$$", + "text_format": "latex", + "bbox": [ + 243, + 834, + 753, + 869 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "If there is almost no bending happened between the infinitesimal patches around $\\mathbf { x }$ and $\\mathbf { y }$ , then the quantity $\\begin{array} { r } { \\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\bar { \\mathbf { t } } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| } \\end{array} \\qquad = 0 .$ should stay close to 0 for all pairs of tangent vectors. We will ", + "bbox": [ + 173, + 881, + 825, + 914 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "quantify this by the matrix norm of ${ \\bf P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - { \\bf J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( { \\bf x } ) ) { \\bf J } _ { D _ { \\theta } } \\right) { \\bf P } _ { G _ { \\theta } }$ . Finally, we arrive at our bending loss, which minimizes the norm of the matrix that modulate the change of tangent dot-product derivatives moving along the surface normal direction: ", + "bbox": [ + 174, + 89, + 825, + 133 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/4c7abbcefd81e5539f2afe9b7ebd263d1d3dd8f74fe71abb5984c212b541028f.jpg", + "text": "$$\n\\mathcal { L } _ { b } ( G _ { \\theta } ) = \\int _ { x \\in \\mathcal { M } _ { G _ { \\theta } } } \\left\\| \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right\\| _ { F } ^ { s } d \\mathbf { x } .\n$$", + "text_format": "latex", + "bbox": [ + 269, + 133, + 728, + 170 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3.3 Computing $\\mathcal { L } _ { s }$ and $\\mathcal { L } _ { b }$ ", + "text_level": 1, + "bbox": [ + 174, + 178, + 379, + 193 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Computing $\\mathcal { L } _ { s }$ and $\\mathcal { L } _ { b }$ during training requires approximating a surface integral of the form $\\begin{array} { r } { \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\bar { \\mathcal { L } } ( \\mathbf { x } ) d \\mathbf { x } } \\end{array}$ using Monte Carlo integration, which requires an efficient way to sample points θuniformly from surface $\\mathcal { M } _ { G _ { \\theta } }$ . While it is feasible to sample uniformly from an SDF, this is challenging to do with $G _ { \\theta }$ since there is no guarantee that $G _ { \\theta }$ remains a valid SDF during the course of training. Thanks to the invertibility of $D _ { \\theta }$ , we can apply change of variable $\\mathbf { x } = D _ { \\theta } ^ { - 1 } ( \\mathbf { y } )$ to the integration, where $\\mathbf { y }$ are points on the input surface $\\mathcal { M } _ { F }$ : ", + "bbox": [ + 173, + 200, + 825, + 290 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/e2899c8e60314aa5d0d262add3c4d68fbf158450ae273c1e944f406c27384e93.jpg", + "text": "$$\n\\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\mathcal { L } ( \\mathbf { x } ) d \\mathbf { x } = \\int _ { \\mathbf { y } \\in \\mathcal { M } _ { F } } \\mathcal { L } ( \\mathbf { x } ) \\left| \\operatorname* { d e t } \\left( \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) + \\mathbf { n } _ { F } ( \\mathbf { y } ) \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\right) \\right| ^ { - 2 } d \\mathbf { y } .\n$$", + "text_format": "latex", + "bbox": [ + 222, + 291, + 776, + 327 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "$\\mathbf { J } _ { D _ { \\theta } } \\mathbf { P } _ { G _ { \\theta } } \\in \\mathbb { R } ^ { 3 \\times 3 }$ maps tangent vector from $\\mathcal { M } _ { G _ { \\theta } }$ to $\\mathcal { M } _ { F }$ . We apply the extension trick from Iglesias et al. [35] to create a matrix whose determinant equals the change of surface area. This is achieved by adding the surface normal component $\\mathbf { n } _ { F } \\mathbf { n } _ { G } ^ { T }$ and keeping it unchanged. With this change of variable, we now can compute the losses with point samples from the input field $F$ . Since the input field $F$ approximates an SDF, we can use the method introduced in Section 5.1 to sample uniform points. ", + "bbox": [ + 173, + 329, + 825, + 400 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.4 Optimization ", + "text_level": 1, + "bbox": [ + 173, + 414, + 305, + 429 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Putting the losses together, we deform a neural field by solving the constrained optimization problem ", + "bbox": [ + 176, + 439, + 823, + 454 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/bc7131e80976def89d777867f865510168603474709b0e2f96c867263c85bc6b.jpg", + "text": "$$\n\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\lambda _ { s } \\mathcal { L } _ { s } ( G _ { \\theta } ) + \\lambda _ { b } \\mathcal { L } _ { b } ( G _ { \\theta } ) , \\quad \\mathrm { s . t . } \\forall 1 \\leq i \\leq n , \\ \\| D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\| = 0\n$$", + "text_format": "latex", + "bbox": [ + 258, + 455, + 736, + 479 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where $\\lambda _ { s } , \\lambda _ { b }$ are hyperparameters that determine the material properties. One way to solve this constrained optimization problem for a neural network is to make the constraints a soft loss adding to the objective function: $\\begin{array} { r } { \\dot { \\mathcal { L } } _ { c o n s t } ^ { { \\bf \\Delta } } ( D _ { \\theta } ) = \\frac { 1 } { n } \\sum _ { 1 = 1 } ^ { n } \\left. D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\right. } \\end{array}$ . Our final objective is: ", + "bbox": [ + 174, + 481, + 825, + 523 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We set $\\lambda _ { c }$ to be a high value to enforce that the model satisfies user-specified input as much as possible. The user can tune $\\lambda _ { b }$ and $\\lambda _ { s }$ depending on the application scenario. We optimize $\\mathcal { L } ( \\boldsymbol { \\theta } )$ with Adam optimizer to obtain the output field $G _ { \\theta }$ . Hyperparameters are provided in the supplement. ", + "bbox": [ + 173, + 545, + 825, + 587 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 Deformation Results ", + "text_level": 1, + "bbox": [ + 174, + 604, + 377, + 621 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this section, we will demonstrate the results of our methods to shape deformation. The shapes for deformation are taken from Sorkine-Hornung and Alexa [70]. To create neural fields from these meshes, we follow the procedure of Park et al. [56] to compute ground-truth SDF for locations sampled within $[ - 1 , 1 ] ^ { 3 }$ . We then fit a SIREN [66] to the ground-truth SDF to generate our initial neural fields. Our main baseline is ARAP [70, 86]. The simplest way to use ARAP to edit neural fields is applying it on a mesh extracted from the input neural fields using marching cubes [44, 45]. We first present results comparing with ARAP applied to the extracted mesh. Then we will conduct an analysis to show our losses encourage the right behaviors. ", + "bbox": [ + 173, + 633, + 825, + 746 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Comparing to ARAP baseline. We follow ARAP [70] to create a set of basic shape deformation operations to evaluate our algorithm. In this setting, the user will first specify a set of handles used for manipulation (shown in Figure 5 in blue). In general, the user can apply three basic types of operation on a handle: 1) make it static (i.e., no deformation), 2) translate it, or 3) rotate it around a center. Usually, the first operation is used in combination with the latter two to produce useful deformation. We first show how our algorithm deforms simple objects (e.g., a cylinder and a rectangle bar) when the user rotates or translates one end while fixing the other. We then extend this set of operations to shapes with more detail (e.g., Cactus, Armadillo, and Dino). Finally, we test our algorithms when all three operations are specified together on a single shape. The results are shown in Figure 5. We can see that applying ARAP directly on the extracted mesh creates undesirable volume distortion. Our algorithm is able to produce deformation results that are natural while satisfying the user’s intention. ", + "bbox": [ + 173, + 758, + 825, + 911 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg", + "image_caption": [ + "Figure 5: Deformation results. (A) Input shape. (B) Baseline. (C) Ours. Red points are user specified handles $\\mathbf { h } _ { i }$ . Blue points denote user specified target points $\\mathbf { t } _ { i }$ . First row: single rotation or translation on simple shapes. Second and third rows: single rotation or translation on more complex objects. Fourth row: multiple edits on complex objects. " + ], + "image_footnote": [], + "bbox": [ + 173, + 92, + 823, + 549 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Comparing to different ARAP variants. This artifact is partially due to the surface discretization made by the marching cubed algorithm doesn’t agree with the assumptions made by ARAP [41]. To verify this hypothesis, we also include three additional baselines in Figure 6. First, we show the results of applying ARAP on the low-poly mesh used to create the input neural fields (Original). Second, we first apply Garland and Heckbert [28] to simplify the surface of the extracted mesh before applying ARAP to it (Remeshed). Finally, we also compare to the results of SR-ARAP [41], which adds smoothness regularization to ARAP to remove some unnatural distortion (SR-ARAP). The figure shows that ARAP works much better when the surface is discretized appropriately. Discretizing the surface, however, usually requires case-by-case manual adjustment to perform well. Our algorithm does not suffer from such issues as we optimize the thin shell objective directly without committing to a particular discretization of the surface. ", + "bbox": [ + 174, + 631, + 825, + 784 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Loss analysis. Here we provide an experiment to analyze the behavior of stretching loss and bending loss. Specifically, we compare models optimized for only the stretching loss $\\mathcal { L } _ { s }$ , only the bending loss $\\mathcal { L } _ { b }$ , and both losses together. Similar to Section 5.2, we deform a neural field that approximates the SDF of a 2D rectangle. The results are shown in Figure 7. Optimizing only for $\\mathcal { L } _ { s }$ produces a shape that best preserves surface area (or the perimeter in the 2D case), which explains the wiggling. Optimizing only for $\\mathcal { L } _ { b }$ produces a shape that tries to prevent wiggling of the surface, which changes the curvature of the surface. The user can choose appropriate $\\lambda _ { s }$ and $\\lambda _ { b }$ to produce deformation with resistance to both bending and stretching. ", + "bbox": [ + 174, + 800, + 825, + 911 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg", + "image_caption": [ + "Figure 6: Additional ARAP baselines. Directly applying ARAP to extracted mesh produces poor results (i.e., MC). While this can be alleviated by remshing (i.e. Original or Remeshed) or regularization (i.e. SR-ARAP), this shows mesh deformation algorithms can be sensitive to discretization quality. Our method do not discretize the surface, thus circumvent such issue. Red points are handles; Blue points are targets. " + ], + "image_footnote": [], + "bbox": [ + 196, + 85, + 799, + 208 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "7 Discussion, Limitations, and Future work ", + "text_level": 1, + "bbox": [ + 174, + 308, + 550, + 325 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Advantages of using neural fields for geometry processing. The main strength of using neural fields for geometry processing is that one can disentangle the processing algorithm from the surface discretization. Users do not need to worry about discretization while manipulating a shape represented in neural fields. This might open the door to more automatic geometry processing pipelines. Additionally, neural fields are modular and can be combined with other neural networks. Neural fields can be easily incorporated into current deep learning pipelines. This makes them well-suited for data-driven applications. ", + "bbox": [ + 174, + 339, + 550, + 491 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg", + "image_caption": [ + "Figure 7: Analysis of stretching and bending losses. Blue points are handles; Red points are targets. " + ], + "image_footnote": [], + "bbox": [ + 575, + 348, + 808, + 433 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Limitations and future directions. The main limitation of our method is the slow optimization speed that hinders interactive editing. Typically, ARAP can solve each of such deformation problems within half an hour for large meshes, and it can achieve interactive speed for meshes with a small number of triangles. The Taubin smoothing can finish in a couple of seconds. Our deformation method right now requires a TitanX GPU with 12GB memory to train for 10 hours. Our smoothing and sharpening method takes about 10 minutes on the same GPU. The current algorithm does not ensure that the output field remains an SDF, which prevents performing multiple editing operations. ", + "bbox": [ + 173, + 500, + 825, + 597 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We believe many of these limitations can be addressed in future work. One can potentially use techniques like progressive training or meta-learning [67, 75] to improve the training speed. To allow consecutive editing, we can design regularization loss that enforces the output fields to approximate an SDF [4] or design sampling methods robust with noisy SDF. Other interesting directions include providing deeper theoretical analysis and applying neural fields in other geometry processing tasks. ", + "bbox": [ + 174, + 603, + 825, + 672 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Societal impact. Our work can lead to more efficient geometry processing algorithms. Such algorithms can empower artists to generate creative content. Potential negative impact includes misuse of geometry processing algorithms to create offensive content. ", + "bbox": [ + 176, + 681, + 823, + 723 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "8 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 742, + 299, + 760 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Our work provides a proof of concept that geometry processing can be done entirely with neural fields without discretizing the surface. We develop network architectures and training objectives for filtering and deforming shapes represented by neural fields and demonstrate the advantages of using neural fields for geometry processing. We hope that our work can inspire a new generation of geometry processing algorithms using neural fields. ", + "bbox": [ + 174, + 773, + 825, + 843 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgement. Guandao’s PhD was supported in part by a research gift from Magic Leap and a donation from NVIDIA. We want to thank Wenqi Xian, Professor Steve Marschner, and members of Intel Labs for providing insightful feedback for this project. ", + "bbox": [ + 174, + 852, + 821, + 893 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "References [1] M. Alexa, D. Cohen-Or, and D. Levin. As-rigid-as-possible shape interpolation. Proceedings of the 27th annual conference on Computer graphics and interactive techniques, 2000. 5, 7 [2] Pierre Alliez, Mark Meyer, and Mathieu Desbrun. Interactive geometry remeshing. ACM Transactions on Graphics (TOG), 21(3):347–354, 2002. 1 [3] Pierre Alliez, David Cohen-Steiner, Olivier Devillers, Bruno Lévy, and Mathieu Desbrun. Anisotropic polygonal remeshing. ACM SIGGRAPH 2003 Papers, 2003. 1 [4] Matan Atzmon and Y. Lipman. Sal: Sign agnostic learning of shapes from raw data. 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 2562–2571, \n2020. 3, 4, 10 [5] Matan Atzmon, Niv Haim, Lior Yariv, Ofer Israelov, Haggai Maron, and Y. Lipman. Controlling neural level sets. In NeurIPS, 2019. 2, 3, 5 [6] D. Bechmann. Space deformation models survey. Comput. Graph., 18:571–586, 1994. 2 [7] Jens Behrmann, D. Duvenaud, and J. Jacobsen. Invertible residual networks. In ICML, 2019. 2, \n6 [8] J. Bloomenthal and B. Wyvill. Introduction to implicit surfaces. 1997. 1 [9] Mario Botsch and O. Sorkine-Hornung. On linear variational surface deformation methods. IEEE Transactions on Visualization and Computer Graphics, 14:213–230, 2008. 2, 3 [10] Mario Botsch, Mark Pauly, Markus H. Gross, and Leif P. Kobbelt. Primo: coupled prisms for intuitive surface modeling. In SGP ’06, 2006. 2 [11] Mario Botsch, Leif Kobbelt, Mark Pauly, Pierre Alliez, and Bruno Lévy. Polygon mesh processing. CRC press, 2010. 1, 2 [12] Aljavz Bovzivc, Pablo Rodríguez Palafox, Michael Zollhofer, Justus Thies, Angela Dai, and Matthias Nießner. Neural deformation graphs for globally-consistent non-rigid reconstruction. ArXiv, abs/2012.01451, 2020. 3 [13] Ruojin Cai, Guandao Yang, Hadar Averbuch-Elor, Zekun Hao, Serge Belongie, Noah Snavely, and Bharath Hariharan. Learning gradient fields for shape generation. In Proceedings of the European Conference on Computer Vision (ECCV), 2020. 3, 5 [14] Edwin Catmull. A system for computer generated movies. In Proceedings of the ACM annual conference-Volume 1, pages 422–431, 1972. 1 [15] Isaac Chao, Ulrich Pinkall, Patrick Sanan, and Peter Schröder. A simple geometric model for elastic deformations. In SIGGRAPH 2010, 2010. 2 [16] Hunter Chase. Fundamental forms of surfaces and the gauss-bonnet theorem. 2012. 7 [17] Ricky T. Q. Chen, Jens Behrmann, D. Duvenaud, and J. Jacobsen. Residual flows for invertible generative modeling. ArXiv, abs/1906.02735, 2019. 6 [18] Xu Chen, Yufeng Zheng, M. Black, Otmar Hilliges, and Andreas Geiger. Snarf: Differentiable forward skinning for animating non-rigid neural implicit shapes. ArXiv, abs/2104.03953, 2021. \n3 [19] Zhiqin Chen and Hao Zhang. Learning implicit fields for generative shape modeling. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages \n5939–5948, 2019. 1 [20] Ming Chuang and M. Kazhdan. Interactive and anisotropic geometry processing using the screened poisson equation. ACM SIGGRAPH 2011 papers, 2011. 2, 4 [21] Djork-Arné Clevert, Thomas Unterthiner, and S. Hochreiter. Fast and accurate deep network learning by exponential linear units (elus). arXiv: Learning, 2016. 6 \n[22] B. Curless and M. Levoy. A volumetric method for building complex models from range images. Proceedings of the 23rd annual conference on Computer graphics and interactive techniques, 1996. 1 \n[23] T. Davies, Derek Nowrouzezahrai, and A. Jacobson. On the effectiveness of weight-encoded neural implicit 3d shapes. 2020. 1 \n[24] A. de Boer, Martijn van der Schoot, and Hester Bijl. Mesh deformation based on radial basis function interpolation. Computers & Structures, 85:784–795, 2007. 2 \n[25] Yu Deng, J. Yang, and Xin Tong. Deformed implicit field: Modeling 3d shapes with learned dense correspondence. 2021. 3, 6 \n[26] Mathieu Desbrun, M. Meyer, P. Schröder, and A. Barr. Implicit fairing of irregular meshes using diffusion and curvature flow. In SIGGRAPH ’99, 1999. 2 \n[27] Michael Garland and Paul S. Heckbert. Surface simplification using quadric error metrics. Proceedings of the 24th annual conference on Computer graphics and interactive techniques, 1997. 4 \n[28] Michael Garland and Paul S Heckbert. Surface simplification using quadric error metrics. In Proceedings of the 24th annual conference on Computer graphics and interactive techniques, pages 209–216, 1997. 9 \n[29] Kyle Genova, Forrester Cole, Daniel Vlasic, Aaron Sarna, William T Freeman, and Thomas Funkhouser. Learning shape templates with structured implicit functions. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 7154–7164, 2019. 3 \n[30] Kyle Genova, Forrester Cole, Avneesh Sud, Aaron Sarna, and Thomas Funkhouser. Local deep implicit functions for 3d shape. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 4857–4866, 2020. 3 \n[31] Amos Gropp, Lior Yariv, Niv Haim, Matan Atzmon, and Y. Lipman. Implicit geometric regularization for learning shapes. In ICML, 2020. 2, 3, 4 \n[32] Kunal Gupta and Manmohan Chandraker. Neural mesh flow: 3d manifold mesh generationvia diffeomorphic flows. ArXiv, abs/2007.10973, 2020. 3 \n[33] Zekun Hao, Hadar Averbuch-Elor, Noah Snavely, and Serge J. Belongie. Dualsdf: Semantic shape manipulation using a two-level representation. pages 7628–7638, 2020. 3 \n[34] Jingwei Huang, C. Jiang, Baiqiang Leng, Bin Wang, and L. Guibas. Meshode: A robust and scalable framework for mesh deformation. ArXiv, abs/2005.11617, 2020. 3 \n[35] José A. Iglesias, M. Rumpf, and O. Scherzer. Shape-aware matching of implicit surfaces based on thin shell energies. Foundations of Computational Mathematics (New York, N.y.), 18:891 – 927, 2018. 3, 8 \n[36] A. Jacobson, I. Baran, Jovan Popovic, and O. Sorkine-Hornung. Bounded biharmonic weights for real-time deformation. Communications of the ACM, 57:99 – 106, 2014. 2 \n[37] Timothy Jeruzalski, Boyang Deng, Mohammad Norouzi, J. P. Lewis, G. Hinton, and Andrea Tagliasacchi. Nasa: Neural articulated shape approximation. In ECCV, 2020. 3 \n[38] Chiyu Max Jiang, Jingwei Huang, Andrea Tagliasacchi, and Leonidas J. Guibas. Shapeflow: Learnable deformation flows among 3d shapes. In NeurIPS, 2020. 3 \n[39] M. W. Jones, J. A. Bærentzen, and M. Srámek. 3d distance fields: a survey of techniques and applications. IEEE Transactions on Visualization and Computer Graphics, 12:581–599, 2006. 1, 2, 3 \n[40] Venkat Krishnamurthy and M. Levoy. Fitting smooth surfaces to dense polygon meshes. Proceedings of the 23rd annual conference on Computer graphics and interactive techniques, 1996. 4 ", + "bbox": [ + 171, + 77, + 828, + 925 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 59, + 828, + 917 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "[41] Zohar Levi and C. Gotsman. Smooth rotation enhanced as-rigid-as-possible mesh animation. IEEE Transactions on Visualization and Computer Graphics, 21:264–277, 2015. 2, 9, 10 ", + "bbox": [ + 169, + 90, + 826, + 121 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[42] Y. Lipman, O. Sorkine-Hornung, D. Cohen-Or, D. Levin, Christian Rössl, and H. Seidel. Differential coordinates for interactive mesh editing. Proceedings Shape Modeling Applications, 2004., pages 181–190, 2004. 3 ", + "bbox": [ + 173, + 128, + 823, + 171 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[43] Steven Liu, Xiuming Zhang, Zhoutong Zhang, Richard Zhang, Jun-Yan Zhu, and Bryan C. Russell. Editing conditional radiance fields. ArXiv, abs/2105.06466, 2021. 3, 6 ", + "bbox": [ + 173, + 181, + 823, + 210 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[44] W. Lorensen and H. Cline. Marching cubes: A high resolution 3d surface construction algorithm. In SIGGRAPH ’87, 1987. 4, 8 ", + "bbox": [ + 173, + 219, + 823, + 250 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[45] Lars M. Mescheder, Michael Oechsle, M. Niemeyer, S. Nowozin, and Andreas Geiger. Occupancy networks: Learning 3d reconstruction in function space. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 4455–4465, 2019. 1, 8 ", + "bbox": [ + 173, + 258, + 823, + 303 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[46] Mateusz Michalkiewicz, Jhony K Pontes, Dominic Jack, Mahsa Baktashmotlagh, and Anders Eriksson. Deep level sets: Implicit surface representations for 3d shape inference. arXiv preprint arXiv:1901.06802, 2019. 1 ", + "bbox": [ + 173, + 311, + 825, + 354 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[47] Ben Mildenhall, Pratul P. Srinivasan, Matthew Tancik, J. T. Barron, R. Ramamoorthi, and Ren Ng. Nerf: Representing scenes as neural radiance fields for view synthesis. In ECCV, 2020. 1, 6 [48] Tim Milliron, R. Jensen, Ronen Barzel, and A. Finkelstein. A framework for geometric warps and deformations. ACM Trans. Graph., 21:20–51, 2002. 2 ", + "bbox": [ + 171, + 363, + 825, + 393 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 402, + 823, + 431 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[49] I. Mitchell. The flexible, extensible and efficient toolbox of level set methods. Journal of Scientific Computing, 35:300–329, 2008. 2 ", + "bbox": [ + 173, + 440, + 825, + 470 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[50] Henry P. Moreton and C. Séquin. Functional optimization for fair surface design. Proceedings of the 19th annual conference on Computer graphics and interactive techniques, 1992. 2 ", + "bbox": [ + 173, + 479, + 825, + 510 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[51] K. Museth, D. Breen, R. Whitaker, and A. Barr. Level set surface editing operators. Proceedings of the 29th annual conference on Computer graphics and interactive techniques, 2002. 1, 3 [52] Martin E Newell. The utilization of procedure models in digital image synthesis. Technical report, UTAH UNIV SALT LAKE CITY SCHOOL OF COMPUTING, 1975. 1 ", + "bbox": [ + 173, + 518, + 823, + 547 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 558, + 820, + 587 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[53] M. Niemeyer, Lars M. Mescheder, Michael Oechsle, and Andreas Geiger. Occupancy flow: 4d reconstruction by learning particle dynamics. 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pages 5378–5388, 2019. 3 ", + "bbox": [ + 173, + 595, + 823, + 638 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[54] S. Osher and Ronald Fedkiw. Level set methods and dynamic implicit surfaces. In Applied mathematical sciences, 2003. 1, 2, 3, 7 ", + "bbox": [ + 173, + 648, + 823, + 678 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[55] S. Osher and N. Paragios. Geometric level set methods in imaging, vision, and graphics. In Springer New York, 2003. 3 ", + "bbox": [ + 173, + 686, + 823, + 715 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[56] Jeong Joon Park, Peter R. Florence, J. Straub, Richard A. Newcombe, and S. Lovegrove. Deepsdf: Learning continuous signed distance functions for shape representation. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 165–174, 2019. 1, 4, 8 ", + "bbox": [ + 173, + 724, + 826, + 782 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[57] Keunhong Park, Utkarsh Sinha, Jonathan T. Barron, Sofien Bouaziz, Dan B Goldman, Steven M. Seitz, and Ricardo Martin-Brualla. Deformable neural radiance fields. arXiv preprint arXiv:2011.12948, 2020. 3, 6 ", + "bbox": [ + 173, + 791, + 825, + 834 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[58] Sida Peng, Junting Dong, Qianqian Wang, Shangzhan Zhang, Qing Shuai, Hujun Bao, and Xiaowei Zhou. Animatable neural radiance fields for human body modeling. ArXiv, abs/2105.02872, 2021. 3 ", + "bbox": [ + 173, + 844, + 823, + 886 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[59] H. Piaggio. Differential geometry of curves and surfaces. Nature, 169:560–560, 1952. 3, 7 ", + "bbox": [ + 169, + 897, + 805, + 912 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "[60] Albert Pumarola, Enric Corona, Gerard Pons-Moll, and F. Moreno-Noguer. D-nerf: Neural radiance fields for dynamic scenes. ArXiv, abs/2011.13961, 2020. 3 \n[61] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht, Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International Conference on Machine Learning, pages 5301–5310. PMLR, 2019. 2 \n[62] Edoardo Remelli, Artem Lukoianov, Stephan R. Richter, Benoit Guillard, Timur M. Bagautdinov, Pierre Baqué, and P. Fua. Meshsdf: Differentiable iso-surface extraction. NeurIPS, 2020. 3 \n[63] A. Rosenfeld and J. Pfaltz. Sequential operations in digital picture processing. J. ACM, 13: 471–494, 1966. 1 \n[64] S. Saito, Zeng Huang, R. Natsume, S. Morishima, Angjoo Kanazawa, and Hao Li. Pifu: Pixel-aligned implicit function for high-resolution clothed human digitization. 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pages 2304–2314, 2019. 1 \n[65] T. Sederberg and S. Parry. Free-form deformation of solid geometric models. Proceedings of the 13th annual conference on Computer graphics and interactive techniques, 1986. 2 \n[66] V. Sitzmann, Julien N. P. Martel, Alexander W. Bergman, David B. Lindell, and G. Wetzstein. Implicit neural representations with periodic activation functions. ArXiv, abs/2006.09661, 2020. 2, 4, 6, 8 \n[67] Vincent Sitzmann, Eric Chan, Richard Tucker, Noah Snavely, and Gordon Wetzstein. Metasdf: Meta-learning signed distance functions. ArXiv, abs/2006.09662, 2020. 10 \n[68] Yang Song and S. Ermon. Generative modeling by estimating gradients of the data distribution. ArXiv, abs/1907.05600, 2019. 5 \n[69] Olga Sorkine. Differential representations for mesh processing. In Computer Graphics Forum, volume 25, pages 789–807. Wiley Online Library, 2006. 2 \n[70] O. Sorkine-Hornung and M. Alexa. As-rigid-as-possible surface modeling. In Symposium on Geometry Processing, 2007. 2, 5, 7, 8 \n[71] O. Sorkine-Hornung, D. Cohen-Or, Y. Lipman, M. Alexa, Christian Rössl, and H. Seidel. Laplacian surface editing. In SGP ’04, 2004. 2 \n[72] O. Stein, E. Grinspun, M. Wardetzky, and A. Jacobson. Natural boundary conditions for smoothing in geometry processing. ACM Transactions on Graphics (TOG), 37:1 – 13, 2018. 2 \n[73] Towaki Takikawa, Joey Litalien, K. Yin, K. Kreis, Charles T. Loop, Derek Nowrouzezahrai, A. Jacobson, M. McGuire, and S. Fidler. Neural geometric level of detail: Real-time rendering with implicit 3d shapes. ArXiv, abs/2101.10994, 2021. 1 \n[74] Matthew Tancik, Pratul P. Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan, Utkarsh Singhal, R. Ramamoorthi, J. T. Barron, and Ren Ng. Fourier features let networks learn high frequency functions in low dimensional domains. ArXiv, abs/2006.10739, 2020. 2, 6 \n[75] Matthew Tancik, Ben Mildenhall, Terrance Wang, Divi Schmidt, Pratul P. Srinivasan, Jonathan T. Barron, and Ren Ng. Learned initializations for optimizing coordinate-based neural representations. In CVPR, 2021. 10 \n[76] G. Taubin. A signal processing approach to fair surface design. Proceedings of the 22nd annual conference on Computer graphics and interactive techniques, 1995. 2, 4 \n[77] Demetri Terzopoulos, John C. Platt, A. Barr, and K. Fleischer. Elastically deformable models. In SIGGRAPH ’87, 1987. 2 \n[78] Jason Torchinsky. The first real object ever 3D scanned and rendered was a VW beetle. Jalopnik, 2013. https://jalopnik.com/ the-first-real-object-ever-3d-scanned-and-rendered-was-494241353. \n[79] B. Vallet and B. Lévy. Spectral geometry processing with manifold harmonics. Computer Graphics Forum, 27, 2008. 2 \n[80] Weiyue Wang, D. Ceylan, R. Mech, and U. Neumann. 3dn: 3d deformation network. 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 1038–1046, 2019. 3 \n[81] Yifan Wang, Noam Aigerman, Vladimir G. Kim, S. Chaudhuri, and O. Sorkine-Hornung. Neural cages for detail-preserving 3d deformations. 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 72–80, 2020. 3 \n[82] William Welch and A. Witkin. Variational surface modeling. Proceedings of the 19th annual conference on Computer graphics and interactive techniques, 1992. 2 \n[83] Zhan Xu, Yang Zhou, E. Kalogerakis, Chris Landreth, and Karan Singh. Rignet: Neural rigging for articulated characters. ArXiv, abs/2005.00559, 2020. 3 \n[84] Lior Yariv, Yoni Kasten, Dror Moran, Meirav Galun, Matan Atzmon, Basri Ronen, and Yaron Lipman. Multiview neural surface reconstruction by disentangling geometry and appearance. Advances in Neural Information Processing Systems, 33, 2020. 1 \n[85] Zerong Zheng, Tao Yu, Qionghai Dai, and Y. Liu. Deep implicit templates for 3d shape representation. ArXiv, abs/2011.14565, 2020. 3 \n[86] Qian-Yi Zhou, Jaesik Park, and Vladlen Koltun. Open3D: A modern library for 3D data processing. arXiv:1801.09847, 2018. 8 ", + "bbox": [ + 171, + 53, + 844, + 916 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 89, + 828, + 428 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_middle.json b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..fdd263700c948b5a832780c619082a869693c853 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_middle.json @@ -0,0 +1,41760 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 155, + 97, + 456, + 117 + ], + "lines": [ + { + "bbox": [ + 155, + 96, + 457, + 118 + ], + "spans": [ + { + "bbox": [ + 155, + 96, + 457, + 118 + ], + "score": 1.0, + "content": "Geometry Processing with Neural Fields", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 118, + 160, + 193, + 182 + ], + "lines": [ + { + "bbox": [ + 121, + 158, + 194, + 172 + ], + "spans": [ + { + "bbox": [ + 121, + 158, + 194, + 172 + ], + "score": 1.0, + "content": "Guandao Yang ∗", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 169, + 193, + 183 + ], + "spans": [ + { + "bbox": [ + 116, + 169, + 193, + 183 + ], + "score": 1.0, + "content": "Cornell University", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 207, + 160, + 312, + 182 + ], + "lines": [ + { + "bbox": [ + 227, + 159, + 294, + 173 + ], + "spans": [ + { + "bbox": [ + 227, + 159, + 294, + 173 + ], + "score": 1.0, + "content": "Serge Belongie", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 206, + 169, + 314, + 184 + ], + "spans": [ + { + "bbox": [ + 206, + 169, + 314, + 184 + ], + "score": 1.0, + "content": "University of Copenhagen", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 328, + 160, + 412, + 181 + ], + "lines": [ + { + "bbox": [ + 327, + 158, + 414, + 171 + ], + "spans": [ + { + "bbox": [ + 327, + 158, + 414, + 171 + ], + "score": 1.0, + "content": "Bharath Hariharan", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 331, + 169, + 409, + 183 + ], + "spans": [ + { + "bbox": [ + 331, + 169, + 409, + 183 + ], + "score": 1.0, + "content": "Cornell University", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 426, + 160, + 494, + 181 + ], + "lines": [ + { + "bbox": [ + 426, + 158, + 495, + 171 + ], + "spans": [ + { + "bbox": [ + 426, + 158, + 495, + 171 + ], + "score": 1.0, + "content": "Vladlen Koltun", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 438, + 169, + 483, + 182 + ], + "spans": [ + { + "bbox": [ + 438, + 169, + 483, + 182 + ], + "score": 1.0, + "content": "Intel Labs", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 283, + 210, + 328, + 223 + ], + "lines": [ + { + "bbox": [ + 281, + 209, + 331, + 225 + ], + "spans": [ + { + "bbox": [ + 281, + 209, + 331, + 225 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 143, + 237, + 469, + 390 + ], + "lines": [ + { + "bbox": [ + 141, + 237, + 469, + 249 + ], + "spans": [ + { + "bbox": [ + 141, + 237, + 469, + 249 + ], + "score": 1.0, + "content": "Most existing geometry processing algorithms use meshes as the default shape", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "score": 1.0, + "content": "representation. Manipulating meshes, however, requires one to maintain high", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 259, + 470, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 259, + 470, + 272 + ], + "score": 1.0, + "content": "quality in the surface discretization. For example, changing the topology of a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "score": 1.0, + "content": "mesh usually requires additional procedures such as remeshing. This paper instead", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 281, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 469, + 293 + ], + "score": 1.0, + "content": "proposes the use of neural fields for geometry processing. Neural fields can", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 292, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 470, + 304 + ], + "score": 1.0, + "content": "compactly store complicated shapes without spatial discretization. Moreover,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 303, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 470, + 315 + ], + "score": 1.0, + "content": "neural fields are infinitely differentiable, which allows them to be optimized for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 314, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 314, + 470, + 325 + ], + "score": 1.0, + "content": "objectives that involve higher-order derivatives. This raises the question: can", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 325, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 470, + 336 + ], + "score": 1.0, + "content": "geometry processing be done entirely using neural fields? We introduce loss", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 335, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 469, + 348 + ], + "score": 1.0, + "content": "functions and architectures to show that some of the most challenging geometry", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 347, + 471, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 471, + 358 + ], + "score": 1.0, + "content": "processing tasks, such as deformation and filtering, can be done with neural fields.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 358, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 142, + 358, + 470, + 369 + ], + "score": 1.0, + "content": "Experimental results show that our methods are on par with the well-established", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 368, + 470, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 368, + 470, + 380 + ], + "score": 1.0, + "content": "mesh-based methods without committing to a particular surface discretization.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 379, + 424, + 391 + ], + "spans": [ + { + "bbox": [ + 142, + 379, + 424, + 391 + ], + "score": 1.0, + "content": "Code is available at https://github.com/stevenygd/NFGP.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 415, + 190, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 192, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 192, + 431 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "In many graphics applications, users may want to edit digital shapes using just a few clicks, such", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "as making a character bow by dragging the head downwards. Such manipulation from sparse input", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "requires geometry processing algorithms. Most of these algorithms use polygonal meshes to represent", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "shapes [11]. Polygonal meshes were created initially for researchers as a representation of real-world", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "shapes that they can both interpret and manipulate [14, 52, 78]. However, developing algorithms", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "that automatically manipulate meshes is often difficult since they involve discretizing the surface.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "For example, changing the topology of a mesh, such as turning a sphere into a torus, will break", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "such discretization and require additional repair procedures such as remeshing [2, 3]. Given that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 504, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 504, + 542 + ], + "score": 1.0, + "content": "shape editing is increasingly performed by algorithms, it seems worthwhile to search for a shape", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 396, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 396, + 554 + ], + "score": 1.0, + "content": "representation that is more amenable to automatic geometry processing.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "An alternative to the polygonal mesh is an implicit representation, in which the surface is represented", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 566, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 203, + 582 + ], + "score": 1.0, + "content": "by a level set of a field:", + "type": "text" + }, + { + "bbox": [ + 203, + 567, + 259, + 579 + ], + "score": 0.92, + "content": "\\bar { \\{ x \\vert f ( x ) = c \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 566, + 506, + 582 + ], + "score": 1.0, + "content": "[22, 39, 63]. Since it is easy to change shape topology using", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "implicit representations, people have applied them for geometry processing tasks such as shape", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "merging [8, 51, 54]. These works store implicit fields using voxels or octrees, which introduce", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "memory-intensive spatial discretization. Recent research addresses this by using continuous neural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "networks to represent implicit fields [19, 45, 46, 56]. These neural fields possess several advantages", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 622, + 504, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 504, + 634 + ], + "score": 1.0, + "content": "in addition to the merits inherited from implicit representation: they are compact to store [23, 45]", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "and can produce high-quality continuous surfaces at arbitrary resolutions [45, 56]. The community", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "has achieved compelling results using neural fields in a variety of applications [47, 64, 73, 84].", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Notwithstanding these results, it is still unclear whether shape editing tasks challenging for implicit", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "fields (e.g., deformation and filtering) can be performed with neural fields. In this paper, we ask: can", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 338, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 338, + 689 + ], + "score": 1.0, + "content": "geometry processing be done entirely using neural fields?", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 700, + 462, + 711 + ], + "lines": [ + { + "bbox": [ + 119, + 699, + 463, + 712 + ], + "spans": [ + { + "bbox": [ + 119, + 699, + 463, + 712 + ], + "score": 1.0, + "content": "∗Email: gy46@cornell.edu. This work is done while Guandao was interning at Intel Labs.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 155, + 97, + 456, + 117 + ], + "lines": [ + { + "bbox": [ + 155, + 96, + 457, + 118 + ], + "spans": [ + { + "bbox": [ + 155, + 96, + 457, + 118 + ], + "score": 1.0, + "content": "Geometry Processing with Neural Fields", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 118, + 160, + 193, + 182 + ], + "lines": [ + { + "bbox": [ + 121, + 158, + 194, + 172 + ], + "spans": [ + { + "bbox": [ + 121, + 158, + 194, + 172 + ], + "score": 1.0, + "content": "Guandao Yang ∗", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 169, + 193, + 183 + ], + "spans": [ + { + "bbox": [ + 116, + 169, + 193, + 183 + ], + "score": 1.0, + "content": "Cornell University", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 116, + 158, + 194, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 207, + 160, + 312, + 182 + ], + "lines": [ + { + "bbox": [ + 227, + 159, + 294, + 173 + ], + "spans": [ + { + "bbox": [ + 227, + 159, + 294, + 173 + ], + "score": 1.0, + "content": "Serge Belongie", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 206, + 169, + 314, + 184 + ], + "spans": [ + { + "bbox": [ + 206, + 169, + 314, + 184 + ], + "score": 1.0, + "content": "University of Copenhagen", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 206, + 159, + 314, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 328, + 160, + 412, + 181 + ], + "lines": [ + { + "bbox": [ + 327, + 158, + 414, + 171 + ], + "spans": [ + { + "bbox": [ + 327, + 158, + 414, + 171 + ], + "score": 1.0, + "content": "Bharath Hariharan", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 331, + 169, + 409, + 183 + ], + "spans": [ + { + "bbox": [ + 331, + 169, + 409, + 183 + ], + "score": 1.0, + "content": "Cornell University", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 327, + 158, + 414, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 426, + 160, + 494, + 181 + ], + "lines": [ + { + "bbox": [ + 426, + 158, + 495, + 171 + ], + "spans": [ + { + "bbox": [ + 426, + 158, + 495, + 171 + ], + "score": 1.0, + "content": "Vladlen Koltun", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 438, + 169, + 483, + 182 + ], + "spans": [ + { + "bbox": [ + 438, + 169, + 483, + 182 + ], + "score": 1.0, + "content": "Intel Labs", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 426, + 158, + 495, + 182 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 210, + 328, + 223 + ], + "lines": [ + { + "bbox": [ + 281, + 209, + 331, + 225 + ], + "spans": [ + { + "bbox": [ + 281, + 209, + 331, + 225 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 143, + 237, + 469, + 390 + ], + "lines": [ + { + "bbox": [ + 141, + 237, + 469, + 249 + ], + "spans": [ + { + "bbox": [ + 141, + 237, + 469, + 249 + ], + "score": 1.0, + "content": "Most existing geometry processing algorithms use meshes as the default shape", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "score": 1.0, + "content": "representation. Manipulating meshes, however, requires one to maintain high", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 259, + 470, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 259, + 470, + 272 + ], + "score": 1.0, + "content": "quality in the surface discretization. For example, changing the topology of a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "score": 1.0, + "content": "mesh usually requires additional procedures such as remeshing. This paper instead", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 281, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 469, + 293 + ], + "score": 1.0, + "content": "proposes the use of neural fields for geometry processing. Neural fields can", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 292, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 470, + 304 + ], + "score": 1.0, + "content": "compactly store complicated shapes without spatial discretization. Moreover,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 303, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 470, + 315 + ], + "score": 1.0, + "content": "neural fields are infinitely differentiable, which allows them to be optimized for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 314, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 314, + 470, + 325 + ], + "score": 1.0, + "content": "objectives that involve higher-order derivatives. This raises the question: can", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 325, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 470, + 336 + ], + "score": 1.0, + "content": "geometry processing be done entirely using neural fields? We introduce loss", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 335, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 469, + 348 + ], + "score": 1.0, + "content": "functions and architectures to show that some of the most challenging geometry", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 347, + 471, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 471, + 358 + ], + "score": 1.0, + "content": "processing tasks, such as deformation and filtering, can be done with neural fields.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 358, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 142, + 358, + 470, + 369 + ], + "score": 1.0, + "content": "Experimental results show that our methods are on par with the well-established", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 368, + 470, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 368, + 470, + 380 + ], + "score": 1.0, + "content": "mesh-based methods without committing to a particular surface discretization.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 379, + 424, + 391 + ], + "spans": [ + { + "bbox": [ + 142, + 379, + 424, + 391 + ], + "score": 1.0, + "content": "Code is available at https://github.com/stevenygd/NFGP.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 16.5, + "bbox_fs": [ + 141, + 237, + 471, + 391 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 415, + 190, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 192, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 192, + 431 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "In many graphics applications, users may want to edit digital shapes using just a few clicks, such", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "as making a character bow by dragging the head downwards. Such manipulation from sparse input", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "requires geometry processing algorithms. Most of these algorithms use polygonal meshes to represent", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "shapes [11]. Polygonal meshes were created initially for researchers as a representation of real-world", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "shapes that they can both interpret and manipulate [14, 52, 78]. However, developing algorithms", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "that automatically manipulate meshes is often difficult since they involve discretizing the surface.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "For example, changing the topology of a mesh, such as turning a sphere into a torus, will break", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "such discretization and require additional repair procedures such as remeshing [2, 3]. Given that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 504, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 504, + 542 + ], + "score": 1.0, + "content": "shape editing is increasingly performed by algorithms, it seems worthwhile to search for a shape", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 396, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 396, + 554 + ], + "score": 1.0, + "content": "representation that is more amenable to automatic geometry processing.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 441, + 506, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "An alternative to the polygonal mesh is an implicit representation, in which the surface is represented", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 566, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 104, + 566, + 203, + 582 + ], + "score": 1.0, + "content": "by a level set of a field:", + "type": "text" + }, + { + "bbox": [ + 203, + 567, + 259, + 579 + ], + "score": 0.92, + "content": "\\bar { \\{ x \\vert f ( x ) = c \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 566, + 506, + 582 + ], + "score": 1.0, + "content": "[22, 39, 63]. Since it is easy to change shape topology using", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "implicit representations, people have applied them for geometry processing tasks such as shape", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 602 + ], + "score": 1.0, + "content": "merging [8, 51, 54]. These works store implicit fields using voxels or octrees, which introduce", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "memory-intensive spatial discretization. Recent research addresses this by using continuous neural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "networks to represent implicit fields [19, 45, 46, 56]. These neural fields possess several advantages", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 622, + 504, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 504, + 634 + ], + "score": 1.0, + "content": "in addition to the merits inherited from implicit representation: they are compact to store [23, 45]", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "and can produce high-quality continuous surfaces at arbitrary resolutions [45, 56]. The community", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "has achieved compelling results using neural fields in a variety of applications [47, 64, 73, 84].", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Notwithstanding these results, it is still unclear whether shape editing tasks challenging for implicit", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "fields (e.g., deformation and filtering) can be performed with neural fields. In this paper, we ask: can", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 338, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 338, + 689 + ], + "score": 1.0, + "content": "geometry processing be done entirely using neural fields?", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 555, + 506, + 689 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "score": 1.0, + "content": "Geometry processing tasks are challenging because they are typically under-constrained: user input", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 84, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 84, + 507, + 96 + ], + "score": 1.0, + "content": "is very sparse. Therefore, we need to leverage priors that characterize how a natural surface behaves.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "Such surface priors are usually instantiated by minimizing energy functionals that describe the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "physical properties of surfaces using operators from differential geometry. For example, one can", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 128 + ], + "score": 1.0, + "content": "encourage surfaces to be smooth by minimizing the curvature, which can be measured by the Laplace-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "score": 1.0, + "content": "Beltrami operator. Such operators, however, require a parameterization of the surface, which is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "not available for level sets of a neural field. Mesh algorithms usually approximate these geometric", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 1.0, + "content": "operators using the geodesic neighbors of the surface point. This allows the algorithms to focus on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 159, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 173 + ], + "score": 1.0, + "content": "intrinsic geometric properties that are independent of shape parameterization. However, it is not easy", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 171, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 184 + ], + "score": 1.0, + "content": "to obtain geodesic neighbors in a neural field since the surface of interest is encoded implicitly by a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 182, + 355, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 355, + 194 + ], + "score": 1.0, + "content": "set of points that evaluate the field function to the same value.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "We posit that computing these geometric operators in neural fields requires a fundamentally different", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "approach. The idea is to approximate the local surface of the level set using the derivatives of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 220, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 507, + 233 + ], + "score": 1.0, + "content": "underlying field. We can evaluate intrinsic geometry properties of the level set, such as curvature,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "using only the field derivatives [39, 54]. This allows us to develop loss functions that describe surface", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "priors such as elasticity or rigidity. To achieve this, we use the fact that neural fields are designed to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "be infinitely differentiable [66, 74]. The infinite differentiability of neural fields makes it possible to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "score": 1.0, + "content": "optimize loss functions that involve higher-order derivatives using gradient descent methods. Thus,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "unlike mesh-based geometry processing algorithms that approximate these objectives using surface", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 285, + 424, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 424, + 298 + ], + "score": 1.0, + "content": "discretizations, we can directly optimize in terms of the derivatives of the field.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 316 + ], + "score": 1.0, + "content": "Our formulation provides a proof of concept that geometry processing can be done entirely using", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "neural fields. In particular, we focus on two tasks: shape filtering (e.g., smoothing and sharpening) and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "topology-preserving deformations. These two tasks are not only essential for downstream applications", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 348 + ], + "score": 1.0, + "content": "but also bring out the known challenges associated with implicit representations. We first tackle shape", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "sharpening and smoothing and show how these can be done by optimizing a loss function based on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "geometric properties computed via the neural field’s derivatives. To achieve shape deformation, we", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "propose to warp the neural field using a deformation vector field modeled by an invertible neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "network [7]. With this invertible deformation field, we derive a training objective that models the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 389, + 297, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 297, + 402 + ], + "score": 1.0, + "content": "implicitly represented surfaces as elastic shells.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 405, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "We compare our method with well-established mesh-based baselines [70, 76]. Our method can match", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "the quality of the mesh-based counterparts without discretizing the surface. We hope that our work", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 427, + 447, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 447, + 441 + ], + "score": 1.0, + "content": "can inspire future generations of geometry processing algorithms using neural fields.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 197, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 198, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 198, + 469 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 478, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "This paper builds on two bodies of work: polygon mesh geometry processing and neural field", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "representations. We will focus on prior work on two geometry processing tasks: shape filtering and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 499, + 453, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 453, + 514 + ], + "score": 1.0, + "content": "topology-preserving deformation. Please refer to Botsch et al. [11] for further reading.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "score": 1.0, + "content": "Mesh smoothing (and sharpening). The goal of mesh smoothing is to remove high-frequency", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "noise and produce a smooth surface. Noise removal can be achieved by Fourier analysis [76, 79]", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "or by modeling surface motion with a diffusion equation [26]. Smoothness can be promoted by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 568 + ], + "score": 1.0, + "content": "minimizing energy functionals inspired by differential operators [50, 72, 82]. Sharpening is the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "inverse of smoothing. In this paper, we adopt the goal of smoothing from prior work [20, 76] and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 577, + 364, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 364, + 590 + ], + "score": 1.0, + "content": "design a corresponding differentiable objective for neural fields.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "Implicit field smoothing. Implicit representations can be smoothed by evolving the level set", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "according to its curvature normal [49, 54]. Many network architectures, such as ReLU MLP,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "bias toward smoothness when modeling an implicit field [61, 66, 74]. Regularization objectives", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "and initialization schemes have been proposed to obtain smooth level sets from scanned surface", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "points [5, 31]. These works mostly use smoothness as a prior when training neural fields. Our work", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 655, + 448, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 448, + 667 + ], + "score": 1.0, + "content": "formulates an objective that allows smoothing or sharpening a neural field as desired.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 108, + 678, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "Mesh deformation. Mesh deformation is done by either deforming the shape (i.e. vertices) [9, 69]", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "or the space [6, 36, 41, 48, 65]. These algorithms usually draw inspiration from physics and", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "differential geometry to develop energy functions that encourage natural deformation [10, 15, 24,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "70, 71, 77]. They also linearize such objectives so that they can be solved efficiently using linear", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 49.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 86 + ], + "score": 1.0, + "content": "Geometry processing tasks are challenging because they are typically under-constrained: user input", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 84, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 84, + 507, + 96 + ], + "score": 1.0, + "content": "is very sparse. Therefore, we need to leverage priors that characterize how a natural surface behaves.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "Such surface priors are usually instantiated by minimizing energy functionals that describe the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "physical properties of surfaces using operators from differential geometry. For example, one can", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 128 + ], + "score": 1.0, + "content": "encourage surfaces to be smooth by minimizing the curvature, which can be measured by the Laplace-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 141 + ], + "score": 1.0, + "content": "Beltrami operator. Such operators, however, require a parameterization of the surface, which is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "not available for level sets of a neural field. Mesh algorithms usually approximate these geometric", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 1.0, + "content": "operators using the geodesic neighbors of the surface point. This allows the algorithms to focus on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 159, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 173 + ], + "score": 1.0, + "content": "intrinsic geometric properties that are independent of shape parameterization. However, it is not easy", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 171, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 184 + ], + "score": 1.0, + "content": "to obtain geodesic neighbors in a neural field since the surface of interest is encoded implicitly by a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 182, + 355, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 355, + 194 + ], + "score": 1.0, + "content": "set of points that evaluate the field function to the same value.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 73, + 507, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "We posit that computing these geometric operators in neural fields requires a fundamentally different", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "approach. The idea is to approximate the local surface of the level set using the derivatives of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 220, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 507, + 233 + ], + "score": 1.0, + "content": "underlying field. We can evaluate intrinsic geometry properties of the level set, such as curvature,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "using only the field derivatives [39, 54]. This allows us to develop loss functions that describe surface", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "priors such as elasticity or rigidity. To achieve this, we use the fact that neural fields are designed to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "be infinitely differentiable [66, 74]. The infinite differentiability of neural fields makes it possible to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 507, + 277 + ], + "score": 1.0, + "content": "optimize loss functions that involve higher-order derivatives using gradient descent methods. Thus,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "unlike mesh-based geometry processing algorithms that approximate these objectives using surface", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 285, + 424, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 424, + 298 + ], + "score": 1.0, + "content": "discretizations, we can directly optimize in terms of the derivatives of the field.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 199, + 507, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 300, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 316 + ], + "score": 1.0, + "content": "Our formulation provides a proof of concept that geometry processing can be done entirely using", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "neural fields. In particular, we focus on two tasks: shape filtering (e.g., smoothing and sharpening) and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "topology-preserving deformations. These two tasks are not only essential for downstream applications", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 348 + ], + "score": 1.0, + "content": "but also bring out the known challenges associated with implicit representations. We first tackle shape", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "sharpening and smoothing and show how these can be done by optimizing a loss function based on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "geometric properties computed via the neural field’s derivatives. To achieve shape deformation, we", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "propose to warp the neural field using a deformation vector field modeled by an invertible neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "network [7]. With this invertible deformation field, we derive a training objective that models the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 389, + 297, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 297, + 402 + ], + "score": 1.0, + "content": "implicitly represented surfaces as elastic shells.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 300, + 506, + 402 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 405, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "We compare our method with well-established mesh-based baselines [70, 76]. Our method can match", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "the quality of the mesh-based counterparts without discretizing the surface. We hope that our work", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 427, + 447, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 447, + 441 + ], + "score": 1.0, + "content": "can inspire future generations of geometry processing algorithms using neural fields.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 405, + 505, + 441 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 197, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 198, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 198, + 469 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 478, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "This paper builds on two bodies of work: polygon mesh geometry processing and neural field", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "representations. We will focus on prior work on two geometry processing tasks: shape filtering and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 499, + 453, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 453, + 514 + ], + "score": 1.0, + "content": "topology-preserving deformation. Please refer to Botsch et al. [11] for further reading.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 478, + 506, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "score": 1.0, + "content": "Mesh smoothing (and sharpening). The goal of mesh smoothing is to remove high-frequency", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "noise and produce a smooth surface. Noise removal can be achieved by Fourier analysis [76, 79]", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "or by modeling surface motion with a diffusion equation [26]. Smoothness can be promoted by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 568 + ], + "score": 1.0, + "content": "minimizing energy functionals inspired by differential operators [50, 72, 82]. Sharpening is the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "inverse of smoothing. In this paper, we adopt the goal of smoothing from prior work [20, 76] and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 577, + 364, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 364, + 590 + ], + "score": 1.0, + "content": "design a corresponding differentiable objective for neural fields.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 522, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "Implicit field smoothing. Implicit representations can be smoothed by evolving the level set", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "according to its curvature normal [49, 54]. Many network architectures, such as ReLU MLP,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "bias toward smoothness when modeling an implicit field [61, 66, 74]. Regularization objectives", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "and initialization schemes have been proposed to obtain smooth level sets from scanned surface", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "points [5, 31]. These works mostly use smoothness as a prior when training neural fields. Our work", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 655, + 448, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 448, + 667 + ], + "score": 1.0, + "content": "formulates an objective that allows smoothing or sharpening a neural field as desired.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 600, + 506, + 667 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 678, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "Mesh deformation. Mesh deformation is done by either deforming the shape (i.e. vertices) [9, 69]", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "or the space [6, 36, 41, 48, 65]. These algorithms usually draw inspiration from physics and", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "differential geometry to develop energy functions that encourage natural deformation [10, 15, 24,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "70, 71, 77]. They also linearize such objectives so that they can be solved efficiently using linear", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 73, + 504, + 84 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 504, + 84 + ], + "score": 1.0, + "content": "solvers [9]. Recent research also applies deep learning to optimize for non-linear deformation", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "losses [32, 34, 38, 80, 81, 83]. Deforming a mesh, however, requires estimating the deformation", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "objectives with spatial discretization and maintaining vertex connectivity in a way that preserves", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "score": 1.0, + "content": "topology [42]. We deform neural fields with a continuous invertible field to circumvent these issues.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 49.5, + "bbox_fs": [ + 104, + 677, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 504, + 84 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 504, + 84 + ], + "score": 1.0, + "content": "solvers [9]. Recent research also applies deep learning to optimize for non-linear deformation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "losses [32, 34, 38, 80, 81, 83]. Deforming a mesh, however, requires estimating the deformation", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "objectives with spatial discretization and maintaining vertex connectivity in a way that preserves", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 507, + 118 + ], + "score": 1.0, + "content": "topology [42]. We deform neural fields with a continuous invertible field to circumvent these issues.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 129, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "score": 1.0, + "content": "Implicit field deformation. Prior works have studied the deformation of implicit fields for tasks", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "like physics simulation [39, 51, 54, 55]. These works use voxels or octrees to represent implicit", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 150, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 165 + ], + "score": 1.0, + "content": "fields, while our paper advocates for using neural fields for deformation. There is some past work on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "score": 1.0, + "content": "deforming neural fields to match a target shape [12, 18, 37, 53, 58] or image [43, 57, 60] without any", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "correspondences between the two. In contrast, we perform such deformation with very few localized", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 183, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 198 + ], + "score": 1.0, + "content": "user-provided correspondences, but without any other information about the target shape. Our setting", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "is very convenient for artists, but it requires the algorithm to provide a strong surface prior due to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "the lack of a densely specified target state. Other prior works on editing neural fields are trained on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 216, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 104, + 216, + 506, + 230 + ], + "score": 1.0, + "content": "a dataset of shapes from a particular object category [25, 29, 30, 33, 85]. Since surface priors are", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "specified implicitly by the dataset, it is unclear how to apply these methods to out-of-distribution", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "shapes. In contrast, our paper requires no training dataset and instead enforces priors inspired by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "more general physical properties such as smoothness and elasticity. Remelli et al. [62] developed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "a way to differentiate iso-surface extraction, which allows deforming neural fields using objectives", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "carried over from mesh-based algorithms. Our method avoids iso-surface extraction entirely and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 282, + 417, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 417, + 295 + ], + "score": 1.0, + "content": "formulates differentiable deformation objectives directly on the implicit field.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 107, + 310, + 367, + 324 + ], + "lines": [ + { + "bbox": [ + 104, + 309, + 369, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 309, + 369, + 327 + ], + "score": 1.0, + "content": "3 Computing Surface Properties of Neural Fields", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "In this section, we will discuss how to compute surface properties using neural fields and establish", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 267, + 359 + ], + "score": 1.0, + "content": "notation for the following sections. Let", + "type": "text" + }, + { + "bbox": [ + 267, + 347, + 281, + 357 + ], + "score": 0.75, + "content": "\\partial \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 346, + 417, + 359 + ], + "score": 1.0, + "content": "be a surface enclosing the region", + "type": "text" + }, + { + "bbox": [ + 418, + 347, + 426, + 357 + ], + "score": 0.76, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 346, + 506, + 359 + ], + "score": 1.0, + "content": ". A signed distance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 356, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 356, + 203, + 371 + ], + "score": 1.0, + "content": "field (SDF) for surface", + "type": "text" + }, + { + "bbox": [ + 203, + 358, + 218, + 368 + ], + "score": 0.83, + "content": "\\partial \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 356, + 273, + 371 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + }, + { + "bbox": [ + 274, + 357, + 403, + 370 + ], + "score": 0.92, + "content": "d ( \\mathbf { x } ) = s ( \\mathbf { x } ) \\operatorname* { m i n } _ { \\mathbf { y } \\in \\partial \\Omega } \\bar { \\| } \\mathbf { x } - \\mathbf { y } \\bar { \\| }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 356, + 485, + 371 + ], + "score": 1.0, + "content": ". The sign function", + "type": "text" + }, + { + "bbox": [ + 485, + 357, + 505, + 370 + ], + "score": 0.91, + "content": "s ( \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 158, + 381 + ], + "score": 1.0, + "content": "evaluates to", + "type": "text" + }, + { + "bbox": [ + 159, + 369, + 173, + 379 + ], + "score": 0.7, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 368, + 184, + 381 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 184, + 369, + 215, + 379 + ], + "score": 0.9, + "content": "\\textbf { x } \\in { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "and 1 otherwise. We will assume that a neural field approximate an", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 436, + 390 + ], + "score": 1.0, + "content": "SDF whose zero-isosurface represents the surface of interest. For a neural field", + "type": "text" + }, + { + "bbox": [ + 436, + 380, + 443, + 391 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 379, + 504, + 390 + ], + "score": 1.0, + "content": ", we denote its", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 192, + 402 + ], + "score": 1.0, + "content": "zero-isosurface using", + "type": "text" + }, + { + "bbox": [ + 193, + 390, + 211, + 403 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 391, + 505, + 402 + ], + "score": 1.0, + "content": ". This section summarizes how to compute surface normals and curvatures", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "from neural fields. This is well-understood and we summarize this here for convenience [39, 54, 59].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "Surface normal. The surface normal is the vector perpendicular to the tangent plane and describes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "the local orientation of the surface. For an SDF, the outward oriented surface normal of its level set is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 181, + 460 + ], + "score": 1.0, + "content": "the field gradient:", + "type": "text" + }, + { + "bbox": [ + 182, + 447, + 254, + 460 + ], + "score": 0.92, + "content": "\\mathbf { n } _ { d } ( \\mathbf { x } ) = \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 447, + 506, + 460 + ], + "score": 1.0, + "content": ". It can be shown that the SDF’s gradient norm is always one:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 168, + 470 + ], + "score": 0.92, + "content": "\\lVert \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } ) \\rVert = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 458, + 506, + 471 + ], + "score": 1.0, + "content": ". This property can be used to ensure that the field remains a valid SDF throughout", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 298, + 482 + ], + "score": 1.0, + "content": "any manipulation [4, 31]. The closest point in", + "type": "text" + }, + { + "bbox": [ + 298, + 469, + 313, + 479 + ], + "score": 0.71, + "content": "\\partial \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 468, + 336, + 482 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 336, + 471, + 345, + 479 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 468, + 415, + 482 + ], + "score": 1.0, + "content": "can be found by", + "type": "text" + }, + { + "bbox": [ + 415, + 469, + 479, + 481 + ], + "score": 0.93, + "content": "\\mathbf { x } - d ( \\mathbf { x } ) \\mathbf { n } _ { d } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 468, + 506, + 482 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "property can be used to sample points from the isosurface without creating a mesh [5, 13]. Finally,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "since the tangent plane is perpendicular to the surface normal, we can project vectors onto the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 495, + 515 + ], + "score": 1.0, + "content": "tangent plane by subtracting their projection onto the normal using the following projection matrix", + "type": "text" + }, + { + "bbox": [ + 495, + 504, + 502, + 512 + ], + "score": 0.26, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 502, + 506, + 515 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 512, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 219, + 525 + ], + "score": 0.92, + "content": "\\mathbf { P } _ { d } \\mathbf { \\bar { ( x ) } } \\overset { \\mathbf { \\bar { \\alpha } } } { = } \\mathbf { I } - \\mathbf { \\bar { n _ { d } } } \\mathbf { ( x ) } \\mathbf { n } _ { d } \\mathbf { ( x ) } \\mathbf { \\breve { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 512, + 506, + 526 + ], + "score": 1.0, + "content": ". This projection matrix allows us to characterize the tangent plane. This", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 524, + 507, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 507, + 537 + ], + "score": 1.0, + "content": "matrix is important for measuring how much a given deformation stretches the tangent direction [35].", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "Curvature. Intuitively, curvature describes how much a surface deviates from a plane. This can", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "be captured by the total derivative of the surface normal, which is also known as the shape operator:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 107, + 570, + 181, + 582 + ], + "score": 0.92, + "content": "\\bar { \\mathbf { \\xi } } S _ { D } ( \\bar { \\mathbf { x } } ) = \\mathcal { D } \\bar { \\mathbf { n } _ { d } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 569, + 505, + 583 + ], + "score": 1.0, + "content": ". For an SDF, the normal itself is given by the derivative of the field, thus the shape", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 580, + 333, + 594 + ], + "score": 1.0, + "content": "operator for an SDF is the Hessian of the field function:", + "type": "text" + }, + { + "bbox": [ + 333, + 580, + 405, + 593 + ], + "score": 0.93, + "content": "\\dot { H _ { d } } ( \\mathbf { x } ) = \\mathcal { D } ^ { 2 } d ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 580, + 506, + 594 + ], + "score": 1.0, + "content": ". The shape operator can", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 592, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 506, + 604 + ], + "score": 1.0, + "content": "be used to capture many different notions of curvature, including mean curvature (half the trace of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 107, + 603, + 135, + 615 + ], + "score": 0.92, + "content": "S _ { D } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 602, + 184, + 615 + ], + "score": 1.0, + "content": ", denoted by", + "type": "text" + }, + { + "bbox": [ + 185, + 604, + 191, + 613 + ], + "score": 0.73, + "content": "\\bar { \\kappa }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 602, + 354, + 615 + ], + "score": 1.0, + "content": "), Gaussian curvature (the determinant of", + "type": "text" + }, + { + "bbox": [ + 354, + 603, + 384, + 614 + ], + "score": 0.91, + "content": "S _ { D } ( { \\bf x } ) _ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "), and principal curvatures (the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 613, + 497, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 166, + 626 + ], + "score": 1.0, + "content": "eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 166, + 614, + 195, + 626 + ], + "score": 0.91, + "content": "S _ { D } ( { \\bf x } ) _ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 613, + 497, + 626 + ], + "score": 1.0, + "content": "). We will use these to define objectives that smooth or sharpen the surface.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 107, + 641, + 300, + 655 + ], + "lines": [ + { + "bbox": [ + 104, + 639, + 301, + 659 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 301, + 659 + ], + "score": 1.0, + "content": "4 Shape Smoothing and Sharpening", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "In this section, we will show that shape smoothing and sharpening can be done directly on neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "fields without producing meshes. In our setup, the input shape is represented as the zero-isosurface", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 107, + 686, + 503, + 703 + ], + "spans": [ + { + "bbox": [ + 107, + 689, + 126, + 700 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 686, + 198, + 703 + ], + "score": 1.0, + "content": "of the neural field", + "type": "text" + }, + { + "bbox": [ + 198, + 689, + 207, + 699 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 686, + 376, + 703 + ], + "score": 1.0, + "content": ". The algorithm needs to output neural field", + "type": "text" + }, + { + "bbox": [ + 376, + 689, + 389, + 700 + ], + "score": 0.9, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 686, + 480, + 703 + ], + "score": 1.0, + "content": "whose zero-isosurface", + "type": "text" + }, + { + "bbox": [ + 480, + 689, + 503, + 701 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 212, + 713 + ], + "score": 1.0, + "content": "satisfies two goals. First,", + "type": "text" + }, + { + "bbox": [ + 212, + 700, + 235, + 712 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 699, + 397, + 713 + ], + "score": 1.0, + "content": "should preserve the global structure of", + "type": "text" + }, + { + "bbox": [ + 398, + 700, + 417, + 711 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 699, + 505, + 713 + ], + "score": 1.0, + "content": ". Second, the surface", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 711, + 402, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 711, + 130, + 723 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 711, + 378, + 723 + ], + "score": 1.0, + "content": "should make desired changes to match the curvature of shape", + "type": "text" + }, + { + "bbox": [ + 379, + 711, + 398, + 722 + ], + "score": 0.89, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 711, + 402, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 117 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 73, + 507, + 118 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 129, + 505, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "score": 1.0, + "content": "Implicit field deformation. Prior works have studied the deformation of implicit fields for tasks", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "like physics simulation [39, 51, 54, 55]. These works use voxels or octrees to represent implicit", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 150, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 165 + ], + "score": 1.0, + "content": "fields, while our paper advocates for using neural fields for deformation. There is some past work on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "score": 1.0, + "content": "deforming neural fields to match a target shape [12, 18, 37, 53, 58] or image [43, 57, 60] without any", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "correspondences between the two. In contrast, we perform such deformation with very few localized", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 183, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 198 + ], + "score": 1.0, + "content": "user-provided correspondences, but without any other information about the target shape. Our setting", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "is very convenient for artists, but it requires the algorithm to provide a strong surface prior due to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "the lack of a densely specified target state. Other prior works on editing neural fields are trained on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 216, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 104, + 216, + 506, + 230 + ], + "score": 1.0, + "content": "a dataset of shapes from a particular object category [25, 29, 30, 33, 85]. Since surface priors are", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "specified implicitly by the dataset, it is unclear how to apply these methods to out-of-distribution", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 251 + ], + "score": 1.0, + "content": "shapes. In contrast, our paper requires no training dataset and instead enforces priors inspired by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "more general physical properties such as smoothness and elasticity. Remelli et al. [62] developed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "a way to differentiate iso-surface extraction, which allows deforming neural fields using objectives", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "carried over from mesh-based algorithms. Our method avoids iso-surface extraction entirely and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 282, + 417, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 417, + 295 + ], + "score": 1.0, + "content": "formulates differentiable deformation objectives directly on the implicit field.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 128, + 506, + 295 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 310, + 367, + 324 + ], + "lines": [ + { + "bbox": [ + 104, + 309, + 369, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 309, + 369, + 327 + ], + "score": 1.0, + "content": "3 Computing Surface Properties of Neural Fields", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "In this section, we will discuss how to compute surface properties using neural fields and establish", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 267, + 359 + ], + "score": 1.0, + "content": "notation for the following sections. Let", + "type": "text" + }, + { + "bbox": [ + 267, + 347, + 281, + 357 + ], + "score": 0.75, + "content": "\\partial \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 346, + 417, + 359 + ], + "score": 1.0, + "content": "be a surface enclosing the region", + "type": "text" + }, + { + "bbox": [ + 418, + 347, + 426, + 357 + ], + "score": 0.76, + "content": "\\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 346, + 506, + 359 + ], + "score": 1.0, + "content": ". A signed distance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 356, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 356, + 203, + 371 + ], + "score": 1.0, + "content": "field (SDF) for surface", + "type": "text" + }, + { + "bbox": [ + 203, + 358, + 218, + 368 + ], + "score": 0.83, + "content": "\\partial \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 356, + 273, + 371 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + }, + { + "bbox": [ + 274, + 357, + 403, + 370 + ], + "score": 0.92, + "content": "d ( \\mathbf { x } ) = s ( \\mathbf { x } ) \\operatorname* { m i n } _ { \\mathbf { y } \\in \\partial \\Omega } \\bar { \\| } \\mathbf { x } - \\mathbf { y } \\bar { \\| }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 356, + 485, + 371 + ], + "score": 1.0, + "content": ". The sign function", + "type": "text" + }, + { + "bbox": [ + 485, + 357, + 505, + 370 + ], + "score": 0.91, + "content": "s ( \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 158, + 381 + ], + "score": 1.0, + "content": "evaluates to", + "type": "text" + }, + { + "bbox": [ + 159, + 369, + 173, + 379 + ], + "score": 0.7, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 368, + 184, + 381 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 184, + 369, + 215, + 379 + ], + "score": 0.9, + "content": "\\textbf { x } \\in { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "and 1 otherwise. We will assume that a neural field approximate an", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 436, + 390 + ], + "score": 1.0, + "content": "SDF whose zero-isosurface represents the surface of interest. For a neural field", + "type": "text" + }, + { + "bbox": [ + 436, + 380, + 443, + 391 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 379, + 504, + 390 + ], + "score": 1.0, + "content": ", we denote its", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 192, + 402 + ], + "score": 1.0, + "content": "zero-isosurface using", + "type": "text" + }, + { + "bbox": [ + 193, + 390, + 211, + 403 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 391, + 505, + 402 + ], + "score": 1.0, + "content": ". This section summarizes how to compute surface normals and curvatures", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "from neural fields. This is well-understood and we summarize this here for convenience [39, 54, 59].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 335, + 506, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "Surface normal. The surface normal is the vector perpendicular to the tangent plane and describes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "the local orientation of the surface. For an SDF, the outward oriented surface normal of its level set is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 181, + 460 + ], + "score": 1.0, + "content": "the field gradient:", + "type": "text" + }, + { + "bbox": [ + 182, + 447, + 254, + 460 + ], + "score": 0.92, + "content": "\\mathbf { n } _ { d } ( \\mathbf { x } ) = \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 447, + 506, + 460 + ], + "score": 1.0, + "content": ". It can be shown that the SDF’s gradient norm is always one:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 168, + 470 + ], + "score": 0.92, + "content": "\\lVert \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } ) \\rVert = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 458, + 506, + 471 + ], + "score": 1.0, + "content": ". This property can be used to ensure that the field remains a valid SDF throughout", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 298, + 482 + ], + "score": 1.0, + "content": "any manipulation [4, 31]. The closest point in", + "type": "text" + }, + { + "bbox": [ + 298, + 469, + 313, + 479 + ], + "score": 0.71, + "content": "\\partial \\Omega", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 468, + 336, + 482 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 336, + 471, + 345, + 479 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 468, + 415, + 482 + ], + "score": 1.0, + "content": "can be found by", + "type": "text" + }, + { + "bbox": [ + 415, + 469, + 479, + 481 + ], + "score": 0.93, + "content": "\\mathbf { x } - d ( \\mathbf { x } ) \\mathbf { n } _ { d } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 468, + 506, + 482 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "property can be used to sample points from the isosurface without creating a mesh [5, 13]. Finally,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "since the tangent plane is perpendicular to the surface normal, we can project vectors onto the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 495, + 515 + ], + "score": 1.0, + "content": "tangent plane by subtracting their projection onto the normal using the following projection matrix", + "type": "text" + }, + { + "bbox": [ + 495, + 504, + 502, + 512 + ], + "score": 0.26, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 502, + 506, + 515 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 512, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 219, + 525 + ], + "score": 0.92, + "content": "\\mathbf { P } _ { d } \\mathbf { \\bar { ( x ) } } \\overset { \\mathbf { \\bar { \\alpha } } } { = } \\mathbf { I } - \\mathbf { \\bar { n _ { d } } } \\mathbf { ( x ) } \\mathbf { n } _ { d } \\mathbf { ( x ) } \\mathbf { \\breve { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 512, + 506, + 526 + ], + "score": 1.0, + "content": ". This projection matrix allows us to characterize the tangent plane. This", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 524, + 507, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 507, + 537 + ], + "score": 1.0, + "content": "matrix is important for measuring how much a given deformation stretches the tangent direction [35].", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 424, + 507, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "Curvature. Intuitively, curvature describes how much a surface deviates from a plane. This can", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "be captured by the total derivative of the surface normal, which is also known as the shape operator:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 107, + 570, + 181, + 582 + ], + "score": 0.92, + "content": "\\bar { \\mathbf { \\xi } } S _ { D } ( \\bar { \\mathbf { x } } ) = \\mathcal { D } \\bar { \\mathbf { n } _ { d } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 569, + 505, + 583 + ], + "score": 1.0, + "content": ". For an SDF, the normal itself is given by the derivative of the field, thus the shape", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 580, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 580, + 333, + 594 + ], + "score": 1.0, + "content": "operator for an SDF is the Hessian of the field function:", + "type": "text" + }, + { + "bbox": [ + 333, + 580, + 405, + 593 + ], + "score": 0.93, + "content": "\\dot { H _ { d } } ( \\mathbf { x } ) = \\mathcal { D } ^ { 2 } d ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 580, + 506, + 594 + ], + "score": 1.0, + "content": ". The shape operator can", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 592, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 506, + 604 + ], + "score": 1.0, + "content": "be used to capture many different notions of curvature, including mean curvature (half the trace of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 107, + 603, + 135, + 615 + ], + "score": 0.92, + "content": "S _ { D } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 602, + 184, + 615 + ], + "score": 1.0, + "content": ", denoted by", + "type": "text" + }, + { + "bbox": [ + 185, + 604, + 191, + 613 + ], + "score": 0.73, + "content": "\\bar { \\kappa }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 602, + 354, + 615 + ], + "score": 1.0, + "content": "), Gaussian curvature (the determinant of", + "type": "text" + }, + { + "bbox": [ + 354, + 603, + 384, + 614 + ], + "score": 0.91, + "content": "S _ { D } ( { \\bf x } ) _ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "), and principal curvatures (the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 613, + 497, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 166, + 626 + ], + "score": 1.0, + "content": "eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 166, + 614, + 195, + 626 + ], + "score": 0.91, + "content": "S _ { D } ( { \\bf x } ) _ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 613, + 497, + 626 + ], + "score": 1.0, + "content": "). We will use these to define objectives that smooth or sharpen the surface.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 548, + 506, + 626 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 641, + 300, + 655 + ], + "lines": [ + { + "bbox": [ + 104, + 639, + 301, + 659 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 301, + 659 + ], + "score": 1.0, + "content": "4 Shape Smoothing and Sharpening", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "In this section, we will show that shape smoothing and sharpening can be done directly on neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "fields without producing meshes. In our setup, the input shape is represented as the zero-isosurface", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 107, + 686, + 503, + 703 + ], + "spans": [ + { + "bbox": [ + 107, + 689, + 126, + 700 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 686, + 198, + 703 + ], + "score": 1.0, + "content": "of the neural field", + "type": "text" + }, + { + "bbox": [ + 198, + 689, + 207, + 699 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 686, + 376, + 703 + ], + "score": 1.0, + "content": ". The algorithm needs to output neural field", + "type": "text" + }, + { + "bbox": [ + 376, + 689, + 389, + 700 + ], + "score": 0.9, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 686, + 480, + 703 + ], + "score": 1.0, + "content": "whose zero-isosurface", + "type": "text" + }, + { + "bbox": [ + 480, + 689, + 503, + 701 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 212, + 713 + ], + "score": 1.0, + "content": "satisfies two goals. First,", + "type": "text" + }, + { + "bbox": [ + 212, + 700, + 235, + 712 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 699, + 397, + 713 + ], + "score": 1.0, + "content": "should preserve the global structure of", + "type": "text" + }, + { + "bbox": [ + 398, + 700, + 417, + 711 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 699, + 505, + 713 + ], + "score": 1.0, + "content": ". Second, the surface", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 711, + 402, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 711, + 130, + 723 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 711, + 378, + 723 + ], + "score": 1.0, + "content": "should make desired changes to match the curvature of shape", + "type": "text" + }, + { + "bbox": [ + 379, + 711, + 398, + 722 + ], + "score": 0.89, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 711, + 402, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 667, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 70, + 504, + 230 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 70, + 504, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 70, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 109, + 70, + 504, + 230 + ], + "score": 0.97, + "type": "image", + "image_path": "a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 70, + 504, + 123.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 123.33333333333334, + 504, + 176.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 176.66666666666669, + 504, + 230.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 233, + 505, + 277 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "Figure 2: Smoothing and sharpening results. (A) zoomed-in input; (B) our method; (C) baseline", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "without remeshing; (D) baseline with remeshing. We can see that the baseline without remeshing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "finds it difficult to smooth or sharpen the mesh extracted from neural fields. Our method is able to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 267, + 320, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 320, + 278 + ], + "score": 1.0, + "content": "achieve good results without discretizing the surface.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 503, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 273, + 304 + ], + "score": 1.0, + "content": "To achieve these goals, we first instantiate", + "type": "text" + }, + { + "bbox": [ + 273, + 292, + 287, + 303 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 291, + 494, + 304 + ], + "score": 1.0, + "content": "using the same architecture and parameter values as", + "type": "text" + }, + { + "bbox": [ + 494, + 292, + 503, + 302 + ], + "score": 0.85, + "content": "F", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 302, + 316, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 181, + 315 + ], + "score": 1.0, + "content": "Then we optimize", + "type": "text" + }, + { + "bbox": [ + 181, + 303, + 194, + 314 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 302, + 316, + 315 + ], + "score": 1.0, + "content": "using the following objective:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 110, + 322, + 498, + 357 + ], + "lines": [ + { + "bbox": [ + 110, + 322, + 498, + 357 + ], + "spans": [ + { + "bbox": [ + 110, + 322, + 498, + 357 + ], + "score": 0.92, + "content": "\\mathcal { L } ( \\theta ) = \\int _ { \\mathbf { x } \\in U } \\left| G _ { \\theta } ( \\mathbf { x } ) - F ( \\mathbf { x } ) \\right| ^ { 2 } + \\lambda _ { g } \\left( \\left\\| \\nabla _ { \\mathbf { x } } G _ { \\theta } ( \\mathbf { x } ) \\right\\| - 1 \\right) ^ { 2 } d \\mathbf { x } + \\int _ { \\mathbf { x } \\in V _ { \\tau } } \\lambda _ { k } \\left( \\kappa _ { G _ { \\theta } } ( \\mathbf { x } ) - \\beta \\kappa _ { F } ( \\mathbf { x } ) \\right) ^ { 2 } d \\mathbf { x } .", + "type": "interline_equation", + "image_path": "318f4b7b85ff34c65448f1858758db87fc47d86433ef6e6cdd2a92d8816934ea.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 110, + 322, + 498, + 333.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 333.6666666666667, + 498, + 345.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 110, + 345.33333333333337, + 498, + 357.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 376, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 376, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 269, + 395 + ], + "score": 1.0, + "content": "The first integral encourages the network", + "type": "text" + }, + { + "bbox": [ + 269, + 384, + 282, + 394 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 383, + 376, + 395 + ], + "score": 1.0, + "content": "to preserve the original", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 393, + 377, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 262, + 406 + ], + "score": 1.0, + "content": "shape. The second term regularizes", + "type": "text" + }, + { + "bbox": [ + 262, + 395, + 276, + 405 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 393, + 377, + 406 + ], + "score": 1.0, + "content": "to remain a valid SDF", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 405, + 376, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 376, + 417 + ], + "score": 1.0, + "content": "by enforcing that the norm of the gradient is 1 (i.e., the Eikonal", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 416, + 376, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 337, + 428 + ], + "score": 1.0, + "content": "constraint [4, 31]). The integration is over the region", + "type": "text" + }, + { + "bbox": [ + 337, + 416, + 347, + 426 + ], + "score": 0.77, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 416, + 376, + 428 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 426, + 376, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 204, + 438 + ], + "score": 1.0, + "content": "the original neural field", + "type": "text" + }, + { + "bbox": [ + 205, + 427, + 214, + 437 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 426, + 376, + 438 + ], + "score": 1.0, + "content": "is supervised over. The final term aims", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 438, + 376, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 376, + 450 + ], + "score": 1.0, + "content": "to smooth or sharpen the surface by increasing or decreasing the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 449, + 377, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 146, + 460 + ], + "score": 1.0, + "content": "curvature", + "type": "text" + }, + { + "bbox": [ + 146, + 451, + 153, + 459 + ], + "score": 0.63, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 449, + 187, + 460 + ], + "score": 1.0, + "content": ". Setting", + "type": "text" + }, + { + "bbox": [ + 188, + 449, + 213, + 460 + ], + "score": 0.91, + "content": "\\beta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 449, + 377, + 460 + ], + "score": 1.0, + "content": "will decrease the curvature of the output", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 459, + 377, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 139, + 472 + ], + "score": 1.0, + "content": "surface", + "type": "text" + }, + { + "bbox": [ + 139, + 461, + 156, + 471 + ], + "score": 0.89, + "content": "\\kappa _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 459, + 294, + 472 + ], + "score": 1.0, + "content": ", resulting in a smoother shape.", + "type": "text" + }, + { + "bbox": [ + 294, + 460, + 324, + 471 + ], + "score": 0.91, + "content": "\\beta > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 459, + 377, + 472 + ], + "score": 1.0, + "content": "will lead to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 469, + 378, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 378, + 483 + ], + "score": 1.0, + "content": "surfaces with higher curvature details and will thus sharpen shapes.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 481, + 376, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 376, + 494 + ], + "score": 1.0, + "content": "In this paper, we will use mean curvature since it’s easy to compute", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 491, + 275, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 181, + 505 + ], + "score": 1.0, + "content": "with neural fields:", + "type": "text" + }, + { + "bbox": [ + 181, + 492, + 270, + 505 + ], + "score": 0.93, + "content": "\\kappa _ { f } ( \\mathbf { x } ) = \\mathrm { t r } \\mathcal { D } ( \\mathbf { n } _ { f } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 491, + 275, + 505 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17 + }, + { + "type": "image", + "bbox": [ + 384, + 386, + 503, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 384, + 386, + 503, + 461 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 384, + 386, + 503, + 461 + ], + "spans": [ + { + "bbox": [ + 384, + 386, + 503, + 461 + ], + "score": 0.957, + "type": "image", + "image_path": "f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 384, + 386, + 503, + 423.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 384, + 423.5, + 503, + 461.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 383, + 468, + 505, + 502 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 383, + 468, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 383, + 468, + 505, + 479 + ], + "score": 1.0, + "content": "Figure 1: L: SIREN learned", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 383, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 383, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "to fit the SDF of a square; R:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 383, + 491, + 494, + 502 + ], + "spans": [ + { + "bbox": [ + 383, + 491, + 494, + 502 + ], + "score": 1.0, + "content": "Zooming in on the surface.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + } + ], + "index": 24.75 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "One challenge is that the computation of curvature can be very noisy for neural fields using periodic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "activations. Figure 4 shows how an ostensibly smooth isosurface learned through SIREN [66] is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "actually quite rough when zoomed in. The curvature evaluated on such a rough surface can be too", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "noisy to be used for training. To alleviate this issue, we only compute the curvature regularization in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 394, + 564 + ], + "score": 1.0, + "content": "areas where the curvature of the level set is less than a certain threshold", + "type": "text" + }, + { + "bbox": [ + 395, + 554, + 402, + 562 + ], + "score": 0.69, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 552, + 505, + 564 + ], + "score": 1.0, + "content": ". Formally, we define this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 563, + 504, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 136, + 577 + ], + "score": 1.0, + "content": "area as", + "type": "text" + }, + { + "bbox": [ + 137, + 563, + 292, + 576 + ], + "score": 0.91, + "content": "V _ { \\tau } = \\{ \\mathbf { x } \\in U | \\operatorname* { m a x } ( | \\kappa _ { G _ { \\theta } } | , | \\kappa _ { F } | ) < \\tau \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 563, + 492, + 577 + ], + "score": 1.0, + "content": ". We use rejection sampling to sample points from", + "type": "text" + }, + { + "bbox": [ + 492, + 563, + 504, + 574 + ], + "score": 0.84, + "content": "V _ { \\tau }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 272, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 272, + 587 + ], + "score": 1.0, + "content": "when computing the loss during training.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "Results. We follow prior works [20, 76] to use Armadillo [40] and a sphere with one half of it", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "corrupted by Gaussian noise. We compare our algorithm to two baselines. The first baseline directly", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "applies the smoothing algorithm developed by Taubin [76] to the mesh extracted from the neural field", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "using Marching cube [44]. The second baseline applies the filtering algorithms on meshes simplified", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "by quadratic decimation [27]. The input neural fields are created following the procedure of Park", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "et al. [56]. The results are shown in Figure 2. The first baseline fails to smooth or sharpen the surface", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "appropriately. It only modifies the surface with high-frequency noise. While the second baseline can", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 678, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 690 + ], + "score": 1.0, + "content": "filter the surface correctly, it introduces discretization artifacts due to the decimation process. This", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "suggests it is challenging to filter the neural field surface with mesh processing algorithms since these", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "algorithms are sensitive to the quality of surface discretization. On the other hand, our algorithm can", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 711, + 488, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 488, + 723 + ], + "score": 1.0, + "content": "produce good filtering results without the need to maintain a good discretization of the surface.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 70, + 504, + 230 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 70, + 504, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 70, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 109, + 70, + 504, + 230 + ], + "score": 0.97, + "type": "image", + "image_path": "a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 70, + 504, + 123.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 123.33333333333334, + 504, + 176.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 176.66666666666669, + 504, + 230.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 233, + 505, + 277 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "Figure 2: Smoothing and sharpening results. (A) zoomed-in input; (B) our method; (C) baseline", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "without remeshing; (D) baseline with remeshing. We can see that the baseline without remeshing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "finds it difficult to smooth or sharpen the mesh extracted from neural fields. Our method is able to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 267, + 320, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 320, + 278 + ], + "score": 1.0, + "content": "achieve good results without discretizing the surface.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 503, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 273, + 304 + ], + "score": 1.0, + "content": "To achieve these goals, we first instantiate", + "type": "text" + }, + { + "bbox": [ + 273, + 292, + 287, + 303 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 291, + 494, + 304 + ], + "score": 1.0, + "content": "using the same architecture and parameter values as", + "type": "text" + }, + { + "bbox": [ + 494, + 292, + 503, + 302 + ], + "score": 0.85, + "content": "F", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 302, + 316, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 181, + 315 + ], + "score": 1.0, + "content": "Then we optimize", + "type": "text" + }, + { + "bbox": [ + 181, + 303, + 194, + 314 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 302, + 316, + 315 + ], + "score": 1.0, + "content": "using the following objective:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 291, + 503, + 315 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 110, + 322, + 498, + 357 + ], + "lines": [ + { + "bbox": [ + 110, + 322, + 498, + 357 + ], + "spans": [ + { + "bbox": [ + 110, + 322, + 498, + 357 + ], + "score": 0.92, + "content": "\\mathcal { L } ( \\theta ) = \\int _ { \\mathbf { x } \\in U } \\left| G _ { \\theta } ( \\mathbf { x } ) - F ( \\mathbf { x } ) \\right| ^ { 2 } + \\lambda _ { g } \\left( \\left\\| \\nabla _ { \\mathbf { x } } G _ { \\theta } ( \\mathbf { x } ) \\right\\| - 1 \\right) ^ { 2 } d \\mathbf { x } + \\int _ { \\mathbf { x } \\in V _ { \\tau } } \\lambda _ { k } \\left( \\kappa _ { G _ { \\theta } } ( \\mathbf { x } ) - \\beta \\kappa _ { F } ( \\mathbf { x } ) \\right) ^ { 2 } d \\mathbf { x } .", + "type": "interline_equation", + "image_path": "318f4b7b85ff34c65448f1858758db87fc47d86433ef6e6cdd2a92d8816934ea.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 110, + 322, + 498, + 333.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 333.6666666666667, + 498, + 345.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 110, + 345.33333333333337, + 498, + 357.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 376, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 376, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 269, + 395 + ], + "score": 1.0, + "content": "The first integral encourages the network", + "type": "text" + }, + { + "bbox": [ + 269, + 384, + 282, + 394 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 383, + 376, + 395 + ], + "score": 1.0, + "content": "to preserve the original", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 393, + 377, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 262, + 406 + ], + "score": 1.0, + "content": "shape. The second term regularizes", + "type": "text" + }, + { + "bbox": [ + 262, + 395, + 276, + 405 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 393, + 377, + 406 + ], + "score": 1.0, + "content": "to remain a valid SDF", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 405, + 376, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 376, + 417 + ], + "score": 1.0, + "content": "by enforcing that the norm of the gradient is 1 (i.e., the Eikonal", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 416, + 376, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 337, + 428 + ], + "score": 1.0, + "content": "constraint [4, 31]). The integration is over the region", + "type": "text" + }, + { + "bbox": [ + 337, + 416, + 347, + 426 + ], + "score": 0.77, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 416, + 376, + 428 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 426, + 376, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 204, + 438 + ], + "score": 1.0, + "content": "the original neural field", + "type": "text" + }, + { + "bbox": [ + 205, + 427, + 214, + 437 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 426, + 376, + 438 + ], + "score": 1.0, + "content": "is supervised over. The final term aims", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 438, + 376, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 376, + 450 + ], + "score": 1.0, + "content": "to smooth or sharpen the surface by increasing or decreasing the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 449, + 377, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 146, + 460 + ], + "score": 1.0, + "content": "curvature", + "type": "text" + }, + { + "bbox": [ + 146, + 451, + 153, + 459 + ], + "score": 0.63, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 449, + 187, + 460 + ], + "score": 1.0, + "content": ". Setting", + "type": "text" + }, + { + "bbox": [ + 188, + 449, + 213, + 460 + ], + "score": 0.91, + "content": "\\beta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 449, + 377, + 460 + ], + "score": 1.0, + "content": "will decrease the curvature of the output", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 459, + 377, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 139, + 472 + ], + "score": 1.0, + "content": "surface", + "type": "text" + }, + { + "bbox": [ + 139, + 461, + 156, + 471 + ], + "score": 0.89, + "content": "\\kappa _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 459, + 294, + 472 + ], + "score": 1.0, + "content": ", resulting in a smoother shape.", + "type": "text" + }, + { + "bbox": [ + 294, + 460, + 324, + 471 + ], + "score": 0.91, + "content": "\\beta > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 459, + 377, + 472 + ], + "score": 1.0, + "content": "will lead to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 469, + 378, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 378, + 483 + ], + "score": 1.0, + "content": "surfaces with higher curvature details and will thus sharpen shapes.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 481, + 376, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 376, + 494 + ], + "score": 1.0, + "content": "In this paper, we will use mean curvature since it’s easy to compute", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 491, + 275, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 181, + 505 + ], + "score": 1.0, + "content": "with neural fields:", + "type": "text" + }, + { + "bbox": [ + 181, + 492, + 270, + 505 + ], + "score": 0.93, + "content": "\\kappa _ { f } ( \\mathbf { x } ) = \\mathrm { t r } \\mathcal { D } ( \\mathbf { n } _ { f } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 491, + 275, + 505 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 383, + 378, + 505 + ] + }, + { + "type": "image", + "bbox": [ + 384, + 386, + 503, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 384, + 386, + 503, + 461 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 384, + 386, + 503, + 461 + ], + "spans": [ + { + "bbox": [ + 384, + 386, + 503, + 461 + ], + "score": 0.957, + "type": "image", + "image_path": "f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 384, + 386, + 503, + 423.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 384, + 423.5, + 503, + 461.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 383, + 468, + 505, + 502 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 383, + 468, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 383, + 468, + 505, + 479 + ], + "score": 1.0, + "content": "Figure 1: L: SIREN learned", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 383, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 383, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "to fit the SDF of a square; R:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 383, + 491, + 494, + 502 + ], + "spans": [ + { + "bbox": [ + 383, + 491, + 494, + 502 + ], + "score": 1.0, + "content": "Zooming in on the surface.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + } + ], + "index": 24.75 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "One challenge is that the computation of curvature can be very noisy for neural fields using periodic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "activations. Figure 4 shows how an ostensibly smooth isosurface learned through SIREN [66] is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "actually quite rough when zoomed in. The curvature evaluated on such a rough surface can be too", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "noisy to be used for training. To alleviate this issue, we only compute the curvature regularization in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 394, + 564 + ], + "score": 1.0, + "content": "areas where the curvature of the level set is less than a certain threshold", + "type": "text" + }, + { + "bbox": [ + 395, + 554, + 402, + 562 + ], + "score": 0.69, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 552, + 505, + 564 + ], + "score": 1.0, + "content": ". Formally, we define this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 563, + 504, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 136, + 577 + ], + "score": 1.0, + "content": "area as", + "type": "text" + }, + { + "bbox": [ + 137, + 563, + 292, + 576 + ], + "score": 0.91, + "content": "V _ { \\tau } = \\{ \\mathbf { x } \\in U | \\operatorname* { m a x } ( | \\kappa _ { G _ { \\theta } } | , | \\kappa _ { F } | ) < \\tau \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 563, + 492, + 577 + ], + "score": 1.0, + "content": ". We use rejection sampling to sample points from", + "type": "text" + }, + { + "bbox": [ + 492, + 563, + 504, + 574 + ], + "score": 0.84, + "content": "V _ { \\tau }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 272, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 272, + 587 + ], + "score": 1.0, + "content": "when computing the loss during training.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 508, + 506, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "Results. We follow prior works [20, 76] to use Armadillo [40] and a sphere with one half of it", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "corrupted by Gaussian noise. We compare our algorithm to two baselines. The first baseline directly", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "applies the smoothing algorithm developed by Taubin [76] to the mesh extracted from the neural field", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "using Marching cube [44]. The second baseline applies the filtering algorithms on meshes simplified", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "by quadratic decimation [27]. The input neural fields are created following the procedure of Park", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "et al. [56]. The results are shown in Figure 2. The first baseline fails to smooth or sharpen the surface", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "appropriately. It only modifies the surface with high-frequency noise. While the second baseline can", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 678, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 690 + ], + "score": 1.0, + "content": "filter the surface correctly, it introduces discretization artifacts due to the decimation process. This", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "suggests it is challenging to filter the neural field surface with mesh processing algorithms since these", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "algorithms are sensitive to the quality of surface discretization. On the other hand, our algorithm can", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 711, + 488, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 488, + 723 + ], + "score": 1.0, + "content": "produce good filtering results without the need to maintain a good discretization of the surface.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 601, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 71, + 191, + 84 + ], + "lines": [ + { + "bbox": [ + 104, + 69, + 192, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 69, + 192, + 87 + ], + "score": 1.0, + "content": "5 Deformation", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 95, + 506, + 173 + ], + "lines": [ + { + "bbox": [ + 104, + 94, + 508, + 111 + ], + "spans": [ + { + "bbox": [ + 104, + 94, + 383, + 111 + ], + "score": 1.0, + "content": "To deform a shape, the user will choose a set of deformation handles", + "type": "text" + }, + { + "bbox": [ + 383, + 96, + 417, + 108 + ], + "score": 0.92, + "content": "\\{ { \\bf h } _ { i } \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 94, + 491, + 111 + ], + "score": 1.0, + "content": ". For each handles", + "type": "text" + }, + { + "bbox": [ + 491, + 96, + 502, + 107 + ], + "score": 0.86, + "content": "\\mathbf { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 94, + 508, + 111 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 252, + 119 + ], + "score": 1.0, + "content": "the user will specify a target location", + "type": "text" + }, + { + "bbox": [ + 252, + 108, + 262, + 118 + ], + "score": 0.87, + "content": "\\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 106, + 506, + 119 + ], + "score": 1.0, + "content": "describing where the handle will be dragged to. Users can set", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 118, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 138, + 129 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { i } = \\mathbf { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 118, + 505, + 130 + ], + "score": 1.0, + "content": "to enforce a part of the surface to be unchanged. Given this input, there are two goals for the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 129, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 506, + 141 + ], + "score": 1.0, + "content": "shape deformation algorithm: 1) satisfying user inputs and 2) ensuring that the deformation resembles", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "the natural behavior of real objects. The input shape will be represented by the zero-isosurface", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 151, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 176, + 163 + ], + "score": 1.0, + "content": "of a neural field", + "type": "text" + }, + { + "bbox": [ + 176, + 151, + 185, + 160 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 151, + 461, + 163 + ], + "score": 1.0, + "content": "in our setting. The algorithm must therefore output a neural field", + "type": "text" + }, + { + "bbox": [ + 461, + 151, + 474, + 162 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 151, + 506, + 163 + ], + "score": 1.0, + "content": "whose", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 161, + 468, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 468, + 174 + ], + "score": 1.0, + "content": "zero-isosurface represents the deformed shape that satisfies the aforementioned two goals.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 105, + 177, + 480, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 480, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 480, + 191 + ], + "score": 1.0, + "content": "In this setting, deformation can be formulated as solving a constrained optimization problem:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 194, + 425, + 212 + ], + "lines": [ + { + "bbox": [ + 183, + 194, + 425, + 212 + ], + "spans": [ + { + "bbox": [ + 183, + 194, + 425, + 212 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } _ { \\theta } \\ \\mathcal { L } _ { d f m } ( G _ { \\theta } , F ) \\quad \\mathrm { s . t . } \\ \\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0 , 1 \\leq i \\leq n ,", + "type": "interline_equation", + "image_path": "d2141fab6172c932163522b1a6abc7db12b2a399d6dea33ec0fdf70bc739ed9e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 183, + 194, + 425, + 212 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 506, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 193, + 231 + ], + "score": 1.0, + "content": "where the objective", + "type": "text" + }, + { + "bbox": [ + 194, + 218, + 249, + 231 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { d f m } ( G _ { \\theta } , F )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 217, + 505, + 231 + ], + "score": 1.0, + "content": "measures how natural the deformation is. The constraints", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 229, + 416, + 243 + ], + "spans": [ + { + "bbox": [ + 107, + 230, + 199, + 242 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 229, + 416, + 243 + ], + "score": 1.0, + "content": "ensure that the result deformation matches user input.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "One way to ensure a natural-looking deformation is to assume that the surface behaves like a thin", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "elastic shell, which is resistant to stretching and bending [1, 70]. Traditional mesh-based algorithms", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "model elasticity by minimizing the thin shell energy that penalizes stretching or bending happened", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "to any local patch. Naively adapting such training objectives from mesh-based algorithms to neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "fields is challenging because these algorithms assume dense correspondences between two surfaces", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 301, + 278, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 278, + 313 + ], + "score": 1.0, + "content": "and efficient access to geodesic neighbors.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "In this section, we will address these challenges by following strategy. To measure how much bending", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "or stretching happened to the whole surface, we will first divide the surface into infinitesimal patches", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "and then sum the amount of bending or stretching that happened to each patch. To achieve that, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 348, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 363 + ], + "score": 1.0, + "content": "first develop a sampling schema to sample these infinitesimal patches uniformly from the input shapes", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "(Sec 5.1). Then we warp the input shape with an invertible neural network to achieve correspondences", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 372, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 384 + ], + "score": 1.0, + "content": "between the input and output surfaces (Sec 5.2). Finally, we derive ways that measure the amount of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 382, + 409, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 409, + 395 + ], + "score": 1.0, + "content": "bending and stretching between two infinitesimal surface patches (Sec 5.3).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 406, + 171, + 419 + ], + "lines": [ + { + "bbox": [ + 104, + 404, + 173, + 422 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 173, + 422 + ], + "score": 1.0, + "content": "5.1 Sampling", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 337, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 338, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 338, + 439 + ], + "score": 1.0, + "content": "Our first step is to sample infinitesimal surface patches uni-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 438, + 337, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 337, + 450 + ], + "score": 1.0, + "content": "formly to the surface area from the zero-isosurface of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 338, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 338, + 461 + ], + "score": 1.0, + "content": "neural field. Each infinitesimal surface patch can be rep-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 460, + 336, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 336, + 471 + ], + "score": 1.0, + "content": "resented by a surface point and its local derivatives. With", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 470, + 337, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 337, + 483 + ], + "score": 1.0, + "content": "this said, the problem amounts to sampling points from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 481, + 337, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 337, + 493 + ], + "score": 1.0, + "content": "the zero-isosurface. Formally, we are given a neural field", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 492, + 337, + 505 + ], + "spans": [ + { + "bbox": [ + 107, + 493, + 115, + 502 + ], + "score": 0.78, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 492, + 337, + 505 + ], + "score": 1.0, + "content": "that approximates the signed distance field of the input", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 503, + 337, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 337, + 516 + ], + "score": 1.0, + "content": "shape. The goal is to find a way to sample an arbitrary", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 513, + 337, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 271, + 527 + ], + "score": 1.0, + "content": "number of points on its zero-isosurface", + "type": "text" + }, + { + "bbox": [ + 272, + 515, + 291, + 525 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 513, + 337, + 527 + ], + "score": 1.0, + "content": ". One way", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 525, + 337, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 198, + 537 + ], + "score": 1.0, + "content": "to sample points from", + "type": "text" + }, + { + "bbox": [ + 198, + 525, + 218, + 536 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 525, + 337, + 537 + ], + "score": 1.0, + "content": "is to run Langevin dynamics", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30.5 + }, + { + "type": "image", + "bbox": [ + 344, + 429, + 504, + 502 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 344, + 429, + 504, + 502 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 429, + 504, + 502 + ], + "spans": [ + { + "bbox": [ + 344, + 429, + 504, + 502 + ], + "score": 0.963, + "type": "image", + "image_path": "1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 344, + 429, + 504, + 443.6 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 344, + 443.6, + 504, + 458.20000000000005 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 344, + 458.20000000000005, + 504, + 472.80000000000007 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 344, + 472.80000000000007, + 504, + 487.4000000000001 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 344, + 487.4000000000001, + 504, + 502.0000000000001 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 343, + 507, + 505, + 529 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 343, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "Figure 3: Sampling from dino. L: no", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 343, + 516, + 482, + 531 + ], + "spans": [ + { + "bbox": [ + 343, + 516, + 482, + 531 + ], + "score": 1.0, + "content": "rejection; R: ours (with rejection).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "index": 39.75 + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 231, + 549 + ], + "score": 1.0, + "content": "using the gradient of the field", + "type": "text" + }, + { + "bbox": [ + 232, + 537, + 241, + 546 + ], + "score": 0.8, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 535, + 276, + 549 + ], + "score": 1.0, + "content": "[5, 13]:", + "type": "text" + }, + { + "bbox": [ + 276, + 536, + 391, + 548 + ], + "score": 0.69, + "content": "\\mathbf { x } _ { t + 1 } \\overset { \\cdot } { = } \\tilde { \\mathbf { x } } _ { t } - F ( \\tilde { \\mathbf { x } } _ { t } ) n _ { F } ( \\tilde { \\mathbf { x } } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 535, + 403, + 549 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 403, + 536, + 471, + 548 + ], + "score": 0.85, + "content": "\\tilde { \\mathbf { x } } _ { t } \\sim \\mathcal { N } ( \\mathbf { x } _ { t } , \\sigma \\mathbf { I } )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 535, + 476, + 549 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 476, + 537, + 488, + 547 + ], + "score": 0.74, + "content": "\\mathbf { x } _ { \\mathrm { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 278, + 560 + ], + "score": 1.0, + "content": "initialized by sampling uniformly within", + "type": "text" + }, + { + "bbox": [ + 278, + 547, + 311, + 559 + ], + "score": 0.9, + "content": "[ - 1 , 1 ] ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 545, + 506, + 560 + ], + "score": 1.0, + "content": ". Here we also leverage an SDF property: the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 201, + 571 + ], + "score": 1.0, + "content": "closest surface point to", + "type": "text" + }, + { + "bbox": [ + 201, + 560, + 209, + 568 + ], + "score": 0.47, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 557, + 293, + 571 + ], + "score": 1.0, + "content": "can be computed by", + "type": "text" + }, + { + "bbox": [ + 293, + 558, + 354, + 570 + ], + "score": 0.9, + "content": "{ \\bf x } - { \\bf n } ( { \\bf x } ) F ( { \\bf x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 557, + 505, + 571 + ], + "score": 1.0, + "content": "(Sec 3). While this process produces", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "points guaranteed to be on the zero-isosurface, the mixing time of the procedure is very long without", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 580, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 592 + ], + "score": 1.0, + "content": "appropriate coarse-to-fine annealing [68]. Running this process for limited iterations results in point", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "samples that are concentrating near the high curvature area, as shown on the left side of Figure 5.1.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 106, + 607, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 374, + 620 + ], + "score": 1.0, + "content": "To alleviate this issue, we instantiate the sampling procedure with", + "type": "text" + }, + { + "bbox": [ + 374, + 609, + 386, + 618 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { \\mathrm { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 605, + 506, + 620 + ], + "score": 1.0, + "content": "sampled from a rough shape.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "This can be done by first sampling uniformly from the bounded space and rejecting points that are", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 245, + 641 + ], + "score": 1.0, + "content": "too far away from the isosurface:", + "type": "text" + }, + { + "bbox": [ + 245, + 629, + 385, + 641 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 0 } \\sim \\{ \\mathbf { x } \\in U ( - 1 , 1 ) | F ( \\mathbf { x } ) < \\tau _ { s } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 629, + 450, + 641 + ], + "score": 1.0, + "content": ". We found that", + "type": "text" + }, + { + "bbox": [ + 451, + 631, + 461, + 640 + ], + "score": 0.84, + "content": "\\tau _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "can be set", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "to a relatively large number (e.g., about 0.1). This prevents high rejection rates without sacrificing", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 650, + 415, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 415, + 664 + ], + "score": 1.0, + "content": "sampling quality. Figure 5.1 shows that our method creates uniform samples.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "We quantitatively evaluate the effectiveness of the sampling scheme. Specifically, we compare our", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 378, + 691 + ], + "score": 1.0, + "content": "sampling scheme with directly applying Langevin dynamics [13] (", + "type": "text" + }, + { + "bbox": [ + 378, + 679, + 392, + 688 + ], + "score": 0.68, + "content": "L D", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "in Table 1). To do that, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 687, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 703 + ], + "score": 1.0, + "content": "compute the Chamfer Distance (CD) and Earth Mover Distance (EMD) between points sampled by", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "the valuated algorithms and points sampled uniformly from the extracted mesh. For both metrics,", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 710, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 507, + 724 + ], + "score": 1.0, + "content": "lower values indicate better performance Since larger surfaces can lead to larger CD and EMD values,", + "type": "text" + } + ], + "index": 58 + } + ], + "index": 56 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 71, + 191, + 84 + ], + "lines": [ + { + "bbox": [ + 104, + 69, + 192, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 69, + 192, + 87 + ], + "score": 1.0, + "content": "5 Deformation", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 95, + 506, + 173 + ], + "lines": [ + { + "bbox": [ + 104, + 94, + 508, + 111 + ], + "spans": [ + { + "bbox": [ + 104, + 94, + 383, + 111 + ], + "score": 1.0, + "content": "To deform a shape, the user will choose a set of deformation handles", + "type": "text" + }, + { + "bbox": [ + 383, + 96, + 417, + 108 + ], + "score": 0.92, + "content": "\\{ { \\bf h } _ { i } \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 94, + 491, + 111 + ], + "score": 1.0, + "content": ". For each handles", + "type": "text" + }, + { + "bbox": [ + 491, + 96, + 502, + 107 + ], + "score": 0.86, + "content": "\\mathbf { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 94, + 508, + 111 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 252, + 119 + ], + "score": 1.0, + "content": "the user will specify a target location", + "type": "text" + }, + { + "bbox": [ + 252, + 108, + 262, + 118 + ], + "score": 0.87, + "content": "\\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 106, + 506, + 119 + ], + "score": 1.0, + "content": "describing where the handle will be dragged to. Users can set", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 118, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 138, + 129 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { i } = \\mathbf { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 118, + 505, + 130 + ], + "score": 1.0, + "content": "to enforce a part of the surface to be unchanged. Given this input, there are two goals for the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 129, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 506, + 141 + ], + "score": 1.0, + "content": "shape deformation algorithm: 1) satisfying user inputs and 2) ensuring that the deformation resembles", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "the natural behavior of real objects. The input shape will be represented by the zero-isosurface", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 151, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 176, + 163 + ], + "score": 1.0, + "content": "of a neural field", + "type": "text" + }, + { + "bbox": [ + 176, + 151, + 185, + 160 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 151, + 461, + 163 + ], + "score": 1.0, + "content": "in our setting. The algorithm must therefore output a neural field", + "type": "text" + }, + { + "bbox": [ + 461, + 151, + 474, + 162 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 151, + 506, + 163 + ], + "score": 1.0, + "content": "whose", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 161, + 468, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 468, + 174 + ], + "score": 1.0, + "content": "zero-isosurface represents the deformed shape that satisfies the aforementioned two goals.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 94, + 508, + 174 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 177, + 480, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 480, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 480, + 191 + ], + "score": 1.0, + "content": "In this setting, deformation can be formulated as solving a constrained optimization problem:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 176, + 480, + 191 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 194, + 425, + 212 + ], + "lines": [ + { + "bbox": [ + 183, + 194, + 425, + 212 + ], + "spans": [ + { + "bbox": [ + 183, + 194, + 425, + 212 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } _ { \\theta } \\ \\mathcal { L } _ { d f m } ( G _ { \\theta } , F ) \\quad \\mathrm { s . t . } \\ \\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0 , 1 \\leq i \\leq n ,", + "type": "interline_equation", + "image_path": "d2141fab6172c932163522b1a6abc7db12b2a399d6dea33ec0fdf70bc739ed9e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 183, + 194, + 425, + 212 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 506, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 193, + 231 + ], + "score": 1.0, + "content": "where the objective", + "type": "text" + }, + { + "bbox": [ + 194, + 218, + 249, + 231 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { d f m } ( G _ { \\theta } , F )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 217, + 505, + 231 + ], + "score": 1.0, + "content": "measures how natural the deformation is. The constraints", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 229, + 416, + 243 + ], + "spans": [ + { + "bbox": [ + 107, + 230, + 199, + 242 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 229, + 416, + 243 + ], + "score": 1.0, + "content": "ensure that the result deformation matches user input.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 217, + 505, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "One way to ensure a natural-looking deformation is to assume that the surface behaves like a thin", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "elastic shell, which is resistant to stretching and bending [1, 70]. Traditional mesh-based algorithms", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "model elasticity by minimizing the thin shell energy that penalizes stretching or bending happened", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "to any local patch. Naively adapting such training objectives from mesh-based algorithms to neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "fields is challenging because these algorithms assume dense correspondences between two surfaces", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 301, + 278, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 278, + 313 + ], + "score": 1.0, + "content": "and efficient access to geodesic neighbors.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 246, + 505, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "In this section, we will address these challenges by following strategy. To measure how much bending", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "or stretching happened to the whole surface, we will first divide the surface into infinitesimal patches", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "and then sum the amount of bending or stretching that happened to each patch. To achieve that, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 348, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 363 + ], + "score": 1.0, + "content": "first develop a sampling schema to sample these infinitesimal patches uniformly from the input shapes", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "(Sec 5.1). Then we warp the input shape with an invertible neural network to achieve correspondences", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 372, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 384 + ], + "score": 1.0, + "content": "between the input and output surfaces (Sec 5.2). Finally, we derive ways that measure the amount of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 382, + 409, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 409, + 395 + ], + "score": 1.0, + "content": "bending and stretching between two infinitesimal surface patches (Sec 5.3).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 316, + 506, + 395 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 406, + 171, + 419 + ], + "lines": [ + { + "bbox": [ + 104, + 404, + 173, + 422 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 173, + 422 + ], + "score": 1.0, + "content": "5.1 Sampling", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 337, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 338, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 338, + 439 + ], + "score": 1.0, + "content": "Our first step is to sample infinitesimal surface patches uni-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 438, + 337, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 337, + 450 + ], + "score": 1.0, + "content": "formly to the surface area from the zero-isosurface of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 448, + 338, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 338, + 461 + ], + "score": 1.0, + "content": "neural field. Each infinitesimal surface patch can be rep-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 460, + 336, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 336, + 471 + ], + "score": 1.0, + "content": "resented by a surface point and its local derivatives. With", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 470, + 337, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 337, + 483 + ], + "score": 1.0, + "content": "this said, the problem amounts to sampling points from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 481, + 337, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 337, + 493 + ], + "score": 1.0, + "content": "the zero-isosurface. Formally, we are given a neural field", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 492, + 337, + 505 + ], + "spans": [ + { + "bbox": [ + 107, + 493, + 115, + 502 + ], + "score": 0.78, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 492, + 337, + 505 + ], + "score": 1.0, + "content": "that approximates the signed distance field of the input", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 503, + 337, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 337, + 516 + ], + "score": 1.0, + "content": "shape. The goal is to find a way to sample an arbitrary", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 513, + 337, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 271, + 527 + ], + "score": 1.0, + "content": "number of points on its zero-isosurface", + "type": "text" + }, + { + "bbox": [ + 272, + 515, + 291, + 525 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 513, + 337, + 527 + ], + "score": 1.0, + "content": ". One way", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 525, + 337, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 198, + 537 + ], + "score": 1.0, + "content": "to sample points from", + "type": "text" + }, + { + "bbox": [ + 198, + 525, + 218, + 536 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 525, + 337, + 537 + ], + "score": 1.0, + "content": "is to run Langevin dynamics", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 231, + 549 + ], + "score": 1.0, + "content": "using the gradient of the field", + "type": "text" + }, + { + "bbox": [ + 232, + 537, + 241, + 546 + ], + "score": 0.8, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 535, + 276, + 549 + ], + "score": 1.0, + "content": "[5, 13]:", + "type": "text" + }, + { + "bbox": [ + 276, + 536, + 391, + 548 + ], + "score": 0.69, + "content": "\\mathbf { x } _ { t + 1 } \\overset { \\cdot } { = } \\tilde { \\mathbf { x } } _ { t } - F ( \\tilde { \\mathbf { x } } _ { t } ) n _ { F } ( \\tilde { \\mathbf { x } } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 535, + 403, + 549 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 403, + 536, + 471, + 548 + ], + "score": 0.85, + "content": "\\tilde { \\mathbf { x } } _ { t } \\sim \\mathcal { N } ( \\mathbf { x } _ { t } , \\sigma \\mathbf { I } )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 535, + 476, + 549 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 476, + 537, + 488, + 547 + ], + "score": 0.74, + "content": "\\mathbf { x } _ { \\mathrm { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 278, + 560 + ], + "score": 1.0, + "content": "initialized by sampling uniformly within", + "type": "text" + }, + { + "bbox": [ + 278, + 547, + 311, + 559 + ], + "score": 0.9, + "content": "[ - 1 , 1 ] ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 545, + 506, + 560 + ], + "score": 1.0, + "content": ". Here we also leverage an SDF property: the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 201, + 571 + ], + "score": 1.0, + "content": "closest surface point to", + "type": "text" + }, + { + "bbox": [ + 201, + 560, + 209, + 568 + ], + "score": 0.47, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 557, + 293, + 571 + ], + "score": 1.0, + "content": "can be computed by", + "type": "text" + }, + { + "bbox": [ + 293, + 558, + 354, + 570 + ], + "score": 0.9, + "content": "{ \\bf x } - { \\bf n } ( { \\bf x } ) F ( { \\bf x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 557, + 505, + 571 + ], + "score": 1.0, + "content": "(Sec 3). While this process produces", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "points guaranteed to be on the zero-isosurface, the mixing time of the procedure is very long without", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 580, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 506, + 592 + ], + "score": 1.0, + "content": "appropriate coarse-to-fine annealing [68]. Running this process for limited iterations results in point", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "samples that are concentrating near the high curvature area, as shown on the left side of Figure 5.1.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 426, + 338, + 537 + ] + }, + { + "type": "image", + "bbox": [ + 344, + 429, + 504, + 502 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 344, + 429, + 504, + 502 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 429, + 504, + 502 + ], + "spans": [ + { + "bbox": [ + 344, + 429, + 504, + 502 + ], + "score": 0.963, + "type": "image", + "image_path": "1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 344, + 429, + 504, + 443.6 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 344, + 443.6, + 504, + 458.20000000000005 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 344, + 458.20000000000005, + 504, + 472.80000000000007 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 344, + 472.80000000000007, + 504, + 487.4000000000001 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 344, + 487.4000000000001, + 504, + 502.0000000000001 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 343, + 507, + 505, + 529 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 343, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "Figure 3: Sampling from dino. L: no", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 343, + 516, + 482, + 531 + ], + "spans": [ + { + "bbox": [ + 343, + 516, + 482, + 531 + ], + "score": 1.0, + "content": "rejection; R: ours (with rejection).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "index": 39.75 + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 505, + 603 + ], + "lines": [], + "index": 45.5, + "bbox_fs": [ + 104, + 535, + 506, + 603 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 607, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 374, + 620 + ], + "score": 1.0, + "content": "To alleviate this issue, we instantiate the sampling procedure with", + "type": "text" + }, + { + "bbox": [ + 374, + 609, + 386, + 618 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { \\mathrm { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 605, + 506, + 620 + ], + "score": 1.0, + "content": "sampled from a rough shape.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "This can be done by first sampling uniformly from the bounded space and rejecting points that are", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 245, + 641 + ], + "score": 1.0, + "content": "too far away from the isosurface:", + "type": "text" + }, + { + "bbox": [ + 245, + 629, + 385, + 641 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 0 } \\sim \\{ \\mathbf { x } \\in U ( - 1 , 1 ) | F ( \\mathbf { x } ) < \\tau _ { s } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 629, + 450, + 641 + ], + "score": 1.0, + "content": ". We found that", + "type": "text" + }, + { + "bbox": [ + 451, + 631, + 461, + 640 + ], + "score": 0.84, + "content": "\\tau _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "can be set", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "to a relatively large number (e.g., about 0.1). This prevents high rejection rates without sacrificing", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 650, + 415, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 415, + 664 + ], + "score": 1.0, + "content": "sampling quality. Figure 5.1 shows that our method creates uniform samples.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 605, + 506, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "We quantitatively evaluate the effectiveness of the sampling scheme. Specifically, we compare our", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 378, + 691 + ], + "score": 1.0, + "content": "sampling scheme with directly applying Langevin dynamics [13] (", + "type": "text" + }, + { + "bbox": [ + 378, + 679, + 392, + 688 + ], + "score": 0.68, + "content": "L D", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "in Table 1). To do that, we", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 687, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 703 + ], + "score": 1.0, + "content": "compute the Chamfer Distance (CD) and Earth Mover Distance (EMD) between points sampled by", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "the valuated algorithms and points sampled uniformly from the extracted mesh. For both metrics,", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 710, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 507, + 724 + ], + "score": 1.0, + "content": "lower values indicate better performance Since larger surfaces can lead to larger CD and EMD values,", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "we normalize the metrics by the values obtained by comparing two sets of uniform samples from the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 351, + 96 + ], + "score": 1.0, + "content": "mesh (i.e., CDr and EMDr) The results show that initializing", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 351, + 85, + 363, + 95 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { \\mathrm { 0 } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 364, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "by rejection sampling significantly", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "improves both CD and EMD compared to naively applying Langevin dynamics, at a minor cost in", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 168, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 168, + 118 + ], + "score": 1.0, + "content": "sampling time.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 56, + "bbox_fs": [ + 105, + 667, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "we normalize the metrics by the values obtained by comparing two sets of uniform samples from the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 351, + 96 + ], + "score": 1.0, + "content": "mesh (i.e., CDr and EMDr) The results show that initializing", + "type": "text" + }, + { + "bbox": [ + 351, + 85, + 363, + 95 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { \\mathrm { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "by rejection sampling significantly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "improves both CD and EMD compared to naively applying Langevin dynamics, at a minor cost in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 168, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 168, + 118 + ], + "score": 1.0, + "content": "sampling time.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 107, + 133, + 253, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 253, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 253, + 146 + ], + "score": 1.0, + "content": "5.2 Invertible Deformation Field", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 337, + 255 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 338, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 338, + 167 + ], + "score": 1.0, + "content": "After we obtained surface points samples from zero isosur-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 336, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 336, + 177 + ], + "score": 1.0, + "content": "faces of the input neural fields, the next step is to deform", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 177, + 337, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 337, + 189 + ], + "score": 1.0, + "content": "these surface points to the output shapes. One way to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 188, + 337, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 337, + 199 + ], + "score": 1.0, + "content": "deform neural fields is to warp the coordinate space of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 337, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 337, + 211 + ], + "score": 1.0, + "content": "the input network using a deformation field predicted by", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 338, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 176, + 222 + ], + "score": 1.0, + "content": "a neural network", + "type": "text" + }, + { + "bbox": [ + 177, + 210, + 190, + 221 + ], + "score": 0.86, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 210, + 338, + 222 + ], + "score": 1.0, + "content": "[25, 43, 57]. Under this framework,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 338, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 252, + 234 + ], + "score": 1.0, + "content": "the output network can be defined as", + "type": "text" + }, + { + "bbox": [ + 252, + 221, + 334, + 233 + ], + "score": 0.93, + "content": "G _ { \\theta } ( \\mathbf { x } ) = F ( D _ { \\theta } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 219, + 338, + 234 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 230, + 338, + 245 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 191, + 245 + ], + "score": 1.0, + "content": "Then the constraint", + "type": "text" + }, + { + "bbox": [ + 191, + 232, + 258, + 243 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 230, + 338, + 245 + ], + "score": 1.0, + "content": "can be defined as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 242, + 245, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 240, + 255 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } ) = \\| D _ { \\theta } ( \\mathbf { t } ) - \\mathbf { h } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 242, + 245, + 255 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9 + }, + { + "type": "table", + "bbox": [ + 344, + 179, + 507, + 253 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 343, + 155, + 505, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 343, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Table 1: Our sampling method achieves", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 344, + 165, + 470, + 177 + ], + "spans": [ + { + "bbox": [ + 344, + 165, + 470, + 177 + ], + "score": 1.0, + "content": "better results than the baseline.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "table_body", + "bbox": [ + 344, + 179, + 507, + 253 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 179, + 507, + 253 + ], + "spans": [ + { + "bbox": [ + 344, + 179, + 507, + 253 + ], + "score": 0.964, + "html": "
Dino Armadillo
MetricsLDOursLDOurs
CDr (↓)1.541.041.361.02
EMDr (↓)3.381.153.301.08
Time0.150.210.120.18
", + "type": "table", + "image_path": "1e60e5f175445785ae5b7f05d14eca9ff4503fbba92a5039188753eade047450.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 344, + 179, + 507, + 193.8 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 344, + 193.8, + 507, + 208.60000000000002 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 344, + 208.60000000000002, + 507, + 223.40000000000003 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 344, + 223.40000000000003, + 507, + 238.20000000000005 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 344, + 238.20000000000005, + 507, + 253.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 16.25 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 268, + 271 + ], + "score": 1.0, + "content": "Ideally, we would like the deformation", + "type": "text" + }, + { + "bbox": [ + 268, + 259, + 282, + 270 + ], + "score": 0.92, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "to be continuous and invertible. This will allow us to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 270, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 506, + 282 + ], + "score": 1.0, + "content": "create well-behaved one-to-one correspondences between points on the deform shape (i.e., x) and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 281, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 233, + 293 + ], + "score": 1.0, + "content": "points on the input shape (i.e.,", + "type": "text" + }, + { + "bbox": [ + 234, + 281, + 263, + 293 + ], + "score": 0.91, + "content": "D _ { \\theta } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 281, + 376, + 293 + ], + "score": 1.0, + "content": ". To achieve this, we make", + "type": "text" + }, + { + "bbox": [ + 377, + 281, + 391, + 292 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 281, + 506, + 293 + ], + "score": 1.0, + "content": "to be an invertible network", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 292, + 336, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 336, + 304 + ], + "score": 1.0, + "content": "composed of a sequence of invertible residual blocks [7].", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "score": 1.0, + "content": "Invertible residual block. Prior works [7, 17] have shown that a sufficient condition for the residual", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 328, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 132, + 343 + ], + "score": 1.0, + "content": "block", + "type": "text" + }, + { + "bbox": [ + 132, + 329, + 205, + 342 + ], + "score": 0.92, + "content": "f ( x ) = x + g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 328, + 440, + 343 + ], + "score": 1.0, + "content": "to be invertible is that the Lipschitz constant of function", + "type": "text" + }, + { + "bbox": [ + 440, + 331, + 447, + 341 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 328, + 507, + 343 + ], + "score": 1.0, + "content": "is less than 1.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 236, + 353 + ], + "score": 1.0, + "content": "The architecture of the network", + "type": "text" + }, + { + "bbox": [ + 236, + 340, + 256, + 353 + ], + "score": 0.93, + "content": "g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "is usually composed of spectral normalized linear layers and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 352, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 504, + 363 + ], + "score": 1.0, + "content": "Lipschitz continuous nonlinearities such as ELU [21]. The inverse of such residual block can be", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 298, + 375 + ], + "score": 1.0, + "content": "computed by finding the fixed point of function", + "type": "text" + }, + { + "bbox": [ + 298, + 362, + 356, + 374 + ], + "score": 0.92, + "content": "y \\mapsto y - g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "[7]. Intuitively, deforming using one", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 373, + 438, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 307, + 385 + ], + "score": 1.0, + "content": "invertible residual block amounts to moving point", + "type": "text" + }, + { + "bbox": [ + 308, + 376, + 315, + 383 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 374, + 414, + 385 + ], + "score": 1.0, + "content": "with deformation vector", + "type": "text" + }, + { + "bbox": [ + 415, + 373, + 434, + 385 + ], + "score": 0.93, + "content": "g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 374, + 438, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "score": 1.0, + "content": "Lipschitz continuous positional encoding. Applying such architecture directly without modifi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "cation fails to produce deformations with many different local rotations. Recent research suggests", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "that periodic functions are essential for coordinate MLPs to predict complex signals [47, 66, 74].", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 453, + 446 + ], + "score": 1.0, + "content": "Periodic functions are usually used as positional encoding or activations of the form", + "type": "text" + }, + { + "bbox": [ + 453, + 433, + 502, + 445 + ], + "score": 0.89, + "content": "\\sin ( a x + b )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 433, + 506, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 132, + 456 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 446, + 139, + 454 + ], + "score": 0.72, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "controls the frequency of the activation. To use such periodic function as part of the invertible", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "residual block without restricting the frequency, we normalize the output of the periodic function", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 107, + 465, + 176, + 478 + ], + "score": 0.92, + "content": "\\sin ( a x + b ) | a | ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 465, + 506, + 478 + ], + "score": 1.0, + "content": ", bringing it is Lipschitz constant below 1. Formally, the positional encoding with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 477, + 342, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 342, + 489 + ], + "score": 1.0, + "content": "normalized Lipschitz constant applied to one dimension is", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 496, + 480, + 525 + ], + "lines": [ + { + "bbox": [ + 131, + 496, + 480, + 525 + ], + "spans": [ + { + "bbox": [ + 131, + 496, + 480, + 525 + ], + "score": 0.91, + "content": "\\gamma _ { i } ( { \\bf x } ) = \\frac { 1 } { \\sqrt { 2 L + 1 } } \\left( x _ { i } , \\frac { \\cos ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\frac { \\sin ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\ldots , \\frac { \\cos ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } , \\frac { \\sin ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } \\right) .", + "type": "interline_equation", + "image_path": "115f0ef27b3ae276645a06d8c15371d771109c767a72d8ffc95998a6ec1d55db.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 131, + 496, + 480, + 505.6666666666667 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 131, + 505.6666666666667, + 480, + 515.3333333333334 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 131, + 515.3333333333334, + 480, + 525.0 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "We will apply such encoding to each of the dimensions of the input coordinate for the body of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 102, + 542, + 394, + 566 + ], + "spans": [ + { + "bbox": [ + 102, + 542, + 209, + 566 + ], + "score": 1.0, + "content": "invertible residual block:", + "type": "text" + }, + { + "bbox": [ + 209, + 543, + 389, + 564 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { R _ { \\theta } } ( \\mathbf { x } ) = \\mathbf { x } + g _ { \\theta } \\left( \\frac { 1 } { \\sqrt { d } } [ \\gamma _ { 1 } \\left( \\mathbf { x } \\right) , \\mathbf { \\Omega } , \\mathbf { \\Omega } . . . , \\gamma _ { d } \\left( \\mathbf { \\bar { x } } \\right) ] \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 542, + 394, + 566 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 336, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 338, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 338, + 590 + ], + "score": 1.0, + "content": "Ablation. We conduct ablation studies on two architec-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "score": 1.0, + "content": "ture choices: invertibility and positional encoding. In", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 600, + 336, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 336, + 612 + ], + "score": 1.0, + "content": "this experiment, we deform a neural field representing the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 610, + 337, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 337, + 622 + ], + "score": 1.0, + "content": "SDF of a 2D rectangle. We optimize each ablation case", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 621, + 337, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 337, + 635 + ], + "score": 1.0, + "content": "to satisfies the user specified constraints with following", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 628, + 340, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 129, + 646 + ], + "score": 1.0, + "content": "loss:", + "type": "text" + }, + { + "bbox": [ + 130, + 633, + 229, + 647 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left\\| D _ { \\theta } ( \\mathbf { h } _ { i } ) - \\mathbf { t } _ { i } \\right\\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 628, + 340, + 652 + ], + "score": 1.0, + "content": ". The results are shown in", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 645, + 337, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 337, + 657 + ], + "score": 1.0, + "content": "Figure 4. If we replace the invertible architecture with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 656, + 337, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 337, + 668 + ], + "score": 1.0, + "content": "SIREN as done in Deng et al. [25], the deformation field", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 667, + 337, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 337, + 679 + ], + "score": 1.0, + "content": "will tend to break topology (No inverse). Removing the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 678, + 337, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 337, + 690 + ], + "score": 1.0, + "content": "positional encoding will fail to create a complex field (No", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 688, + 336, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 121, + 699 + ], + "score": 0.71, + "content": "P E _ { \\mathrm { { \\ell } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 688, + 336, + 701 + ], + "score": 1.0, + "content": "). Our architecture can create a reasonable guess (No", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 699, + 337, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 337, + 712 + ], + "score": 1.0, + "content": "loss). This shows that our network architecture prioritizes", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 709, + 285, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 285, + 724 + ], + "score": 1.0, + "content": "natural deformation that preserves topology.", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 50 + }, + { + "type": "image", + "bbox": [ + 344, + 580, + 495, + 648 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 344, + 580, + 495, + 648 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 580, + 495, + 648 + ], + "spans": [ + { + "bbox": [ + 344, + 580, + 495, + 648 + ], + "score": 0.958, + "type": "image", + "image_path": "513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg" + } + ] + } + ], + "index": 57.5, + "virtual_lines": [ + { + "bbox": [ + 344, + 580, + 495, + 614.0 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 344, + 614.0, + 495, + 648.0 + ], + "spans": [], + "index": 58 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 659, + 505, + 693 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 659, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 343, + 659, + 505, + 670 + ], + "score": 1.0, + "content": "Figure 4: Architecture ablation on 2D", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 344, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 344, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "SDF deformation. Blue points are han-", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 343, + 680, + 457, + 693 + ], + "spans": [ + { + "bbox": [ + 343, + 680, + 457, + 693 + ], + "score": 1.0, + "content": "dles; Red points are targets.", + "type": "text" + } + ], + "index": 61 + } + ], + "index": 60 + } + ], + "index": 58.75 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 117 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 72, + 506, + 118 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 133, + 253, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 253, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 253, + 146 + ], + "score": 1.0, + "content": "5.2 Invertible Deformation Field", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 337, + 255 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 338, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 338, + 167 + ], + "score": 1.0, + "content": "After we obtained surface points samples from zero isosur-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 336, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 336, + 177 + ], + "score": 1.0, + "content": "faces of the input neural fields, the next step is to deform", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 177, + 337, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 337, + 189 + ], + "score": 1.0, + "content": "these surface points to the output shapes. One way to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 188, + 337, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 337, + 199 + ], + "score": 1.0, + "content": "deform neural fields is to warp the coordinate space of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 337, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 337, + 211 + ], + "score": 1.0, + "content": "the input network using a deformation field predicted by", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 338, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 176, + 222 + ], + "score": 1.0, + "content": "a neural network", + "type": "text" + }, + { + "bbox": [ + 177, + 210, + 190, + 221 + ], + "score": 0.86, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 210, + 338, + 222 + ], + "score": 1.0, + "content": "[25, 43, 57]. Under this framework,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 338, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 252, + 234 + ], + "score": 1.0, + "content": "the output network can be defined as", + "type": "text" + }, + { + "bbox": [ + 252, + 221, + 334, + 233 + ], + "score": 0.93, + "content": "G _ { \\theta } ( \\mathbf { x } ) = F ( D _ { \\theta } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 219, + 338, + 234 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 230, + 338, + 245 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 191, + 245 + ], + "score": 1.0, + "content": "Then the constraint", + "type": "text" + }, + { + "bbox": [ + 191, + 232, + 258, + 243 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 230, + 338, + 245 + ], + "score": 1.0, + "content": "can be defined as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 242, + 245, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 240, + 255 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } ) = \\| D _ { \\theta } ( \\mathbf { t } ) - \\mathbf { h } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 242, + 245, + 255 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 154, + 338, + 255 + ] + }, + { + "type": "table", + "bbox": [ + 344, + 179, + 507, + 253 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 343, + 155, + 505, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 343, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Table 1: Our sampling method achieves", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 344, + 165, + 470, + 177 + ], + "spans": [ + { + "bbox": [ + 344, + 165, + 470, + 177 + ], + "score": 1.0, + "content": "better results than the baseline.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "table_body", + "bbox": [ + 344, + 179, + 507, + 253 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 179, + 507, + 253 + ], + "spans": [ + { + "bbox": [ + 344, + 179, + 507, + 253 + ], + "score": 0.964, + "html": "
Dino Armadillo
MetricsLDOursLDOurs
CDr (↓)1.541.041.361.02
EMDr (↓)3.381.153.301.08
Time0.150.210.120.18
", + "type": "table", + "image_path": "1e60e5f175445785ae5b7f05d14eca9ff4503fbba92a5039188753eade047450.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 344, + 179, + 507, + 193.8 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 344, + 193.8, + 507, + 208.60000000000002 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 344, + 208.60000000000002, + 507, + 223.40000000000003 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 344, + 223.40000000000003, + 507, + 238.20000000000005 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 344, + 238.20000000000005, + 507, + 253.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 16.25 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 268, + 271 + ], + "score": 1.0, + "content": "Ideally, we would like the deformation", + "type": "text" + }, + { + "bbox": [ + 268, + 259, + 282, + 270 + ], + "score": 0.92, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "to be continuous and invertible. This will allow us to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 270, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 506, + 282 + ], + "score": 1.0, + "content": "create well-behaved one-to-one correspondences between points on the deform shape (i.e., x) and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 281, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 233, + 293 + ], + "score": 1.0, + "content": "points on the input shape (i.e.,", + "type": "text" + }, + { + "bbox": [ + 234, + 281, + 263, + 293 + ], + "score": 0.91, + "content": "D _ { \\theta } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 281, + 376, + 293 + ], + "score": 1.0, + "content": ". To achieve this, we make", + "type": "text" + }, + { + "bbox": [ + 377, + 281, + 391, + 292 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 281, + 506, + 293 + ], + "score": 1.0, + "content": "to be an invertible network", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 292, + 336, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 336, + 304 + ], + "score": 1.0, + "content": "composed of a sequence of invertible residual blocks [7].", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 259, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 506, + 331 + ], + "score": 1.0, + "content": "Invertible residual block. Prior works [7, 17] have shown that a sufficient condition for the residual", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 328, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 132, + 343 + ], + "score": 1.0, + "content": "block", + "type": "text" + }, + { + "bbox": [ + 132, + 329, + 205, + 342 + ], + "score": 0.92, + "content": "f ( x ) = x + g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 328, + 440, + 343 + ], + "score": 1.0, + "content": "to be invertible is that the Lipschitz constant of function", + "type": "text" + }, + { + "bbox": [ + 440, + 331, + 447, + 341 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 328, + 507, + 343 + ], + "score": 1.0, + "content": "is less than 1.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 236, + 353 + ], + "score": 1.0, + "content": "The architecture of the network", + "type": "text" + }, + { + "bbox": [ + 236, + 340, + 256, + 353 + ], + "score": 0.93, + "content": "g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "is usually composed of spectral normalized linear layers and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 352, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 504, + 363 + ], + "score": 1.0, + "content": "Lipschitz continuous nonlinearities such as ELU [21]. The inverse of such residual block can be", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 298, + 375 + ], + "score": 1.0, + "content": "computed by finding the fixed point of function", + "type": "text" + }, + { + "bbox": [ + 298, + 362, + 356, + 374 + ], + "score": 0.92, + "content": "y \\mapsto y - g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "[7]. Intuitively, deforming using one", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 373, + 438, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 307, + 385 + ], + "score": 1.0, + "content": "invertible residual block amounts to moving point", + "type": "text" + }, + { + "bbox": [ + 308, + 376, + 315, + 383 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 374, + 414, + 385 + ], + "score": 1.0, + "content": "with deformation vector", + "type": "text" + }, + { + "bbox": [ + 415, + 373, + 434, + 385 + ], + "score": 0.93, + "content": "g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 374, + 438, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 317, + 507, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "score": 1.0, + "content": "Lipschitz continuous positional encoding. Applying such architecture directly without modifi-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "cation fails to produce deformations with many different local rotations. Recent research suggests", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "that periodic functions are essential for coordinate MLPs to predict complex signals [47, 66, 74].", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 453, + 446 + ], + "score": 1.0, + "content": "Periodic functions are usually used as positional encoding or activations of the form", + "type": "text" + }, + { + "bbox": [ + 453, + 433, + 502, + 445 + ], + "score": 0.89, + "content": "\\sin ( a x + b )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 433, + 506, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 132, + 456 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 446, + 139, + 454 + ], + "score": 0.72, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "controls the frequency of the activation. To use such periodic function as part of the invertible", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "residual block without restricting the frequency, we normalize the output of the periodic function", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 107, + 465, + 176, + 478 + ], + "score": 0.92, + "content": "\\sin ( a x + b ) | a | ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 465, + 506, + 478 + ], + "score": 1.0, + "content": ", bringing it is Lipschitz constant below 1. Formally, the positional encoding with", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 477, + 342, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 342, + 489 + ], + "score": 1.0, + "content": "normalized Lipschitz constant applied to one dimension is", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 400, + 506, + 489 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 496, + 480, + 525 + ], + "lines": [ + { + "bbox": [ + 131, + 496, + 480, + 525 + ], + "spans": [ + { + "bbox": [ + 131, + 496, + 480, + 525 + ], + "score": 0.91, + "content": "\\gamma _ { i } ( { \\bf x } ) = \\frac { 1 } { \\sqrt { 2 L + 1 } } \\left( x _ { i } , \\frac { \\cos ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\frac { \\sin ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\ldots , \\frac { \\cos ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } , \\frac { \\sin ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } \\right) .", + "type": "interline_equation", + "image_path": "115f0ef27b3ae276645a06d8c15371d771109c767a72d8ffc95998a6ec1d55db.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 131, + 496, + 480, + 505.6666666666667 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 131, + 505.6666666666667, + 480, + 515.3333333333334 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 131, + 515.3333333333334, + 480, + 525.0 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "We will apply such encoding to each of the dimensions of the input coordinate for the body of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 102, + 542, + 394, + 566 + ], + "spans": [ + { + "bbox": [ + 102, + 542, + 209, + 566 + ], + "score": 1.0, + "content": "invertible residual block:", + "type": "text" + }, + { + "bbox": [ + 209, + 543, + 389, + 564 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { R _ { \\theta } } ( \\mathbf { x } ) = \\mathbf { x } + g _ { \\theta } \\left( \\frac { 1 } { \\sqrt { d } } [ \\gamma _ { 1 } \\left( \\mathbf { x } \\right) , \\mathbf { \\Omega } , \\mathbf { \\Omega } . . . , \\gamma _ { d } \\left( \\mathbf { \\bar { x } } \\right) ] \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 542, + 394, + 566 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 102, + 532, + 505, + 566 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 336, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 338, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 338, + 590 + ], + "score": 1.0, + "content": "Ablation. We conduct ablation studies on two architec-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 337, + 601 + ], + "score": 1.0, + "content": "ture choices: invertibility and positional encoding. In", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 600, + 336, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 336, + 612 + ], + "score": 1.0, + "content": "this experiment, we deform a neural field representing the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 610, + 337, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 337, + 622 + ], + "score": 1.0, + "content": "SDF of a 2D rectangle. We optimize each ablation case", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 621, + 337, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 337, + 635 + ], + "score": 1.0, + "content": "to satisfies the user specified constraints with following", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 628, + 340, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 129, + 646 + ], + "score": 1.0, + "content": "loss:", + "type": "text" + }, + { + "bbox": [ + 130, + 633, + 229, + 647 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left\\| D _ { \\theta } ( \\mathbf { h } _ { i } ) - \\mathbf { t } _ { i } \\right\\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 628, + 340, + 652 + ], + "score": 1.0, + "content": ". The results are shown in", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 645, + 337, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 337, + 657 + ], + "score": 1.0, + "content": "Figure 4. If we replace the invertible architecture with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 656, + 337, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 337, + 668 + ], + "score": 1.0, + "content": "SIREN as done in Deng et al. [25], the deformation field", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 667, + 337, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 337, + 679 + ], + "score": 1.0, + "content": "will tend to break topology (No inverse). Removing the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 678, + 337, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 337, + 690 + ], + "score": 1.0, + "content": "positional encoding will fail to create a complex field (No", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 688, + 336, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 121, + 699 + ], + "score": 0.71, + "content": "P E _ { \\mathrm { { \\ell } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 688, + 336, + 701 + ], + "score": 1.0, + "content": "). Our architecture can create a reasonable guess (No", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 699, + 337, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 337, + 712 + ], + "score": 1.0, + "content": "loss). This shows that our network architecture prioritizes", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 709, + 285, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 285, + 724 + ], + "score": 1.0, + "content": "natural deformation that preserves topology.", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 578, + 340, + 724 + ] + }, + { + "type": "image", + "bbox": [ + 344, + 580, + 495, + 648 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 344, + 580, + 495, + 648 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 580, + 495, + 648 + ], + "spans": [ + { + "bbox": [ + 344, + 580, + 495, + 648 + ], + "score": 0.958, + "type": "image", + "image_path": "513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg" + } + ] + } + ], + "index": 57.5, + "virtual_lines": [ + { + "bbox": [ + 344, + 580, + 495, + 614.0 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 344, + 614.0, + 495, + 648.0 + ], + "spans": [], + "index": 58 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 659, + 505, + 693 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 659, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 343, + 659, + 505, + 670 + ], + "score": 1.0, + "content": "Figure 4: Architecture ablation on 2D", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 344, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 344, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "SDF deformation. Blue points are han-", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 343, + 680, + 457, + 693 + ], + "spans": [ + { + "bbox": [ + 343, + 680, + 457, + 693 + ], + "score": 1.0, + "content": "dles; Red points are targets.", + "type": "text" + } + ], + "index": 61 + } + ], + "index": 60 + } + ], + "index": 58.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 233, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 234, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 234, + 87 + ], + "score": 1.0, + "content": "5.3 Implicit Thin Shell Loss", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 92, + 506, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 92, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 315, + 105 + ], + "score": 1.0, + "content": "At this point, we have obtained the correspondences", + "type": "text" + }, + { + "bbox": [ + 315, + 92, + 362, + 104 + ], + "score": 0.92, + "content": "\\mathbf { y } = D _ { \\theta } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 92, + 386, + 105 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 387, + 94, + 394, + 103 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 92, + 505, + 105 + ], + "score": 1.0, + "content": "in the output (or deformed)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 338, + 116 + ], + "score": 1.0, + "content": "space and y in the input space. Our next step is to design", + "type": "text" + }, + { + "bbox": [ + 339, + 104, + 362, + 116 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { d f m }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "that compares these corresponding", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "patches to ensure natural deformation. Recall that one way to ensure a natural-looking deformation is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 137 + ], + "score": 1.0, + "content": "to minimize the amount the resistance to bending or stretching that happened during the deforma-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "score": 1.0, + "content": "tion [1, 70]. We will develop novel loss functions for measuring stretching and bending. Please refer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 146, + 427, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 427, + 161 + ], + "score": 1.0, + "content": "to the supplement for the connection between our loss and the thin shell energy.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 107, + 170, + 204, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 168, + 205, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 205, + 184 + ], + "score": 1.0, + "content": "5.3.1 Stretching Loss", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 188, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "score": 1.0, + "content": "Stretching can be captured by the change of dot product in tangent space. Intuitively, a local surface", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "score": 1.0, + "content": "patch is stretched when the lengths of some tangent vectors change. The change of tangent vectors’", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 212, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 222 + ], + "score": 1.0, + "content": "norm can be measured by the tangent dot-product. With this said, the amount of stretch can be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 222, + 298, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 298, + 233 + ], + "score": 1.0, + "content": "measured by the change of tangent dot product.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Note that we do not have access to analytical surface parameterization, so we need to express the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "tangent dot product with neural fields and its derivative. We can describe the tangent dot product to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 397, + 273 + ], + "score": 1.0, + "content": "the spatial dot product using the projection matrix. The tangent vector of", + "type": "text" + }, + { + "bbox": [ + 398, + 262, + 406, + 270 + ], + "score": 0.53, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 259, + 505, + 273 + ], + "score": 1.0, + "content": "can be parameterized by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 182, + 283 + ], + "score": 1.0, + "content": "projecting a vector", + "type": "text" + }, + { + "bbox": [ + 183, + 273, + 190, + 281 + ], + "score": 0.51, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 271, + 419, + 283 + ], + "score": 1.0, + "content": "to the tangent space. To achieve that, we need to multiply", + "type": "text" + }, + { + "bbox": [ + 420, + 273, + 427, + 281 + ], + "score": 0.27, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "with the projection", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 280, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 136, + 294 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 281, + 267, + 294 + ], + "score": 0.91, + "content": "\\bar { \\mathbf { P } _ { G _ { \\theta } } } ( \\mathbf { x } ) = \\mathbf { I } - \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { n } } _ { G _ { \\theta } } ( \\mathbf { \\bar { x } } ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 280, + 298, + 294 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 298, + 282, + 330, + 294 + ], + "score": 0.92, + "content": "\\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 280, + 452, + 294 + ], + "score": 1.0, + "content": "is the surface normal of point", + "type": "text" + }, + { + "bbox": [ + 452, + 283, + 460, + 292 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 280, + 464, + 294 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 464, + 281, + 504, + 294 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 284, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 273, + 304 + ], + "score": 1.0, + "content": "is a tangent vector in the tangent plane of", + "type": "text" + }, + { + "bbox": [ + 273, + 295, + 280, + 302 + ], + "score": 0.62, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 293, + 284, + 304 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 396, + 322 + ], + "score": 1.0, + "content": "Now we are ready to compute the change of tangent dot-product. Let", + "type": "text" + }, + { + "bbox": [ + 397, + 310, + 406, + 320 + ], + "score": 0.87, + "content": "\\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 308, + 425, + 322 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 425, + 310, + 435, + 321 + ], + "score": 0.88, + "content": "\\mathbf { t } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "be two arbitrary", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 320, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 218, + 332 + ], + "score": 1.0, + "content": "tangent vectors near point", + "type": "text" + }, + { + "bbox": [ + 219, + 322, + 227, + 330 + ], + "score": 0.61, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 320, + 505, + 332 + ], + "score": 1.0, + "content": "at the deformed shape. Further assume that these vectors can be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 175, + 344 + ], + "score": 1.0, + "content": "parameterized as", + "type": "text" + }, + { + "bbox": [ + 176, + 331, + 240, + 343 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 331, + 258, + 344 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 259, + 331, + 325, + 343 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 331, + 505, + 344 + ], + "score": 1.0, + "content": ". These tangent vector will be transformed by", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 340, + 507, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 342, + 120, + 353 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 340, + 140, + 356 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 140, + 342, + 200, + 354 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 340, + 219, + 356 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 342, + 281, + 354 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { \\bar { x } } ) \\mathbf { t } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 340, + 423, + 356 + ], + "score": 1.0, + "content": ". These are tangent vectors at point", + "type": "text" + }, + { + "bbox": [ + 423, + 344, + 430, + 353 + ], + "score": 0.38, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 340, + 507, + 356 + ], + "score": 1.0, + "content": "at the input shape.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 352, + 495, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 495, + 366 + ], + "score": 1.0, + "content": "The change of tangent dot-product with respect to these two vectors can be computed as follows:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 369, + 444, + 385 + ], + "lines": [ + { + "bbox": [ + 166, + 369, + 444, + 385 + ], + "spans": [ + { + "bbox": [ + 166, + 369, + 444, + 385 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\vert \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\vert = \\vert \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\right) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 } \\vert . } \\end{array}", + "type": "interline_equation", + "image_path": "55ae1d4778cf1a5b605b4f6ba8167ec34cdc7a7d659dad5a3652492fa3cd586b.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 166, + 369, + 444, + 385 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 506, + 423 + ], + "lines": [ + { + "bbox": [ + 104, + 387, + 507, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 387, + 507, + 402 + ], + "score": 1.0, + "content": "To minimize the stretch, we need to enforce that dot-product stays the same for all tangent vectors.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 102, + 395, + 509, + 418 + ], + "spans": [ + { + "bbox": [ + 102, + 395, + 318, + 418 + ], + "score": 1.0, + "content": "This can be done by minimize the matrix norm of", + "type": "text" + }, + { + "bbox": [ + 319, + 399, + 420, + 413 + ], + "score": 0.91, + "content": "\\mathbf { \\dot { P } } _ { G _ { \\theta } } ^ { T } \\bigl ( \\mathbf { I } - \\mathbf { \\dot { J } } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\bigr ) \\mathbf { P } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 395, + 509, + 418 + ], + "score": 1.0, + "content": ". Here, we drop the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 185, + 423 + ], + "score": 1.0, + "content": "function arguments", + "type": "text" + }, + { + "bbox": [ + 185, + 413, + 192, + 421 + ], + "score": 0.75, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "for the matrix for notation clarity. With these, we define the the stretch loss as:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 426, + 414, + 456 + ], + "lines": [ + { + "bbox": [ + 196, + 426, + 414, + 456 + ], + "spans": [ + { + "bbox": [ + 196, + 426, + 414, + 456 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { s } ( G _ { \\theta } ) = \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\left. \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right. _ { F } ^ { 2 } d \\mathbf { x } .", + "type": "interline_equation", + "image_path": "17478aacfa0825c24d4efefdcc10b097ca24f3d4fdf4bc8e89046ebe7f0b15a8.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 426, + 414, + 441.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 196, + 441.0, + 414, + 456.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 465, + 196, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 198, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 198, + 480 + ], + "score": 1.0, + "content": "5.3.2 Bending Loss", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Bending can be characterized by the change of surface curvature (e.g., making the surface more or", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "less curved). Intuitively, curvature can be described as the change of tangent dot product along the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 260, + 520 + ], + "score": 1.0, + "content": "surface normal direction [16, 59]. Let", + "type": "text" + }, + { + "bbox": [ + 261, + 506, + 326, + 518 + ], + "score": 0.93, + "content": "\\mathbf { t } _ { 1 } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 505, + 344, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 506, + 411, + 518 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { 2 } = \\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { v } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "be two tangent vectors", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 116, + 529 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 116, + 519, + 123, + 527 + ], + "score": 0.43, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 518, + 345, + 529 + ], + "score": 1.0, + "content": ". Consider the tangent dot product of the surface family", + "type": "text" + }, + { + "bbox": [ + 346, + 518, + 389, + 529 + ], + "score": 0.9, + "content": "\\mathbf { x } + t \\mathbf { n } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 518, + 505, + 529 + ], + "score": 1.0, + "content": ". Note that this set of surface", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 228, + 541 + ], + "score": 1.0, + "content": "corresponding to the level sets", + "type": "text" + }, + { + "bbox": [ + 228, + 528, + 291, + 540 + ], + "score": 0.92, + "content": "{ \\bf \\dot { \\{ p \\vert } } G _ { \\theta } ( { \\bf p } ) = t \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 528, + 300, + 541 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 301, + 528, + 314, + 539 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "is approximating an SDF [54]. Then the change", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 538, + 510, + 575 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 507, + 552 + ], + "score": 1.0, + "content": "of dot product along the surface normal direction can be given by Hessian and directional derivative:", + "type": "text" + }, + { + "bbox": [ + 107, + 550, + 219, + 564 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { d } { d t } \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } \\mathbf { \\bar { \\Psi } } _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { T } \\bar { H _ { G _ { \\theta } } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 543, + 510, + 575 + ], + "score": 1.0, + "content": ". Intuitively, the larger this value is, the faster the surface changes whenmal direction, which means the surface has larger curvature.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Measuring bending amounts to measure the change of tangent dot-product derivative along the surface", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 439, + 603 + ], + "score": 1.0, + "content": "normal direction. Similar to the previous section, assume we have tangent vectors", + "type": "text" + }, + { + "bbox": [ + 440, + 589, + 504, + 601 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { i }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 123, + 613 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 600, + 189, + 612 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 600, + 505, + 613 + ], + "score": 1.0, + "content": ". These tangent vectors are are transformed by the Jacobian of the deformation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 127, + 624 + ], + "score": 1.0, + "content": "field", + "type": "text" + }, + { + "bbox": [ + 127, + 612, + 159, + 623 + ], + "score": 0.88, + "content": "\\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 610, + 172, + 624 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 172, + 611, + 235, + 623 + ], + "score": 0.94, + "content": "\\dot { \\mathbf { t } } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 610, + 254, + 624 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 611, + 319, + 624 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 610, + 350, + 624 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 350, + 611, + 360, + 623 + ], + "score": 0.88, + "content": "\\mathbf { t } _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 610, + 379, + 624 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 611, + 389, + 624 + ], + "score": 0.86, + "content": "\\mathbf { t } _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "are tangent vectors at point", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 114, + 633 + ], + "score": 0.44, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 621, + 174, + 634 + ], + "score": 1.0, + "content": "on the surface", + "type": "text" + }, + { + "bbox": [ + 175, + 623, + 194, + 633 + ], + "score": 0.86, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 621, + 506, + 634 + ], + "score": 1.0, + "content": ", the derivative of tangent dot-product is given by the hessian matrix of field", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 628, + 509, + 652 + ], + "spans": [ + { + "bbox": [ + 107, + 634, + 115, + 644 + ], + "score": 0.47, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 633, + 398, + 647 + ], + "score": 0.81, + "content": ": \\mathbf { \\Gamma } _ { d t } ^ { d } \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } | _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { \\prime T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { t } _ { 2 } ^ { \\prime } = \\mathbf { t } _ { 1 } ^ { T } \\mathbf { J } _ { D _ { \\theta } } ^ { T } ( \\mathbf { x } ) H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } .", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 628, + 509, + 652 + ], + "score": 1.0, + "content": ". We will drop the function", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 645, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 155, + 658 + ], + "score": 1.0, + "content": "argument to", + "type": "text" + }, + { + "bbox": [ + 156, + 646, + 173, + 657 + ], + "score": 0.78, + "content": "\\mathbf { J } _ { D _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 645, + 177, + 658 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 177, + 646, + 197, + 657 + ], + "score": 0.66, + "content": "H _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 645, + 218, + 658 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 218, + 646, + 237, + 657 + ], + "score": 0.9, + "content": "\\mathbf { P } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 645, + 507, + 658 + ], + "score": 1.0, + "content": "for notation clarity. The change of tangent dot-product derivative is:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 661, + 461, + 689 + ], + "lines": [ + { + "bbox": [ + 149, + 661, + 461, + 689 + ], + "spans": [ + { + "bbox": [ + 149, + 661, + 461, + 689 + ], + "score": 0.92, + "content": "\\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| = \\left| \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\mathbf { v } _ { 2 } \\right| .", + "type": "interline_equation", + "image_path": "be54971a5a60e73bdcd5debb0fd63cc7fee4f4a5f165a9cbfea5a89a4ff84aef.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 149, + 661, + 461, + 670.3333333333334 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 149, + 670.3333333333334, + 461, + 679.6666666666667 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 149, + 679.6666666666667, + 461, + 689.0000000000001 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 505, + 724 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 445, + 712 + ], + "score": 1.0, + "content": "If there is almost no bending happened between the infinitesimal patches around", + "type": "text" + }, + { + "bbox": [ + 445, + 701, + 453, + 709 + ], + "score": 0.66, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 697, + 472, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 701, + 480, + 710 + ], + "score": 0.63, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 697, + 504, + 712 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 158, + 725 + ], + "score": 1.0, + "content": "the quantity", + "type": "text" + }, + { + "bbox": [ + 158, + 709, + 253, + 725 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\bar { \\mathbf { t } } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| } \\end{array} \\qquad = 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 709, + 506, + 725 + ], + "score": 1.0, + "content": "should stay close to 0 for all pairs of tangent vectors. We will", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 233, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 234, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 234, + 87 + ], + "score": 1.0, + "content": "5.3 Implicit Thin Shell Loss", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 92, + 506, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 92, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 315, + 105 + ], + "score": 1.0, + "content": "At this point, we have obtained the correspondences", + "type": "text" + }, + { + "bbox": [ + 315, + 92, + 362, + 104 + ], + "score": 0.92, + "content": "\\mathbf { y } = D _ { \\theta } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 92, + 386, + 105 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 387, + 94, + 394, + 103 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 92, + 505, + 105 + ], + "score": 1.0, + "content": "in the output (or deformed)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 338, + 116 + ], + "score": 1.0, + "content": "space and y in the input space. Our next step is to design", + "type": "text" + }, + { + "bbox": [ + 339, + 104, + 362, + 116 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { d f m }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "that compares these corresponding", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "patches to ensure natural deformation. Recall that one way to ensure a natural-looking deformation is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 137 + ], + "score": 1.0, + "content": "to minimize the amount the resistance to bending or stretching that happened during the deforma-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 149 + ], + "score": 1.0, + "content": "tion [1, 70]. We will develop novel loss functions for measuring stretching and bending. Please refer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 146, + 427, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 427, + 161 + ], + "score": 1.0, + "content": "to the supplement for the connection between our loss and the thin shell energy.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 92, + 506, + 161 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 170, + 204, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 168, + 205, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 205, + 184 + ], + "score": 1.0, + "content": "5.3.1 Stretching Loss", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 188, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 504, + 201 + ], + "score": 1.0, + "content": "Stretching can be captured by the change of dot product in tangent space. Intuitively, a local surface", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "score": 1.0, + "content": "patch is stretched when the lengths of some tangent vectors change. The change of tangent vectors’", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 212, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 222 + ], + "score": 1.0, + "content": "norm can be measured by the tangent dot-product. With this said, the amount of stretch can be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 222, + 298, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 298, + 233 + ], + "score": 1.0, + "content": "measured by the change of tangent dot product.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 189, + 506, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Note that we do not have access to analytical surface parameterization, so we need to express the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "tangent dot product with neural fields and its derivative. We can describe the tangent dot product to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 397, + 273 + ], + "score": 1.0, + "content": "the spatial dot product using the projection matrix. The tangent vector of", + "type": "text" + }, + { + "bbox": [ + 398, + 262, + 406, + 270 + ], + "score": 0.53, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 259, + 505, + 273 + ], + "score": 1.0, + "content": "can be parameterized by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 182, + 283 + ], + "score": 1.0, + "content": "projecting a vector", + "type": "text" + }, + { + "bbox": [ + 183, + 273, + 190, + 281 + ], + "score": 0.51, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 271, + 419, + 283 + ], + "score": 1.0, + "content": "to the tangent space. To achieve that, we need to multiply", + "type": "text" + }, + { + "bbox": [ + 420, + 273, + 427, + 281 + ], + "score": 0.27, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "with the projection", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 280, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 136, + 294 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 281, + 267, + 294 + ], + "score": 0.91, + "content": "\\bar { \\mathbf { P } _ { G _ { \\theta } } } ( \\mathbf { x } ) = \\mathbf { I } - \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { n } } _ { G _ { \\theta } } ( \\mathbf { \\bar { x } } ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 280, + 298, + 294 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 298, + 282, + 330, + 294 + ], + "score": 0.92, + "content": "\\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 280, + 452, + 294 + ], + "score": 1.0, + "content": "is the surface normal of point", + "type": "text" + }, + { + "bbox": [ + 452, + 283, + 460, + 292 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 280, + 464, + 294 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 464, + 281, + 504, + 294 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 293, + 284, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 273, + 304 + ], + "score": 1.0, + "content": "is a tangent vector in the tangent plane of", + "type": "text" + }, + { + "bbox": [ + 273, + 295, + 280, + 302 + ], + "score": 0.62, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 293, + 284, + 304 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 237, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 396, + 322 + ], + "score": 1.0, + "content": "Now we are ready to compute the change of tangent dot-product. Let", + "type": "text" + }, + { + "bbox": [ + 397, + 310, + 406, + 320 + ], + "score": 0.87, + "content": "\\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 308, + 425, + 322 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 425, + 310, + 435, + 321 + ], + "score": 0.88, + "content": "\\mathbf { t } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "be two arbitrary", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 320, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 218, + 332 + ], + "score": 1.0, + "content": "tangent vectors near point", + "type": "text" + }, + { + "bbox": [ + 219, + 322, + 227, + 330 + ], + "score": 0.61, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 320, + 505, + 332 + ], + "score": 1.0, + "content": "at the deformed shape. Further assume that these vectors can be", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 175, + 344 + ], + "score": 1.0, + "content": "parameterized as", + "type": "text" + }, + { + "bbox": [ + 176, + 331, + 240, + 343 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 331, + 258, + 344 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 259, + 331, + 325, + 343 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 331, + 505, + 344 + ], + "score": 1.0, + "content": ". These tangent vector will be transformed by", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 340, + 507, + 356 + ], + "spans": [ + { + "bbox": [ + 107, + 342, + 120, + 353 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 340, + 140, + 356 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 140, + 342, + 200, + 354 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 340, + 219, + 356 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 342, + 281, + 354 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { \\bar { x } } ) \\mathbf { t } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 340, + 423, + 356 + ], + "score": 1.0, + "content": ". These are tangent vectors at point", + "type": "text" + }, + { + "bbox": [ + 423, + 344, + 430, + 353 + ], + "score": 0.38, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 340, + 507, + 356 + ], + "score": 1.0, + "content": "at the input shape.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 352, + 495, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 495, + 366 + ], + "score": 1.0, + "content": "The change of tangent dot-product with respect to these two vectors can be computed as follows:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 308, + 507, + 366 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 369, + 444, + 385 + ], + "lines": [ + { + "bbox": [ + 166, + 369, + 444, + 385 + ], + "spans": [ + { + "bbox": [ + 166, + 369, + 444, + 385 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\vert \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\vert = \\vert \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\right) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 } \\vert . } \\end{array}", + "type": "interline_equation", + "image_path": "55ae1d4778cf1a5b605b4f6ba8167ec34cdc7a7d659dad5a3652492fa3cd586b.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 166, + 369, + 444, + 385 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 506, + 423 + ], + "lines": [ + { + "bbox": [ + 104, + 387, + 507, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 387, + 507, + 402 + ], + "score": 1.0, + "content": "To minimize the stretch, we need to enforce that dot-product stays the same for all tangent vectors.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 102, + 395, + 509, + 418 + ], + "spans": [ + { + "bbox": [ + 102, + 395, + 318, + 418 + ], + "score": 1.0, + "content": "This can be done by minimize the matrix norm of", + "type": "text" + }, + { + "bbox": [ + 319, + 399, + 420, + 413 + ], + "score": 0.91, + "content": "\\mathbf { \\dot { P } } _ { G _ { \\theta } } ^ { T } \\bigl ( \\mathbf { I } - \\mathbf { \\dot { J } } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\bigr ) \\mathbf { P } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 395, + 509, + 418 + ], + "score": 1.0, + "content": ". Here, we drop the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 185, + 423 + ], + "score": 1.0, + "content": "function arguments", + "type": "text" + }, + { + "bbox": [ + 185, + 413, + 192, + 421 + ], + "score": 0.75, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "for the matrix for notation clarity. With these, we define the the stretch loss as:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 102, + 387, + 509, + 423 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 426, + 414, + 456 + ], + "lines": [ + { + "bbox": [ + 196, + 426, + 414, + 456 + ], + "spans": [ + { + "bbox": [ + 196, + 426, + 414, + 456 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { s } ( G _ { \\theta } ) = \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\left. \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right. _ { F } ^ { 2 } d \\mathbf { x } .", + "type": "interline_equation", + "image_path": "17478aacfa0825c24d4efefdcc10b097ca24f3d4fdf4bc8e89046ebe7f0b15a8.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 426, + 414, + 441.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 196, + 441.0, + 414, + 456.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 465, + 196, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 198, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 198, + 480 + ], + "score": 1.0, + "content": "5.3.2 Bending Loss", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Bending can be characterized by the change of surface curvature (e.g., making the surface more or", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "less curved). Intuitively, curvature can be described as the change of tangent dot product along the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 260, + 520 + ], + "score": 1.0, + "content": "surface normal direction [16, 59]. Let", + "type": "text" + }, + { + "bbox": [ + 261, + 506, + 326, + 518 + ], + "score": 0.93, + "content": "\\mathbf { t } _ { 1 } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 505, + 344, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 345, + 506, + 411, + 518 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { 2 } = \\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { v } } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "be two tangent vectors", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 116, + 529 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 116, + 519, + 123, + 527 + ], + "score": 0.43, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 518, + 345, + 529 + ], + "score": 1.0, + "content": ". Consider the tangent dot product of the surface family", + "type": "text" + }, + { + "bbox": [ + 346, + 518, + 389, + 529 + ], + "score": 0.9, + "content": "\\mathbf { x } + t \\mathbf { n } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 518, + 505, + 529 + ], + "score": 1.0, + "content": ". Note that this set of surface", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 228, + 541 + ], + "score": 1.0, + "content": "corresponding to the level sets", + "type": "text" + }, + { + "bbox": [ + 228, + 528, + 291, + 540 + ], + "score": 0.92, + "content": "{ \\bf \\dot { \\{ p \\vert } } G _ { \\theta } ( { \\bf p } ) = t \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 528, + 300, + 541 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 301, + 528, + 314, + 539 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "is approximating an SDF [54]. Then the change", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 538, + 510, + 575 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 507, + 552 + ], + "score": 1.0, + "content": "of dot product along the surface normal direction can be given by Hessian and directional derivative:", + "type": "text" + }, + { + "bbox": [ + 107, + 550, + 219, + 564 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { d } { d t } \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } \\mathbf { \\bar { \\Psi } } _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { T } \\bar { H _ { G _ { \\theta } } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 543, + 510, + 575 + ], + "score": 1.0, + "content": ". Intuitively, the larger this value is, the faster the surface changes whenmal direction, which means the surface has larger curvature.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 484, + 510, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Measuring bending amounts to measure the change of tangent dot-product derivative along the surface", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 439, + 603 + ], + "score": 1.0, + "content": "normal direction. Similar to the previous section, assume we have tangent vectors", + "type": "text" + }, + { + "bbox": [ + 440, + 589, + 504, + 601 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { i }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 123, + 613 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 600, + 189, + 612 + ], + "score": 0.91, + "content": "\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 600, + 505, + 613 + ], + "score": 1.0, + "content": ". These tangent vectors are are transformed by the Jacobian of the deformation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 127, + 624 + ], + "score": 1.0, + "content": "field", + "type": "text" + }, + { + "bbox": [ + 127, + 612, + 159, + 623 + ], + "score": 0.88, + "content": "\\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 610, + 172, + 624 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 172, + 611, + 235, + 623 + ], + "score": 0.94, + "content": "\\dot { \\mathbf { t } } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 610, + 254, + 624 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 611, + 319, + 624 + ], + "score": 0.92, + "content": "\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 610, + 350, + 624 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 350, + 611, + 360, + 623 + ], + "score": 0.88, + "content": "\\mathbf { t } _ { i } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 610, + 379, + 624 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 611, + 389, + 624 + ], + "score": 0.86, + "content": "\\mathbf { t } _ { j } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "are tangent vectors at point", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 114, + 633 + ], + "score": 0.44, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 621, + 174, + 634 + ], + "score": 1.0, + "content": "on the surface", + "type": "text" + }, + { + "bbox": [ + 175, + 623, + 194, + 633 + ], + "score": 0.86, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 621, + 506, + 634 + ], + "score": 1.0, + "content": ", the derivative of tangent dot-product is given by the hessian matrix of field", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 628, + 509, + 652 + ], + "spans": [ + { + "bbox": [ + 107, + 634, + 115, + 644 + ], + "score": 0.47, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 633, + 398, + 647 + ], + "score": 0.81, + "content": ": \\mathbf { \\Gamma } _ { d t } ^ { d } \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } | _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { \\prime T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { t } _ { 2 } ^ { \\prime } = \\mathbf { t } _ { 1 } ^ { T } \\mathbf { J } _ { D _ { \\theta } } ^ { T } ( \\mathbf { x } ) H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } .", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 628, + 509, + 652 + ], + "score": 1.0, + "content": ". We will drop the function", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 645, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 155, + 658 + ], + "score": 1.0, + "content": "argument to", + "type": "text" + }, + { + "bbox": [ + 156, + 646, + 173, + 657 + ], + "score": 0.78, + "content": "\\mathbf { J } _ { D _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 645, + 177, + 658 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 177, + 646, + 197, + 657 + ], + "score": 0.66, + "content": "H _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 645, + 218, + 658 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 218, + 646, + 237, + 657 + ], + "score": 0.9, + "content": "\\mathbf { P } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 645, + 507, + 658 + ], + "score": 1.0, + "content": "for notation clarity. The change of tangent dot-product derivative is:", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 577, + 509, + 658 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 661, + 461, + 689 + ], + "lines": [ + { + "bbox": [ + 149, + 661, + 461, + 689 + ], + "spans": [ + { + "bbox": [ + 149, + 661, + 461, + 689 + ], + "score": 0.92, + "content": "\\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| = \\left| \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\mathbf { v } _ { 2 } \\right| .", + "type": "interline_equation", + "image_path": "be54971a5a60e73bdcd5debb0fd63cc7fee4f4a5f165a9cbfea5a89a4ff84aef.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 149, + 661, + 461, + 670.3333333333334 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 149, + 670.3333333333334, + 461, + 679.6666666666667 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 149, + 679.6666666666667, + 461, + 689.0000000000001 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 505, + 724 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 445, + 712 + ], + "score": 1.0, + "content": "If there is almost no bending happened between the infinitesimal patches around", + "type": "text" + }, + { + "bbox": [ + 445, + 701, + 453, + 709 + ], + "score": 0.66, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 697, + 472, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 701, + 480, + 710 + ], + "score": 0.63, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 697, + 504, + 712 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 158, + 725 + ], + "score": 1.0, + "content": "the quantity", + "type": "text" + }, + { + "bbox": [ + 158, + 709, + 253, + 725 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\bar { \\mathbf { t } } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| } \\end{array} \\qquad = 0 .", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 709, + 506, + 725 + ], + "score": 1.0, + "content": "should stay close to 0 for all pairs of tangent vectors. We will", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 697, + 506, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 71, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 103, + 69, + 508, + 90 + ], + "spans": [ + { + "bbox": [ + 103, + 69, + 252, + 90 + ], + "score": 1.0, + "content": "quantify this by the matrix norm of", + "type": "text" + }, + { + "bbox": [ + 253, + 72, + 417, + 86 + ], + "score": 0.88, + "content": "{ \\bf P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - { \\bf J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( { \\bf x } ) ) { \\bf J } _ { D _ { \\theta } } \\right) { \\bf P } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 69, + 508, + 90 + ], + "score": 1.0, + "content": ". Finally, we arrive at", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "our bending loss, which minimizes the norm of the matrix that modulate the change of tangent", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 376, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 376, + 108 + ], + "score": 1.0, + "content": "dot-product derivatives moving along the surface normal direction:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 106, + 446, + 135 + ], + "lines": [ + { + "bbox": [ + 165, + 106, + 446, + 135 + ], + "spans": [ + { + "bbox": [ + 165, + 106, + 446, + 135 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { b } ( G _ { \\theta } ) = \\int _ { x \\in \\mathcal { M } _ { G _ { \\theta } } } \\left\\| \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right\\| _ { F } ^ { s } d \\mathbf { x } .", + "type": "interline_equation", + "image_path": "4c7abbcefd81e5539f2afe9b7ebd263d1d3dd8f74fe71abb5984c212b541028f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 165, + 106, + 446, + 115.66666666666667 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 165, + 115.66666666666667, + 446, + 125.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 165, + 125.33333333333334, + 446, + 135.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 141, + 232, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 231, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 187, + 155 + ], + "score": 1.0, + "content": "5.3.3 Computing", + "type": "text" + }, + { + "bbox": [ + 187, + 141, + 199, + 152 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 139, + 219, + 155 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 141, + 231, + 152 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 156, + 173 + ], + "score": 1.0, + "content": "Computing", + "type": "text" + }, + { + "bbox": [ + 157, + 160, + 169, + 171 + ], + "score": 0.86, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 158, + 191, + 173 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 160, + 204, + 171 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "during training requires approximating a surface integral of the form", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 170, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 107, + 171, + 176, + 187 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\bar { \\mathcal { L } } ( \\mathbf { x } ) d \\mathbf { x } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "using Monte Carlo integration, which requires an efficient way to sample points", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 182, + 507, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 204, + 199 + ], + "score": 1.0, + "content": "θuniformly from surface", + "type": "text" + }, + { + "bbox": [ + 204, + 185, + 228, + 197 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 182, + 507, + 199 + ], + "score": 1.0, + "content": ". While it is feasible to sample uniformly from an SDF, this is chal-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 184, + 209 + ], + "score": 1.0, + "content": "lenging to do with", + "type": "text" + }, + { + "bbox": [ + 185, + 196, + 198, + 207 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 196, + 329, + 209 + ], + "score": 1.0, + "content": "since there is no guarantee that", + "type": "text" + }, + { + "bbox": [ + 330, + 196, + 343, + 207 + ], + "score": 0.9, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "remains a valid SDF during the course", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 207, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 273, + 222 + ], + "score": 1.0, + "content": "of training. Thanks to the invertibility of", + "type": "text" + }, + { + "bbox": [ + 274, + 208, + 287, + 219 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 207, + 424, + 222 + ], + "score": 1.0, + "content": ", we can apply change of variable", + "type": "text" + }, + { + "bbox": [ + 425, + 207, + 478, + 220 + ], + "score": 0.96, + "content": "\\mathbf { x } = D _ { \\theta } ^ { - 1 } ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 207, + 506, + 222 + ], + "score": 1.0, + "content": "to the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 218, + 337, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 181, + 232 + ], + "score": 1.0, + "content": "integration, where", + "type": "text" + }, + { + "bbox": [ + 181, + 221, + 189, + 230 + ], + "score": 0.66, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 218, + 313, + 232 + ], + "score": 1.0, + "content": "are points on the input surface", + "type": "text" + }, + { + "bbox": [ + 313, + 219, + 332, + 230 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 218, + 337, + 232 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 231, + 475, + 259 + ], + "lines": [ + { + "bbox": [ + 136, + 231, + 475, + 259 + ], + "spans": [ + { + "bbox": [ + 136, + 231, + 475, + 259 + ], + "score": 0.91, + "content": "\\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\mathcal { L } ( \\mathbf { x } ) d \\mathbf { x } = \\int _ { \\mathbf { y } \\in \\mathcal { M } _ { F } } \\mathcal { L } ( \\mathbf { x } ) \\left| \\operatorname* { d e t } \\left( \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) + \\mathbf { n } _ { F } ( \\mathbf { y } ) \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\right) \\right| ^ { - 2 } d \\mathbf { y } .", + "type": "interline_equation", + "image_path": "e2899c8e60314aa5d0d262add3c4d68fbf158450ae273c1e944f406c27384e93.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 136, + 231, + 475, + 240.33333333333334 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 136, + 240.33333333333334, + 475, + 249.66666666666669 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 136, + 249.66666666666669, + 475, + 259.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 177, + 273 + ], + "score": 0.91, + "content": "\\mathbf { J } _ { D _ { \\theta } } \\mathbf { P } _ { G _ { \\theta } } \\in \\mathbb { R } ^ { 3 \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 258, + 280, + 275 + ], + "score": 1.0, + "content": "maps tangent vector from", + "type": "text" + }, + { + "bbox": [ + 280, + 261, + 303, + 273 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 258, + 315, + 275 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 315, + 261, + 334, + 272 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 258, + 506, + 275 + ], + "score": 1.0, + "content": ". We apply the extension trick from Iglesias", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "et al. [35] to create a matrix whose determinant equals the change of surface area. This is achieved by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 256, + 296 + ], + "score": 1.0, + "content": "adding the surface normal component", + "type": "text" + }, + { + "bbox": [ + 257, + 282, + 284, + 295 + ], + "score": 0.92, + "content": "\\mathbf { n } _ { F } \\mathbf { n } _ { G } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 282, + 506, + 296 + ], + "score": 1.0, + "content": "and keeping it unchanged. With this change of variable,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 504, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 397, + 305 + ], + "score": 1.0, + "content": "we now can compute the losses with point samples from the input field", + "type": "text" + }, + { + "bbox": [ + 397, + 294, + 406, + 304 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 294, + 495, + 305 + ], + "score": 1.0, + "content": ". Since the input field", + "type": "text" + }, + { + "bbox": [ + 495, + 294, + 504, + 304 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 304, + 498, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 498, + 317 + ], + "score": 1.0, + "content": "approximates an SDF, we can use the method introduced in Section 5.1 to sample uniform points.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 106, + 328, + 187, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 189, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 189, + 343 + ], + "score": 1.0, + "content": "5.4 Optimization", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 348, + 504, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "score": 1.0, + "content": "Putting the losses together, we deform a neural field by solving the constrained optimization problem", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 361, + 451, + 380 + ], + "lines": [ + { + "bbox": [ + 158, + 361, + 451, + 380 + ], + "spans": [ + { + "bbox": [ + 158, + 361, + 451, + 380 + ], + "score": 0.87, + "content": "\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\lambda _ { s } \\mathcal { L } _ { s } ( G _ { \\theta } ) + \\lambda _ { b } \\mathcal { L } _ { b } ( G _ { \\theta } ) , \\quad \\mathrm { s . t . } \\forall 1 \\leq i \\leq n , \\ \\| D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\| = 0", + "type": "interline_equation", + "image_path": "bc7131e80976def89d777867f865510168603474709b0e2f96c867263c85bc6b.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 158, + 361, + 451, + 380 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 134, + 394 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 382, + 161, + 393 + ], + "score": 0.47, + "content": "\\lambda _ { s } , \\lambda _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "are hyperparameters that determine the material properties. One way to solve this", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "constrained optimization problem for a neural network is to make the constraints a soft loss adding to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 103, + 399, + 452, + 420 + ], + "spans": [ + { + "bbox": [ + 103, + 399, + 199, + 420 + ], + "score": 1.0, + "content": "the objective function:", + "type": "text" + }, + { + "bbox": [ + 199, + 402, + 356, + 416 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\dot { \\mathcal { L } } _ { c o n s t } ^ { { \\bf \\Delta } } ( D _ { \\theta } ) = \\frac { 1 } { n } \\sum _ { 1 = 1 } ^ { n } \\left. D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\right. } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 399, + 452, + 420 + ], + "score": 1.0, + "content": ". Our final objective is:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 417, + 392, + 430 + ], + "lines": [], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 218, + 417, + 392, + 430 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 137, + 443 + ], + "score": 1.0, + "content": "We set", + "type": "text" + }, + { + "bbox": [ + 137, + 432, + 149, + 442 + ], + "score": 0.88, + "content": "\\lambda _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "to be a high value to enforce that the model satisfies user-specified input as much as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 216, + 455 + ], + "score": 1.0, + "content": "possible. The user can tune", + "type": "text" + }, + { + "bbox": [ + 216, + 443, + 227, + 453 + ], + "score": 0.89, + "content": "\\lambda _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 442, + 244, + 455 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 245, + 443, + 256, + 453 + ], + "score": 0.89, + "content": "\\lambda _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 442, + 463, + 455 + ], + "score": 1.0, + "content": "depending on the application scenario. We optimize", + "type": "text" + }, + { + "bbox": [ + 463, + 442, + 484, + 454 + ], + "score": 0.91, + "content": "\\mathcal { L } ( \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 453, + 491, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 274, + 465 + ], + "score": 1.0, + "content": "Adam optimizer to obtain the output field", + "type": "text" + }, + { + "bbox": [ + 274, + 453, + 288, + 464 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 453, + 491, + 465 + ], + "score": 1.0, + "content": ". Hyperparameters are provided in the supplement.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 231, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 232, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 232, + 494 + ], + "score": 1.0, + "content": "6 Deformation Results", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "In this section, we will demonstrate the results of our methods to shape deformation. The shapes", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "for deformation are taken from Sorkine-Hornung and Alexa [70]. To create neural fields from these", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "meshes, we follow the procedure of Park et al. [56] to compute ground-truth SDF for locations", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 535, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 172, + 548 + ], + "score": 1.0, + "content": "sampled within", + "type": "text" + }, + { + "bbox": [ + 172, + 535, + 204, + 547 + ], + "score": 0.92, + "content": "[ - 1 , 1 ] ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 535, + 506, + 548 + ], + "score": 1.0, + "content": ". We then fit a SIREN [66] to the ground-truth SDF to generate our initial", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "neural fields. Our main baseline is ARAP [70, 86]. The simplest way to use ARAP to edit neural", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "fields is applying it on a mesh extracted from the input neural fields using marching cubes [44, 45].", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "score": 1.0, + "content": "We first present results comparing with ARAP applied to the extracted mesh. Then we will conduct", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 580, + 351, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 351, + 591 + ], + "score": 1.0, + "content": "an analysis to show our losses encourage the right behaviors.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "Comparing to ARAP baseline. We follow ARAP [70] to create a set of basic shape deformation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 613, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 625 + ], + "score": 1.0, + "content": "operations to evaluate our algorithm. In this setting, the user will first specify a set of handles used for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "manipulation (shown in Figure 5 in blue). In general, the user can apply three basic types of operation", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 635, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 646 + ], + "score": 1.0, + "content": "on a handle: 1) make it static (i.e., no deformation), 2) translate it, or 3) rotate it around a center.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "Usually, the first operation is used in combination with the latter two to produce useful deformation.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "We first show how our algorithm deforms simple objects (e.g., a cylinder and a rectangle bar) when", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "the user rotates or translates one end while fixing the other. We then extend this set of operations to", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "shapes with more detail (e.g., Cactus, Armadillo, and Dino). Finally, we test our algorithms when all", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "three operations are specified together on a single shape. The results are shown in Figure 5. We can", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "see that applying ARAP directly on the extracted mesh creates undesirable volume distortion. Our", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "algorithm is able to produce deformation results that are natural while satisfying the user’s intention.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 300, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 300, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 71, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 103, + 69, + 508, + 90 + ], + "spans": [ + { + "bbox": [ + 103, + 69, + 252, + 90 + ], + "score": 1.0, + "content": "quantify this by the matrix norm of", + "type": "text" + }, + { + "bbox": [ + 253, + 72, + 417, + 86 + ], + "score": 0.88, + "content": "{ \\bf P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - { \\bf J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( { \\bf x } ) ) { \\bf J } _ { D _ { \\theta } } \\right) { \\bf P } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 69, + 508, + 90 + ], + "score": 1.0, + "content": ". Finally, we arrive at", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "our bending loss, which minimizes the norm of the matrix that modulate the change of tangent", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 376, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 376, + 108 + ], + "score": 1.0, + "content": "dot-product derivatives moving along the surface normal direction:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 103, + 69, + 508, + 108 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 106, + 446, + 135 + ], + "lines": [ + { + "bbox": [ + 165, + 106, + 446, + 135 + ], + "spans": [ + { + "bbox": [ + 165, + 106, + 446, + 135 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { b } ( G _ { \\theta } ) = \\int _ { x \\in \\mathcal { M } _ { G _ { \\theta } } } \\left\\| \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right\\| _ { F } ^ { s } d \\mathbf { x } .", + "type": "interline_equation", + "image_path": "4c7abbcefd81e5539f2afe9b7ebd263d1d3dd8f74fe71abb5984c212b541028f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 165, + 106, + 446, + 115.66666666666667 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 165, + 115.66666666666667, + 446, + 125.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 165, + 125.33333333333334, + 446, + 135.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 141, + 232, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 231, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 187, + 155 + ], + "score": 1.0, + "content": "5.3.3 Computing", + "type": "text" + }, + { + "bbox": [ + 187, + 141, + 199, + 152 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 139, + 219, + 155 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 141, + 231, + 152 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 156, + 173 + ], + "score": 1.0, + "content": "Computing", + "type": "text" + }, + { + "bbox": [ + 157, + 160, + 169, + 171 + ], + "score": 0.86, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 158, + 191, + 173 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 160, + 204, + 171 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "during training requires approximating a surface integral of the form", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 170, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 107, + 171, + 176, + 187 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\bar { \\mathcal { L } } ( \\mathbf { x } ) d \\mathbf { x } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "using Monte Carlo integration, which requires an efficient way to sample points", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 182, + 507, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 204, + 199 + ], + "score": 1.0, + "content": "θuniformly from surface", + "type": "text" + }, + { + "bbox": [ + 204, + 185, + 228, + 197 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 182, + 507, + 199 + ], + "score": 1.0, + "content": ". While it is feasible to sample uniformly from an SDF, this is chal-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 184, + 209 + ], + "score": 1.0, + "content": "lenging to do with", + "type": "text" + }, + { + "bbox": [ + 185, + 196, + 198, + 207 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 196, + 329, + 209 + ], + "score": 1.0, + "content": "since there is no guarantee that", + "type": "text" + }, + { + "bbox": [ + 330, + 196, + 343, + 207 + ], + "score": 0.9, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "remains a valid SDF during the course", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 207, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 273, + 222 + ], + "score": 1.0, + "content": "of training. Thanks to the invertibility of", + "type": "text" + }, + { + "bbox": [ + 274, + 208, + 287, + 219 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 207, + 424, + 222 + ], + "score": 1.0, + "content": ", we can apply change of variable", + "type": "text" + }, + { + "bbox": [ + 425, + 207, + 478, + 220 + ], + "score": 0.96, + "content": "\\mathbf { x } = D _ { \\theta } ^ { - 1 } ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 207, + 506, + 222 + ], + "score": 1.0, + "content": "to the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 218, + 337, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 181, + 232 + ], + "score": 1.0, + "content": "integration, where", + "type": "text" + }, + { + "bbox": [ + 181, + 221, + 189, + 230 + ], + "score": 0.66, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 218, + 313, + 232 + ], + "score": 1.0, + "content": "are points on the input surface", + "type": "text" + }, + { + "bbox": [ + 313, + 219, + 332, + 230 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 218, + 337, + 232 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 158, + 507, + 232 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 231, + 475, + 259 + ], + "lines": [ + { + "bbox": [ + 136, + 231, + 475, + 259 + ], + "spans": [ + { + "bbox": [ + 136, + 231, + 475, + 259 + ], + "score": 0.91, + "content": "\\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\mathcal { L } ( \\mathbf { x } ) d \\mathbf { x } = \\int _ { \\mathbf { y } \\in \\mathcal { M } _ { F } } \\mathcal { L } ( \\mathbf { x } ) \\left| \\operatorname* { d e t } \\left( \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) + \\mathbf { n } _ { F } ( \\mathbf { y } ) \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\right) \\right| ^ { - 2 } d \\mathbf { y } .", + "type": "interline_equation", + "image_path": "e2899c8e60314aa5d0d262add3c4d68fbf158450ae273c1e944f406c27384e93.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 136, + 231, + 475, + 240.33333333333334 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 136, + 240.33333333333334, + 475, + 249.66666666666669 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 136, + 249.66666666666669, + 475, + 259.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 177, + 273 + ], + "score": 0.91, + "content": "\\mathbf { J } _ { D _ { \\theta } } \\mathbf { P } _ { G _ { \\theta } } \\in \\mathbb { R } ^ { 3 \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 258, + 280, + 275 + ], + "score": 1.0, + "content": "maps tangent vector from", + "type": "text" + }, + { + "bbox": [ + 280, + 261, + 303, + 273 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { G _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 258, + 315, + 275 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 315, + 261, + 334, + 272 + ], + "score": 0.9, + "content": "\\mathcal { M } _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 258, + 506, + 275 + ], + "score": 1.0, + "content": ". We apply the extension trick from Iglesias", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "et al. [35] to create a matrix whose determinant equals the change of surface area. This is achieved by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 256, + 296 + ], + "score": 1.0, + "content": "adding the surface normal component", + "type": "text" + }, + { + "bbox": [ + 257, + 282, + 284, + 295 + ], + "score": 0.92, + "content": "\\mathbf { n } _ { F } \\mathbf { n } _ { G } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 282, + 506, + 296 + ], + "score": 1.0, + "content": "and keeping it unchanged. With this change of variable,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 504, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 397, + 305 + ], + "score": 1.0, + "content": "we now can compute the losses with point samples from the input field", + "type": "text" + }, + { + "bbox": [ + 397, + 294, + 406, + 304 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 294, + 495, + 305 + ], + "score": 1.0, + "content": ". Since the input field", + "type": "text" + }, + { + "bbox": [ + 495, + 294, + 504, + 304 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 304, + 498, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 498, + 317 + ], + "score": 1.0, + "content": "approximates an SDF, we can use the method introduced in Section 5.1 to sample uniform points.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 258, + 506, + 317 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 328, + 187, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 189, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 189, + 343 + ], + "score": 1.0, + "content": "5.4 Optimization", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 348, + 504, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "score": 1.0, + "content": "Putting the losses together, we deform a neural field by solving the constrained optimization problem", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 347, + 505, + 362 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 361, + 451, + 380 + ], + "lines": [ + { + "bbox": [ + 158, + 361, + 451, + 380 + ], + "spans": [ + { + "bbox": [ + 158, + 361, + 451, + 380 + ], + "score": 0.87, + "content": "\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\lambda _ { s } \\mathcal { L } _ { s } ( G _ { \\theta } ) + \\lambda _ { b } \\mathcal { L } _ { b } ( G _ { \\theta } ) , \\quad \\mathrm { s . t . } \\forall 1 \\leq i \\leq n , \\ \\| D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\| = 0", + "type": "interline_equation", + "image_path": "bc7131e80976def89d777867f865510168603474709b0e2f96c867263c85bc6b.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 158, + 361, + 451, + 380 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 134, + 394 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 382, + 161, + 393 + ], + "score": 0.47, + "content": "\\lambda _ { s } , \\lambda _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "are hyperparameters that determine the material properties. One way to solve this", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "constrained optimization problem for a neural network is to make the constraints a soft loss adding to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 103, + 399, + 452, + 420 + ], + "spans": [ + { + "bbox": [ + 103, + 399, + 199, + 420 + ], + "score": 1.0, + "content": "the objective function:", + "type": "text" + }, + { + "bbox": [ + 199, + 402, + 356, + 416 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\dot { \\mathcal { L } } _ { c o n s t } ^ { { \\bf \\Delta } } ( D _ { \\theta } ) = \\frac { 1 } { n } \\sum _ { 1 = 1 } ^ { n } \\left. D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\right. } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 399, + 452, + 420 + ], + "score": 1.0, + "content": ". Our final objective is:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 103, + 381, + 506, + 420 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 417, + 392, + 430 + ], + "lines": [], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 218, + 417, + 392, + 430 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 137, + 443 + ], + "score": 1.0, + "content": "We set", + "type": "text" + }, + { + "bbox": [ + 137, + 432, + 149, + 442 + ], + "score": 0.88, + "content": "\\lambda _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "to be a high value to enforce that the model satisfies user-specified input as much as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 216, + 455 + ], + "score": 1.0, + "content": "possible. The user can tune", + "type": "text" + }, + { + "bbox": [ + 216, + 443, + 227, + 453 + ], + "score": 0.89, + "content": "\\lambda _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 442, + 244, + 455 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 245, + 443, + 256, + 453 + ], + "score": 0.89, + "content": "\\lambda _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 442, + 463, + 455 + ], + "score": 1.0, + "content": "depending on the application scenario. We optimize", + "type": "text" + }, + { + "bbox": [ + 463, + 442, + 484, + 454 + ], + "score": 0.91, + "content": "\\mathcal { L } ( \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 453, + 491, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 274, + 465 + ], + "score": 1.0, + "content": "Adam optimizer to obtain the output field", + "type": "text" + }, + { + "bbox": [ + 274, + 453, + 288, + 464 + ], + "score": 0.89, + "content": "G _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 453, + 491, + 465 + ], + "score": 1.0, + "content": ". Hyperparameters are provided in the supplement.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 431, + 505, + 465 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 231, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 232, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 232, + 494 + ], + "score": 1.0, + "content": "6 Deformation Results", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "In this section, we will demonstrate the results of our methods to shape deformation. The shapes", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "for deformation are taken from Sorkine-Hornung and Alexa [70]. To create neural fields from these", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "meshes, we follow the procedure of Park et al. [56] to compute ground-truth SDF for locations", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 535, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 172, + 548 + ], + "score": 1.0, + "content": "sampled within", + "type": "text" + }, + { + "bbox": [ + 172, + 535, + 204, + 547 + ], + "score": 0.92, + "content": "[ - 1 , 1 ] ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 535, + 506, + 548 + ], + "score": 1.0, + "content": ". We then fit a SIREN [66] to the ground-truth SDF to generate our initial", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "neural fields. Our main baseline is ARAP [70, 86]. The simplest way to use ARAP to edit neural", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "fields is applying it on a mesh extracted from the input neural fields using marching cubes [44, 45].", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 581 + ], + "score": 1.0, + "content": "We first present results comparing with ARAP applied to the extracted mesh. Then we will conduct", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 580, + 351, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 351, + 591 + ], + "score": 1.0, + "content": "an analysis to show our losses encourage the right behaviors.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 502, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "Comparing to ARAP baseline. We follow ARAP [70] to create a set of basic shape deformation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 613, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 625 + ], + "score": 1.0, + "content": "operations to evaluate our algorithm. In this setting, the user will first specify a set of handles used for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "manipulation (shown in Figure 5 in blue). In general, the user can apply three basic types of operation", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 635, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 646 + ], + "score": 1.0, + "content": "on a handle: 1) make it static (i.e., no deformation), 2) translate it, or 3) rotate it around a center.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "Usually, the first operation is used in combination with the latter two to produce useful deformation.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "We first show how our algorithm deforms simple objects (e.g., a cylinder and a rectangle bar) when", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "the user rotates or translates one end while fixing the other. We then extend this set of operations to", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "shapes with more detail (e.g., Cactus, Armadillo, and Dino). Finally, we test our algorithms when all", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "three operations are specified together on a single shape. The results are shown in Figure 5. We can", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "see that applying ARAP directly on the extracted mesh creates undesirable volume distortion. Our", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "algorithm is able to produce deformation results that are natural while satisfying the user’s intention.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 601, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 73, + 504, + 435 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 73, + 504, + 435 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 73, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 504, + 435 + ], + "score": 0.976, + "type": "image", + "image_path": "4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 73, + 504, + 193.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 193.66666666666669, + 504, + 314.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 314.33333333333337, + 504, + 435.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 443, + 506, + 488 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "Figure 5: Deformation results. (A) Input shape. (B) Baseline. (C) Ours. Red points are user specified", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 138, + 468 + ], + "score": 1.0, + "content": "handles", + "type": "text" + }, + { + "bbox": [ + 138, + 455, + 150, + 466 + ], + "score": 0.86, + "content": "\\mathbf { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 454, + 336, + 468 + ], + "score": 1.0, + "content": ". Blue points denote user specified target points", + "type": "text" + }, + { + "bbox": [ + 337, + 456, + 346, + 466 + ], + "score": 0.86, + "content": "\\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 454, + 506, + 468 + ], + "score": 1.0, + "content": ". First row: single rotation or translation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 466, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 507, + 479 + ], + "score": 1.0, + "content": "on simple shapes. Second and third rows: single rotation or translation on more complex objects.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 476, + 295, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 295, + 489 + ], + "score": 1.0, + "content": "Fourth row: multiple edits on complex objects.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Comparing to different ARAP variants. This artifact is partially due to the surface discretization", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 506, + 523 + ], + "score": 1.0, + "content": "made by the marching cubed algorithm doesn’t agree with the assumptions made by ARAP [41].", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "To verify this hypothesis, we also include three additional baselines in Figure 6. First, we show the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "results of applying ARAP on the low-poly mesh used to create the input neural fields (Original).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "Second, we first apply Garland and Heckbert [28] to simplify the surface of the extracted mesh before", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "applying ARAP to it (Remeshed). Finally, we also compare to the results of SR-ARAP [41], which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "adds smoothness regularization to ARAP to remove some unnatural distortion (SR-ARAP). The figure", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "shows that ARAP works much better when the surface is discretized appropriately. Discretizing the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "surface, however, usually requires case-by-case manual adjustment to perform well. Our algorithm", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "score": 1.0, + "content": "does not suffer from such issues as we optimize the thin shell objective directly without committing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 610, + 280, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 280, + 622 + ], + "score": 1.0, + "content": "to a particular discretization of the surface.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "score": 1.0, + "content": "Loss analysis. Here we provide an experiment to analyze the behavior of stretching loss and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 453, + 658 + ], + "score": 1.0, + "content": "bending loss. Specifically, we compare models optimized for only the stretching loss", + "type": "text" + }, + { + "bbox": [ + 453, + 646, + 465, + 656 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 645, + 505, + 658 + ], + "score": 1.0, + "content": ", only the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 161, + 668 + ], + "score": 1.0, + "content": "bending loss", + "type": "text" + }, + { + "bbox": [ + 162, + 657, + 173, + 667 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 656, + 505, + 668 + ], + "score": 1.0, + "content": ", and both losses together. Similar to Section 5.2, we deform a neural field that", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 491, + 680 + ], + "score": 1.0, + "content": "approximates the SDF of a 2D rectangle. The results are shown in Figure 7. Optimizing only for", + "type": "text" + }, + { + "bbox": [ + 492, + 667, + 504, + 678 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "produces a shape that best preserves surface area (or the perimeter in the 2D case), which explains", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 245, + 701 + ], + "score": 1.0, + "content": "the wiggling. Optimizing only for", + "type": "text" + }, + { + "bbox": [ + 245, + 689, + 257, + 700 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "produces a shape that tries to prevent wiggling of the surface,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 417, + 712 + ], + "score": 1.0, + "content": "which changes the curvature of the surface. The user can choose appropriate", + "type": "text" + }, + { + "bbox": [ + 417, + 700, + 429, + 711 + ], + "score": 0.88, + "content": "\\lambda _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 699, + 447, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 447, + 700, + 458, + 711 + ], + "score": 0.88, + "content": "\\lambda _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "to produce", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 710, + 345, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 345, + 723 + ], + "score": 1.0, + "content": "deformation with resistance to both bending and stretching.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5 + } + ], + "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": [ + 106, + 73, + 504, + 435 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 73, + 504, + 435 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 73, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 504, + 435 + ], + "score": 0.976, + "type": "image", + "image_path": "4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 73, + 504, + 193.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 193.66666666666669, + 504, + 314.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 314.33333333333337, + 504, + 435.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 443, + 506, + 488 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "Figure 5: Deformation results. (A) Input shape. (B) Baseline. (C) Ours. Red points are user specified", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 138, + 468 + ], + "score": 1.0, + "content": "handles", + "type": "text" + }, + { + "bbox": [ + 138, + 455, + 150, + 466 + ], + "score": 0.86, + "content": "\\mathbf { h } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 454, + 336, + 468 + ], + "score": 1.0, + "content": ". Blue points denote user specified target points", + "type": "text" + }, + { + "bbox": [ + 337, + 456, + 346, + 466 + ], + "score": 0.86, + "content": "\\mathbf { t } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 454, + 506, + 468 + ], + "score": 1.0, + "content": ". First row: single rotation or translation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 466, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 507, + 479 + ], + "score": 1.0, + "content": "on simple shapes. Second and third rows: single rotation or translation on more complex objects.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 476, + 295, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 295, + 489 + ], + "score": 1.0, + "content": "Fourth row: multiple edits on complex objects.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Comparing to different ARAP variants. This artifact is partially due to the surface discretization", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 506, + 523 + ], + "score": 1.0, + "content": "made by the marching cubed algorithm doesn’t agree with the assumptions made by ARAP [41].", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "To verify this hypothesis, we also include three additional baselines in Figure 6. First, we show the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "results of applying ARAP on the low-poly mesh used to create the input neural fields (Original).", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "Second, we first apply Garland and Heckbert [28] to simplify the surface of the extracted mesh before", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "applying ARAP to it (Remeshed). Finally, we also compare to the results of SR-ARAP [41], which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "adds smoothness regularization to ARAP to remove some unnatural distortion (SR-ARAP). The figure", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "shows that ARAP works much better when the surface is discretized appropriately. Discretizing the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "surface, however, usually requires case-by-case manual adjustment to perform well. Our algorithm", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 612 + ], + "score": 1.0, + "content": "does not suffer from such issues as we optimize the thin shell objective directly without committing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 610, + 280, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 280, + 622 + ], + "score": 1.0, + "content": "to a particular discretization of the surface.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 500, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "score": 1.0, + "content": "Loss analysis. Here we provide an experiment to analyze the behavior of stretching loss and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 453, + 658 + ], + "score": 1.0, + "content": "bending loss. Specifically, we compare models optimized for only the stretching loss", + "type": "text" + }, + { + "bbox": [ + 453, + 646, + 465, + 656 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 645, + 505, + 658 + ], + "score": 1.0, + "content": ", only the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 161, + 668 + ], + "score": 1.0, + "content": "bending loss", + "type": "text" + }, + { + "bbox": [ + 162, + 657, + 173, + 667 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 656, + 505, + 668 + ], + "score": 1.0, + "content": ", and both losses together. Similar to Section 5.2, we deform a neural field that", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 491, + 680 + ], + "score": 1.0, + "content": "approximates the SDF of a 2D rectangle. The results are shown in Figure 7. Optimizing only for", + "type": "text" + }, + { + "bbox": [ + 492, + 667, + 504, + 678 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { s }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "produces a shape that best preserves surface area (or the perimeter in the 2D case), which explains", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 245, + 701 + ], + "score": 1.0, + "content": "the wiggling. Optimizing only for", + "type": "text" + }, + { + "bbox": [ + 245, + 689, + 257, + 700 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "produces a shape that tries to prevent wiggling of the surface,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 417, + 712 + ], + "score": 1.0, + "content": "which changes the curvature of the surface. The user can choose appropriate", + "type": "text" + }, + { + "bbox": [ + 417, + 700, + 429, + 711 + ], + "score": 0.88, + "content": "\\lambda _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 699, + 447, + 712 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 447, + 700, + 458, + 711 + ], + "score": 0.88, + "content": "\\lambda _ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "to produce", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 710, + 345, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 345, + 723 + ], + "score": 1.0, + "content": "deformation with resistance to both bending and stretching.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 634, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 68, + 489, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 68, + 489, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 68, + 489, + 165 + ], + "spans": [ + { + "bbox": [ + 120, + 68, + 489, + 165 + ], + "score": 0.964, + "type": "image", + "image_path": "2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 68, + 489, + 100.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 100.33333333333334, + 489, + 132.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 132.66666666666669, + 489, + 165.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 170, + 506, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "Figure 6: Additional ARAP baselines. Directly applying ARAP to extracted mesh produces", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 180, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 104, + 180, + 506, + 194 + ], + "score": 1.0, + "content": "poor results (i.e., MC). While this can be alleviated by remshing (i.e. Original or Remeshed)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "or regularization (i.e. SR-ARAP), this shows mesh deformation algorithms can be sensitive to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 202, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 215 + ], + "score": 1.0, + "content": "discretization quality. Our method do not discretize the surface, thus circumvent such issue. Red", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 214, + 278, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 278, + 227 + ], + "score": 1.0, + "content": "points are handles; Blue points are targets.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 107, + 244, + 337, + 258 + ], + "lines": [ + { + "bbox": [ + 104, + 243, + 340, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 243, + 340, + 261 + ], + "score": 1.0, + "content": "7 Discussion, Limitations, and Future work", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 337, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 338, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 338, + 282 + ], + "score": 1.0, + "content": "Advantages of using neural fields for geometry pro-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 280, + 338, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 338, + 292 + ], + "score": 1.0, + "content": "cessing. The main strength of using neural fields for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 291, + 338, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 338, + 304 + ], + "score": 1.0, + "content": "geometry processing is that one can disentangle the pro-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 302, + 337, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 337, + 313 + ], + "score": 1.0, + "content": "cessing algorithm from the surface discretization. Users", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 313, + 338, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 338, + 325 + ], + "score": 1.0, + "content": "do not need to worry about discretization while manipulat-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 323, + 337, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 337, + 336 + ], + "score": 1.0, + "content": "ing a shape represented in neural fields. This might open", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 334, + 339, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 339, + 347 + ], + "score": 1.0, + "content": "the door to more automatic geometry processing pipelines.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 345, + 338, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 338, + 357 + ], + "score": 1.0, + "content": "Additionally, neural fields are modular and can be com-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 356, + 337, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 337, + 368 + ], + "score": 1.0, + "content": "bined with other neural networks. Neural fields can be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 367, + 338, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 338, + 379 + ], + "score": 1.0, + "content": "easily incorporated into current deep learning pipelines.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 377, + 338, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 338, + 390 + ], + "score": 1.0, + "content": "This makes them well-suited for data-driven applications.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14 + }, + { + "type": "image", + "bbox": [ + 352, + 276, + 495, + 343 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 352, + 276, + 495, + 343 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 352, + 276, + 495, + 343 + ], + "spans": [ + { + "bbox": [ + 352, + 276, + 495, + 343 + ], + "score": 0.953, + "type": "image", + "image_path": "019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 352, + 276, + 495, + 309.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 352, + 309.5, + 495, + 343.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 350, + 505, + 383 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 343, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 343, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "Figure 7: Analysis of stretching and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 343, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 343, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "bending losses. Blue points are handles;", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 343, + 371, + 435, + 384 + ], + "spans": [ + { + "bbox": [ + 343, + 371, + 435, + 384 + ], + "score": 1.0, + "content": "Red points are targets.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "index": 21.75 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "Limitations and future directions. The main limitation of our method is the slow optimization", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "speed that hinders interactive editing. Typically, ARAP can solve each of such deformation problems", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "within half an hour for large meshes, and it can achieve interactive speed for meshes with a small", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "number of triangles. The Taubin smoothing can finish in a couple of seconds. Our deformation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "method right now requires a TitanX GPU with 12GB memory to train for 10 hours. Our smoothing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "and sharpening method takes about 10 minutes on the same GPU. The current algorithm does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "ensure that the output field remains an SDF, which prevents performing multiple editing operations.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "We believe many of these limitations can be addressed in future work. One can potentially use", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "techniques like progressive training or meta-learning [67, 75] to improve the training speed. To allow", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "consecutive editing, we can design regularization loss that enforces the output fields to approximate", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "an SDF [4] or design sampling methods robust with noisy SDF. Other interesting directions include", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "providing deeper theoretical analysis and applying neural fields in other geometry processing tasks.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 108, + 540, + 504, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Societal impact. Our work can lead to more efficient geometry processing algorithms. Such", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "algorithms can empower artists to generate creative content. Potential negative impact includes", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 562, + 388, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 388, + 574 + ], + "score": 1.0, + "content": "misuse of geometry processing algorithms to create offensive content.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 107, + 588, + 183, + 602 + ], + "lines": [ + { + "bbox": [ + 104, + 586, + 185, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 586, + 185, + 604 + ], + "score": 1.0, + "content": "8 Conclusion", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 613, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "score": 1.0, + "content": "Our work provides a proof of concept that geometry processing can be done entirely with neural", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "fields without discretizing the surface. We develop network architectures and training objectives", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "for filtering and deforming shapes represented by neural fields and demonstrate the advantages of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 645, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 659 + ], + "score": 1.0, + "content": "using neural fields for geometry processing. We hope that our work can inspire a new generation of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 658, + 315, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 315, + 670 + ], + "score": 1.0, + "content": "geometry processing algorithms using neural fields.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 675, + 503, + 708 + ], + "lines": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "score": 1.0, + "content": "Acknowledgement. Guandao’s PhD was supported in part by a research gift from Magic Leap and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 686, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 698 + ], + "score": 1.0, + "content": "a donation from NVIDIA. We want to thank Wenqi Xian, Professor Steve Marschner, and members", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 696, + 358, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 358, + 710 + ], + "score": 1.0, + "content": "of Intel Labs for providing insightful feedback for this project.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 742, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 68, + 489, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 68, + 489, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 68, + 489, + 165 + ], + "spans": [ + { + "bbox": [ + 120, + 68, + 489, + 165 + ], + "score": 0.964, + "type": "image", + "image_path": "2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 68, + 489, + 100.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 100.33333333333334, + 489, + 132.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 132.66666666666669, + 489, + 165.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 170, + 506, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "Figure 6: Additional ARAP baselines. Directly applying ARAP to extracted mesh produces", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 180, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 104, + 180, + 506, + 194 + ], + "score": 1.0, + "content": "poor results (i.e., MC). While this can be alleviated by remshing (i.e. Original or Remeshed)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "or regularization (i.e. SR-ARAP), this shows mesh deformation algorithms can be sensitive to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 202, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 215 + ], + "score": 1.0, + "content": "discretization quality. Our method do not discretize the surface, thus circumvent such issue. Red", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 214, + 278, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 278, + 227 + ], + "score": 1.0, + "content": "points are handles; Blue points are targets.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 107, + 244, + 337, + 258 + ], + "lines": [ + { + "bbox": [ + 104, + 243, + 340, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 243, + 340, + 261 + ], + "score": 1.0, + "content": "7 Discussion, Limitations, and Future work", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 337, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 338, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 338, + 282 + ], + "score": 1.0, + "content": "Advantages of using neural fields for geometry pro-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 280, + 338, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 338, + 292 + ], + "score": 1.0, + "content": "cessing. The main strength of using neural fields for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 291, + 338, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 338, + 304 + ], + "score": 1.0, + "content": "geometry processing is that one can disentangle the pro-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 302, + 337, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 337, + 313 + ], + "score": 1.0, + "content": "cessing algorithm from the surface discretization. Users", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 313, + 338, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 338, + 325 + ], + "score": 1.0, + "content": "do not need to worry about discretization while manipulat-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 323, + 337, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 337, + 336 + ], + "score": 1.0, + "content": "ing a shape represented in neural fields. This might open", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 334, + 339, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 339, + 347 + ], + "score": 1.0, + "content": "the door to more automatic geometry processing pipelines.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 345, + 338, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 338, + 357 + ], + "score": 1.0, + "content": "Additionally, neural fields are modular and can be com-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 356, + 337, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 337, + 368 + ], + "score": 1.0, + "content": "bined with other neural networks. Neural fields can be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 367, + 338, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 338, + 379 + ], + "score": 1.0, + "content": "easily incorporated into current deep learning pipelines.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 377, + 338, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 338, + 390 + ], + "score": 1.0, + "content": "This makes them well-suited for data-driven applications.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 268, + 339, + 390 + ] + }, + { + "type": "image", + "bbox": [ + 352, + 276, + 495, + 343 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 352, + 276, + 495, + 343 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 352, + 276, + 495, + 343 + ], + "spans": [ + { + "bbox": [ + 352, + 276, + 495, + 343 + ], + "score": 0.953, + "type": "image", + "image_path": "019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 352, + 276, + 495, + 309.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 352, + 309.5, + 495, + 343.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 350, + 505, + 383 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 343, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 343, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "Figure 7: Analysis of stretching and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 343, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 343, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "bending losses. Blue points are handles;", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 343, + 371, + 435, + 384 + ], + "spans": [ + { + "bbox": [ + 343, + 371, + 435, + 384 + ], + "score": 1.0, + "content": "Red points are targets.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "index": 21.75 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "Limitations and future directions. The main limitation of our method is the slow optimization", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "speed that hinders interactive editing. Typically, ARAP can solve each of such deformation problems", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "within half an hour for large meshes, and it can achieve interactive speed for meshes with a small", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "number of triangles. The Taubin smoothing can finish in a couple of seconds. Our deformation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "method right now requires a TitanX GPU with 12GB memory to train for 10 hours. Our smoothing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "and sharpening method takes about 10 minutes on the same GPU. The current algorithm does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "ensure that the output field remains an SDF, which prevents performing multiple editing operations.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 396, + 506, + 475 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "We believe many of these limitations can be addressed in future work. One can potentially use", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "techniques like progressive training or meta-learning [67, 75] to improve the training speed. To allow", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "consecutive editing, we can design regularization loss that enforces the output fields to approximate", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "an SDF [4] or design sampling methods robust with noisy SDF. Other interesting directions include", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "providing deeper theoretical analysis and applying neural fields in other geometry processing tasks.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 477, + 505, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 540, + 504, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Societal impact. Our work can lead to more efficient geometry processing algorithms. Such", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "algorithms can empower artists to generate creative content. Potential negative impact includes", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 562, + 388, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 388, + 574 + ], + "score": 1.0, + "content": "misuse of geometry processing algorithms to create offensive content.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 539, + 505, + 574 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 588, + 183, + 602 + ], + "lines": [ + { + "bbox": [ + 104, + 586, + 185, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 586, + 185, + 604 + ], + "score": 1.0, + "content": "8 Conclusion", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 613, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "score": 1.0, + "content": "Our work provides a proof of concept that geometry processing can be done entirely with neural", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "fields without discretizing the surface. We develop network architectures and training objectives", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "for filtering and deforming shapes represented by neural fields and demonstrate the advantages of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 645, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 659 + ], + "score": 1.0, + "content": "using neural fields for geometry processing. We hope that our work can inspire a new generation of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 658, + 315, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 315, + 670 + ], + "score": 1.0, + "content": "geometry processing algorithms using neural fields.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 613, + 506, + 670 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 675, + 503, + 708 + ], + "lines": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "score": 1.0, + "content": "Acknowledgement. Guandao’s PhD was supported in part by a research gift from Magic Leap and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 686, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 698 + ], + "score": 1.0, + "content": "a donation from NVIDIA. We want to thank Wenqi Xian, Professor Steve Marschner, and members", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 696, + 358, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 358, + 710 + ], + "score": 1.0, + "content": "of Intel Labs for providing insightful feedback for this project.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 675, + 505, + 710 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 61, + 507, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 90, + 507, + 104 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 507, + 104 + ], + "score": 1.0, + "content": "[1] M. Alexa, D. Cohen-Or, and D. Levin. As-rigid-as-possible shape interpolation. Proceedings of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 100, + 486, + 116 + ], + "spans": [ + { + "bbox": [ + 126, + 100, + 486, + 116 + ], + "score": 1.0, + "content": "the 27th annual conference on Computer graphics and interactive techniques, 2000. 5, 7", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 119, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 110, + 119, + 506, + 133 + ], + "score": 1.0, + "content": "[2] Pierre Alliez, Mark Meyer, and Mathieu Desbrun. Interactive geometry remeshing. ACM", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 131, + 364, + 143 + ], + "spans": [ + { + "bbox": [ + 127, + 131, + 364, + 143 + ], + "score": 1.0, + "content": "Transactions on Graphics (TOG), 21(3):347–354, 2002. 1", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 148, + 507, + 162 + ], + "spans": [ + { + "bbox": [ + 110, + 148, + 507, + 162 + ], + "score": 1.0, + "content": "[3] Pierre Alliez, David Cohen-Steiner, Olivier Devillers, Bruno Lévy, and Mathieu Desbrun.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 160, + 430, + 174 + ], + "spans": [ + { + "bbox": [ + 126, + 160, + 430, + 174 + ], + "score": 1.0, + "content": "Anisotropic polygonal remeshing. ACM SIGGRAPH 2003 Papers, 2003. 1", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 110, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "[4] Matan Atzmon and Y. Lipman. Sal: Sign agnostic learning of shapes from raw data. 2020", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 189, + 507, + 203 + ], + "spans": [ + { + "bbox": [ + 126, + 189, + 507, + 203 + ], + "score": 1.0, + "content": "IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 2562–2571,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 200, + 189, + 214 + ], + "spans": [ + { + "bbox": [ + 127, + 200, + 189, + 214 + ], + "score": 1.0, + "content": "2020. 3, 4, 10", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 109, + 217, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 109, + 217, + 507, + 234 + ], + "score": 1.0, + "content": "[5] Matan Atzmon, Niv Haim, Lior Yariv, Ofer Israelov, Haggai Maron, and Y. Lipman. Controlling", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 228, + 303, + 243 + ], + "spans": [ + { + "bbox": [ + 126, + 228, + 303, + 243 + ], + "score": 1.0, + "content": "neural level sets. In NeurIPS, 2019. 2, 3, 5", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 248, + 487, + 262 + ], + "spans": [ + { + "bbox": [ + 110, + 248, + 487, + 262 + ], + "score": 1.0, + "content": "[6] D. Bechmann. Space deformation models survey. Comput. Graph., 18:571–586, 1994. 2", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 266, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 110, + 266, + 507, + 280 + ], + "score": 1.0, + "content": "[7] Jens Behrmann, D. Duvenaud, and J. Jacobsen. Invertible residual networks. In ICML, 2019. 2,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 279, + 136, + 289 + ], + "spans": [ + { + "bbox": [ + 127, + 279, + 136, + 289 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 110, + 295, + 420, + 309 + ], + "spans": [ + { + "bbox": [ + 110, + 295, + 420, + 309 + ], + "score": 1.0, + "content": "[8] J. Bloomenthal and B. Wyvill. Introduction to implicit surfaces. 1997. 1", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 314, + 507, + 328 + ], + "spans": [ + { + "bbox": [ + 110, + 314, + 507, + 328 + ], + "score": 1.0, + "content": "[9] Mario Botsch and O. Sorkine-Hornung. On linear variational surface deformation methods.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 326, + 471, + 338 + ], + "spans": [ + { + "bbox": [ + 127, + 326, + 471, + 338 + ], + "score": 1.0, + "content": "IEEE Transactions on Visualization and Computer Graphics, 14:213–230, 2008. 2, 3", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "[10] Mario Botsch, Mark Pauly, Markus H. Gross, and Leif P. Kobbelt. Primo: coupled prisms for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 354, + 323, + 369 + ], + "spans": [ + { + "bbox": [ + 127, + 354, + 323, + 369 + ], + "score": 1.0, + "content": "intuitive surface modeling. In SGP ’06, 2006. 2", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "[11] Mario Botsch, Leif Kobbelt, Mark Pauly, Pierre Alliez, and Bruno Lévy. Polygon mesh", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 383, + 271, + 399 + ], + "spans": [ + { + "bbox": [ + 125, + 383, + 271, + 399 + ], + "score": 1.0, + "content": "processing. CRC press, 2010. 1, 2", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "[12] Aljavz Bovzivc, Pablo Rodríguez Palafox, Michael Zollhofer, Justus Thies, Angela Dai, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 125, + 411, + 508, + 429 + ], + "spans": [ + { + "bbox": [ + 125, + 411, + 508, + 429 + ], + "score": 1.0, + "content": "Matthias Nießner. Neural deformation graphs for globally-consistent non-rigid reconstruction.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 424, + 257, + 436 + ], + "spans": [ + { + "bbox": [ + 126, + 424, + 257, + 436 + ], + "score": 1.0, + "content": "ArXiv, abs/2012.01451, 2020. 3", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 441, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 507, + 457 + ], + "score": 1.0, + "content": "[13] Ruojin Cai, Guandao Yang, Hadar Averbuch-Elor, Zekun Hao, Serge Belongie, Noah Snavely,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 126, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "and Bharath Hariharan. Learning gradient fields for shape generation. In Proceedings of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 128, + 466, + 380, + 478 + ], + "spans": [ + { + "bbox": [ + 128, + 466, + 380, + 478 + ], + "score": 1.0, + "content": "European Conference on Computer Vision (ECCV), 2020. 3, 5", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "[14] Edwin Catmull. A system for computer generated movies. In Proceedings of the ACM annual", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 493, + 317, + 507 + ], + "spans": [ + { + "bbox": [ + 126, + 493, + 317, + 507 + ], + "score": 1.0, + "content": "conference-Volume 1, pages 422–431, 1972. 1", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 526 + ], + "score": 1.0, + "content": "[15] Isaac Chao, Ulrich Pinkall, Patrick Sanan, and Peter Schröder. A simple geometric model for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 523, + 337, + 537 + ], + "spans": [ + { + "bbox": [ + 127, + 523, + 337, + 537 + ], + "score": 1.0, + "content": "elastic deformations. In SIGGRAPH 2010, 2010. 2", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 541, + 474, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 474, + 555 + ], + "score": 1.0, + "content": "[16] Hunter Chase. Fundamental forms of surfaces and the gauss-bonnet theorem. 2012. 7", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "[17] Ricky T. Q. Chen, Jens Behrmann, D. Duvenaud, and J. Jacobsen. Residual flows for invertible", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 126, + 572, + 347, + 584 + ], + "spans": [ + { + "bbox": [ + 126, + 572, + 347, + 584 + ], + "score": 1.0, + "content": "generative modeling. ArXiv, abs/1906.02735, 2019. 6", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "[18] Xu Chen, Yufeng Zheng, M. Black, Otmar Hilliges, and Andreas Geiger. Snarf: Differentiable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 126, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "forward skinning for animating non-rigid neural implicit shapes. ArXiv, abs/2104.03953, 2021.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 612, + 138, + 624 + ], + "spans": [ + { + "bbox": [ + 126, + 612, + 138, + 624 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "score": 1.0, + "content": "[19] Zhiqin Chen and Hao Zhang. Learning implicit fields for generative shape modeling. In", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 126, + 640, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 126, + 640, + 506, + 655 + ], + "score": 1.0, + "content": "Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 128, + 652, + 213, + 664 + ], + "spans": [ + { + "bbox": [ + 128, + 652, + 213, + 664 + ], + "score": 1.0, + "content": "5939–5948, 2019. 1", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 668, + 507, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 507, + 685 + ], + "score": 1.0, + "content": "[20] Ming Chuang and M. Kazhdan. Interactive and anisotropic geometry processing using the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 681, + 411, + 695 + ], + "spans": [ + { + "bbox": [ + 126, + 681, + 411, + 695 + ], + "score": 1.0, + "content": "screened poisson equation. ACM SIGGRAPH 2011 papers, 2011. 2, 4", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "[21] Djork-Arné Clevert, Thomas Unterthiner, and S. Hochreiter. Fast and accurate deep network", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 710, + 406, + 724 + ], + "spans": [ + { + "bbox": [ + 126, + 710, + 406, + 724 + ], + "score": 1.0, + "content": "learning by exponential linear units (elus). arXiv: Learning, 2016. 6", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 755 + ], + "score": 1.0, + "content": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 61, + 507, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 90, + 507, + 104 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 507, + 104 + ], + "score": 1.0, + "content": "[1] M. Alexa, D. Cohen-Or, and D. Levin. As-rigid-as-possible shape interpolation. Proceedings of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 100, + 486, + 116 + ], + "spans": [ + { + "bbox": [ + 126, + 100, + 486, + 116 + ], + "score": 1.0, + "content": "the 27th annual conference on Computer graphics and interactive techniques, 2000. 5, 7", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 119, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 110, + 119, + 506, + 133 + ], + "score": 1.0, + "content": "[2] Pierre Alliez, Mark Meyer, and Mathieu Desbrun. Interactive geometry remeshing. ACM", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 131, + 364, + 143 + ], + "spans": [ + { + "bbox": [ + 127, + 131, + 364, + 143 + ], + "score": 1.0, + "content": "Transactions on Graphics (TOG), 21(3):347–354, 2002. 1", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 148, + 507, + 162 + ], + "spans": [ + { + "bbox": [ + 110, + 148, + 507, + 162 + ], + "score": 1.0, + "content": "[3] Pierre Alliez, David Cohen-Steiner, Olivier Devillers, Bruno Lévy, and Mathieu Desbrun.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 126, + 160, + 430, + 174 + ], + "spans": [ + { + "bbox": [ + 126, + 160, + 430, + 174 + ], + "score": 1.0, + "content": "Anisotropic polygonal remeshing. ACM SIGGRAPH 2003 Papers, 2003. 1", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 110, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "[4] Matan Atzmon and Y. Lipman. Sal: Sign agnostic learning of shapes from raw data. 2020", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 189, + 507, + 203 + ], + "spans": [ + { + "bbox": [ + 126, + 189, + 507, + 203 + ], + "score": 1.0, + "content": "IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 2562–2571,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 200, + 189, + 214 + ], + "spans": [ + { + "bbox": [ + 127, + 200, + 189, + 214 + ], + "score": 1.0, + "content": "2020. 3, 4, 10", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 217, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 109, + 217, + 507, + 234 + ], + "score": 1.0, + "content": "[5] Matan Atzmon, Niv Haim, Lior Yariv, Ofer Israelov, Haggai Maron, and Y. Lipman. Controlling", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 228, + 303, + 243 + ], + "spans": [ + { + "bbox": [ + 126, + 228, + 303, + 243 + ], + "score": 1.0, + "content": "neural level sets. In NeurIPS, 2019. 2, 3, 5", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 248, + 487, + 262 + ], + "spans": [ + { + "bbox": [ + 110, + 248, + 487, + 262 + ], + "score": 1.0, + "content": "[6] D. Bechmann. Space deformation models survey. Comput. Graph., 18:571–586, 1994. 2", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 266, + 507, + 280 + ], + "spans": [ + { + "bbox": [ + 110, + 266, + 507, + 280 + ], + "score": 1.0, + "content": "[7] Jens Behrmann, D. Duvenaud, and J. Jacobsen. Invertible residual networks. In ICML, 2019. 2,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 279, + 136, + 289 + ], + "spans": [ + { + "bbox": [ + 127, + 279, + 136, + 289 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 295, + 420, + 309 + ], + "spans": [ + { + "bbox": [ + 110, + 295, + 420, + 309 + ], + "score": 1.0, + "content": "[8] J. Bloomenthal and B. Wyvill. Introduction to implicit surfaces. 1997. 1", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 314, + 507, + 328 + ], + "spans": [ + { + "bbox": [ + 110, + 314, + 507, + 328 + ], + "score": 1.0, + "content": "[9] Mario Botsch and O. Sorkine-Hornung. On linear variational surface deformation methods.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 127, + 326, + 471, + 338 + ], + "spans": [ + { + "bbox": [ + 127, + 326, + 471, + 338 + ], + "score": 1.0, + "content": "IEEE Transactions on Visualization and Computer Graphics, 14:213–230, 2008. 2, 3", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "[10] Mario Botsch, Mark Pauly, Markus H. Gross, and Leif P. Kobbelt. Primo: coupled prisms for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 354, + 323, + 369 + ], + "spans": [ + { + "bbox": [ + 127, + 354, + 323, + 369 + ], + "score": 1.0, + "content": "intuitive surface modeling. In SGP ’06, 2006. 2", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "[11] Mario Botsch, Leif Kobbelt, Mark Pauly, Pierre Alliez, and Bruno Lévy. Polygon mesh", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 125, + 383, + 271, + 399 + ], + "spans": [ + { + "bbox": [ + 125, + 383, + 271, + 399 + ], + "score": 1.0, + "content": "processing. CRC press, 2010. 1, 2", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "[12] Aljavz Bovzivc, Pablo Rodríguez Palafox, Michael Zollhofer, Justus Thies, Angela Dai, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 125, + 411, + 508, + 429 + ], + "spans": [ + { + "bbox": [ + 125, + 411, + 508, + 429 + ], + "score": 1.0, + "content": "Matthias Nießner. Neural deformation graphs for globally-consistent non-rigid reconstruction.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 126, + 424, + 257, + 436 + ], + "spans": [ + { + "bbox": [ + 126, + 424, + 257, + 436 + ], + "score": 1.0, + "content": "ArXiv, abs/2012.01451, 2020. 3", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 441, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 507, + 457 + ], + "score": 1.0, + "content": "[13] Ruojin Cai, Guandao Yang, Hadar Averbuch-Elor, Zekun Hao, Serge Belongie, Noah Snavely,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 126, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "and Bharath Hariharan. Learning gradient fields for shape generation. In Proceedings of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 128, + 466, + 380, + 478 + ], + "spans": [ + { + "bbox": [ + 128, + 466, + 380, + 478 + ], + "score": 1.0, + "content": "European Conference on Computer Vision (ECCV), 2020. 3, 5", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "[14] Edwin Catmull. A system for computer generated movies. In Proceedings of the ACM annual", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 493, + 317, + 507 + ], + "spans": [ + { + "bbox": [ + 126, + 493, + 317, + 507 + ], + "score": 1.0, + "content": "conference-Volume 1, pages 422–431, 1972. 1", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 526 + ], + "score": 1.0, + "content": "[15] Isaac Chao, Ulrich Pinkall, Patrick Sanan, and Peter Schröder. A simple geometric model for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 523, + 337, + 537 + ], + "spans": [ + { + "bbox": [ + 127, + 523, + 337, + 537 + ], + "score": 1.0, + "content": "elastic deformations. In SIGGRAPH 2010, 2010. 2", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 541, + 474, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 474, + 555 + ], + "score": 1.0, + "content": "[16] Hunter Chase. Fundamental forms of surfaces and the gauss-bonnet theorem. 2012. 7", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "[17] Ricky T. Q. Chen, Jens Behrmann, D. Duvenaud, and J. Jacobsen. Residual flows for invertible", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 126, + 572, + 347, + 584 + ], + "spans": [ + { + "bbox": [ + 126, + 572, + 347, + 584 + ], + "score": 1.0, + "content": "generative modeling. ArXiv, abs/1906.02735, 2019. 6", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "[18] Xu Chen, Yufeng Zheng, M. Black, Otmar Hilliges, and Andreas Geiger. Snarf: Differentiable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 126, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "forward skinning for animating non-rigid neural implicit shapes. ArXiv, abs/2104.03953, 2021.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 126, + 612, + 138, + 624 + ], + "spans": [ + { + "bbox": [ + 126, + 612, + 138, + 624 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "score": 1.0, + "content": "[19] Zhiqin Chen and Hao Zhang. Learning implicit fields for generative shape modeling. In", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 126, + 640, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 126, + 640, + 506, + 655 + ], + "score": 1.0, + "content": "Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 128, + 652, + 213, + 664 + ], + "spans": [ + { + "bbox": [ + 128, + 652, + 213, + 664 + ], + "score": 1.0, + "content": "5939–5948, 2019. 1", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 668, + 507, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 507, + 685 + ], + "score": 1.0, + "content": "[20] Ming Chuang and M. Kazhdan. Interactive and anisotropic geometry processing using the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 681, + 411, + 695 + ], + "spans": [ + { + "bbox": [ + 126, + 681, + 411, + 695 + ], + "score": 1.0, + "content": "screened poisson equation. ACM SIGGRAPH 2011 papers, 2011. 2, 4", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "[21] Djork-Arné Clevert, Thomas Unterthiner, and S. Hochreiter. Fast and accurate deep network", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 126, + 710, + 406, + 724 + ], + "spans": [ + { + "bbox": [ + 126, + 710, + 406, + 724 + ], + "score": 1.0, + "content": "learning by exponential linear units (elus). arXiv: Learning, 2016. 6", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 71, + 509, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 509, + 88 + ], + "score": 1.0, + "content": "[22] B. Curless and M. Levoy. A volumetric method for building complex models from range images.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 82, + 507, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 82, + 507, + 98 + ], + "score": 1.0, + "content": "Proceedings of the 23rd annual conference on Computer graphics and interactive techniques,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 127, + 94, + 163, + 107 + ], + "spans": [ + { + "bbox": [ + 127, + 94, + 163, + 107 + ], + "score": 1.0, + "content": "1996. 1", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "[23] T. Davies, Derek Nowrouzezahrai, and A. Jacobson. On the effectiveness of weight-encoded", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 125, + 268, + 137 + ], + "spans": [ + { + "bbox": [ + 127, + 125, + 268, + 137 + ], + "score": 1.0, + "content": "neural implicit 3d shapes. 2020. 1", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "[24] A. de Boer, Martijn van der Schoot, and Hester Bijl. Mesh deformation based on radial basis", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 154, + 410, + 167 + ], + "spans": [ + { + "bbox": [ + 126, + 154, + 410, + 167 + ], + "score": 1.0, + "content": "function interpolation. Computers & Structures, 85:784–795, 2007. 2", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "score": 1.0, + "content": "[25] Yu Deng, J. Yang, and Xin Tong. Deformed implicit field: Modeling 3d shapes with learned", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 184, + 266, + 197 + ], + "spans": [ + { + "bbox": [ + 126, + 184, + 266, + 197 + ], + "score": 1.0, + "content": "dense correspondence. 2021. 3, 6", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "[26] Mathieu Desbrun, M. Meyer, P. Schröder, and A. Barr. Implicit fairing of irregular meshes", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 214, + 385, + 228 + ], + "spans": [ + { + "bbox": [ + 126, + 214, + 385, + 228 + ], + "score": 1.0, + "content": "using diffusion and curvature flow. In SIGGRAPH ’99, 1999. 2", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 233, + 507, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 507, + 247 + ], + "score": 1.0, + "content": "[27] Michael Garland and Paul S. Heckbert. Surface simplification using quadric error metrics.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 242, + 507, + 260 + ], + "spans": [ + { + "bbox": [ + 125, + 242, + 507, + 260 + ], + "score": 1.0, + "content": "Proceedings of the 24th annual conference on Computer graphics and interactive techniques,", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 255, + 162, + 268 + ], + "spans": [ + { + "bbox": [ + 127, + 255, + 162, + 268 + ], + "score": 1.0, + "content": "1997. 4", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "[28] Michael Garland and Paul S Heckbert. Surface simplification using quadric error metrics. In", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 285, + 507, + 299 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 507, + 299 + ], + "score": 1.0, + "content": "Proceedings of the 24th annual conference on Computer graphics and interactive techniques,", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 296, + 229, + 309 + ], + "spans": [ + { + "bbox": [ + 126, + 296, + 229, + 309 + ], + "score": 1.0, + "content": "pages 209–216, 1997. 9", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 107, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "[29] Kyle Genova, Forrester Cole, Daniel Vlasic, Aaron Sarna, William T Freeman, and Thomas", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 127, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "Funkhouser. Learning shape templates with structured implicit functions. In Proceedings of the", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 337, + 472, + 351 + ], + "spans": [ + { + "bbox": [ + 127, + 337, + 472, + 351 + ], + "score": 1.0, + "content": "IEEE/CVF International Conference on Computer Vision, pages 7154–7164, 2019. 3", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 354, + 507, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 354, + 507, + 371 + ], + "score": 1.0, + "content": "[30] Kyle Genova, Forrester Cole, Avneesh Sud, Aaron Sarna, and Thomas Funkhouser. Local deep", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 127, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "implicit functions for 3d shape. In Proceedings of the IEEE/CVF Conference on Computer", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 378, + 367, + 392 + ], + "spans": [ + { + "bbox": [ + 127, + 378, + 367, + 392 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pages 4857–4866, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "[31] Amos Gropp, Lior Yariv, Niv Haim, Matan Atzmon, and Y. Lipman. Implicit geometric", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 407, + 363, + 422 + ], + "spans": [ + { + "bbox": [ + 127, + 407, + 363, + 422 + ], + "score": 1.0, + "content": "regularization for learning shapes. In ICML, 2020. 2, 3, 4", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "[32] Kunal Gupta and Manmohan Chandraker. Neural mesh flow: 3d manifold mesh generationvia", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 439, + 346, + 451 + ], + "spans": [ + { + "bbox": [ + 127, + 439, + 346, + 451 + ], + "score": 1.0, + "content": "diffeomorphic flows. ArXiv, abs/2007.10973, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "[33] Zekun Hao, Hadar Averbuch-Elor, Noah Snavely, and Serge J. Belongie. Dualsdf: Semantic", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 468, + 451, + 482 + ], + "spans": [ + { + "bbox": [ + 127, + 468, + 451, + 482 + ], + "score": 1.0, + "content": "shape manipulation using a two-level representation. pages 7628–7638, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "[34] Jingwei Huang, C. Jiang, Baiqiang Leng, Bin Wang, and L. Guibas. Meshode: A robust and", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 498, + 432, + 510 + ], + "spans": [ + { + "bbox": [ + 127, + 498, + 432, + 510 + ], + "score": 1.0, + "content": "scalable framework for mesh deformation. ArXiv, abs/2005.11617, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "[35] José A. Iglesias, M. Rumpf, and O. Scherzer. Shape-aware matching of implicit surfaces based", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 527, + 507, + 542 + ], + "spans": [ + { + "bbox": [ + 126, + 527, + 507, + 542 + ], + "score": 1.0, + "content": "on thin shell energies. Foundations of Computational Mathematics (New York, N.y.), 18:891 –", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 540, + 194, + 551 + ], + "spans": [ + { + "bbox": [ + 127, + 540, + 194, + 551 + ], + "score": 1.0, + "content": "927, 2018. 3, 8", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "[36] A. Jacobson, I. Baran, Jovan Popovic, and O. Sorkine-Hornung. Bounded biharmonic weights", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 569, + 444, + 581 + ], + "spans": [ + { + "bbox": [ + 127, + 569, + 444, + 581 + ], + "score": 1.0, + "content": "for real-time deformation. Communications of the ACM, 57:99 – 106, 2014. 2", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "[37] Timothy Jeruzalski, Boyang Deng, Mohammad Norouzi, J. P. Lewis, G. Hinton, and Andrea", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 599, + 448, + 613 + ], + "spans": [ + { + "bbox": [ + 127, + 599, + 448, + 613 + ], + "score": 1.0, + "content": "Tagliasacchi. Nasa: Neural articulated shape approximation. In ECCV, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "score": 1.0, + "content": "[38] Chiyu Max Jiang, Jingwei Huang, Andrea Tagliasacchi, and Leonidas J. Guibas. Shapeflow:", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 630, + 405, + 642 + ], + "spans": [ + { + "bbox": [ + 127, + 630, + 405, + 642 + ], + "score": 1.0, + "content": "Learnable deformation flows among 3d shapes. In NeurIPS, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 649, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 107, + 649, + 506, + 660 + ], + "score": 1.0, + "content": "[39] M. W. Jones, J. A. Bærentzen, and M. Srámek. 3d distance fields: a survey of techniques and", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 659, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 126, + 659, + 507, + 672 + ], + "score": 1.0, + "content": "applications. IEEE Transactions on Visualization and Computer Graphics, 12:581–599, 2006.", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 669, + 158, + 684 + ], + "spans": [ + { + "bbox": [ + 126, + 669, + 158, + 684 + ], + "score": 1.0, + "content": "1, 2, 3", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 688, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 507, + 702 + ], + "score": 1.0, + "content": "[40] Venkat Krishnamurthy and M. Levoy. Fitting smooth surfaces to dense polygon meshes.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 698, + 507, + 716 + ], + "spans": [ + { + "bbox": [ + 125, + 698, + 507, + 716 + ], + "score": 1.0, + "content": "Proceedings of the 23rd annual conference on Computer graphics and interactive techniques,", + "type": "text", + "cross_page": true + } + ], + "index": 44 + }, + { + "bbox": [ + 127, + 711, + 162, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 162, + 723 + ], + "score": 1.0, + "content": "1996. 4", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + } + ], + "index": 22, + "bbox_fs": [ + 105, + 70, + 508, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 47, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 509, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 509, + 88 + ], + "score": 1.0, + "content": "[22] B. Curless and M. Levoy. A volumetric method for building complex models from range images.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 82, + 507, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 82, + 507, + 98 + ], + "score": 1.0, + "content": "Proceedings of the 23rd annual conference on Computer graphics and interactive techniques,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 127, + 94, + 163, + 107 + ], + "spans": [ + { + "bbox": [ + 127, + 94, + 163, + 107 + ], + "score": 1.0, + "content": "1996. 1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "[23] T. Davies, Derek Nowrouzezahrai, and A. Jacobson. On the effectiveness of weight-encoded", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 125, + 268, + 137 + ], + "spans": [ + { + "bbox": [ + 127, + 125, + 268, + 137 + ], + "score": 1.0, + "content": "neural implicit 3d shapes. 2020. 1", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "[24] A. de Boer, Martijn van der Schoot, and Hester Bijl. Mesh deformation based on radial basis", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 154, + 410, + 167 + ], + "spans": [ + { + "bbox": [ + 126, + 154, + 410, + 167 + ], + "score": 1.0, + "content": "function interpolation. Computers & Structures, 85:784–795, 2007. 2", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "score": 1.0, + "content": "[25] Yu Deng, J. Yang, and Xin Tong. Deformed implicit field: Modeling 3d shapes with learned", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 184, + 266, + 197 + ], + "spans": [ + { + "bbox": [ + 126, + 184, + 266, + 197 + ], + "score": 1.0, + "content": "dense correspondence. 2021. 3, 6", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "[26] Mathieu Desbrun, M. Meyer, P. Schröder, and A. Barr. Implicit fairing of irregular meshes", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 214, + 385, + 228 + ], + "spans": [ + { + "bbox": [ + 126, + 214, + 385, + 228 + ], + "score": 1.0, + "content": "using diffusion and curvature flow. In SIGGRAPH ’99, 1999. 2", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 233, + 507, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 507, + 247 + ], + "score": 1.0, + "content": "[27] Michael Garland and Paul S. Heckbert. Surface simplification using quadric error metrics.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 125, + 242, + 507, + 260 + ], + "spans": [ + { + "bbox": [ + 125, + 242, + 507, + 260 + ], + "score": 1.0, + "content": "Proceedings of the 24th annual conference on Computer graphics and interactive techniques,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 255, + 162, + 268 + ], + "spans": [ + { + "bbox": [ + 127, + 255, + 162, + 268 + ], + "score": 1.0, + "content": "1997. 4", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "[28] Michael Garland and Paul S Heckbert. Surface simplification using quadric error metrics. In", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 127, + 285, + 507, + 299 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 507, + 299 + ], + "score": 1.0, + "content": "Proceedings of the 24th annual conference on Computer graphics and interactive techniques,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 296, + 229, + 309 + ], + "spans": [ + { + "bbox": [ + 126, + 296, + 229, + 309 + ], + "score": 1.0, + "content": "pages 209–216, 1997. 9", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 107, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "[29] Kyle Genova, Forrester Cole, Daniel Vlasic, Aaron Sarna, William T Freeman, and Thomas", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 127, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "Funkhouser. Learning shape templates with structured implicit functions. In Proceedings of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 337, + 472, + 351 + ], + "spans": [ + { + "bbox": [ + 127, + 337, + 472, + 351 + ], + "score": 1.0, + "content": "IEEE/CVF International Conference on Computer Vision, pages 7154–7164, 2019. 3", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 354, + 507, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 354, + 507, + 371 + ], + "score": 1.0, + "content": "[30] Kyle Genova, Forrester Cole, Avneesh Sud, Aaron Sarna, and Thomas Funkhouser. Local deep", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 127, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "implicit functions for 3d shape. In Proceedings of the IEEE/CVF Conference on Computer", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 378, + 367, + 392 + ], + "spans": [ + { + "bbox": [ + 127, + 378, + 367, + 392 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pages 4857–4866, 2020. 3", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "[31] Amos Gropp, Lior Yariv, Niv Haim, Matan Atzmon, and Y. Lipman. Implicit geometric", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 407, + 363, + 422 + ], + "spans": [ + { + "bbox": [ + 127, + 407, + 363, + 422 + ], + "score": 1.0, + "content": "regularization for learning shapes. In ICML, 2020. 2, 3, 4", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "[32] Kunal Gupta and Manmohan Chandraker. Neural mesh flow: 3d manifold mesh generationvia", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 439, + 346, + 451 + ], + "spans": [ + { + "bbox": [ + 127, + 439, + 346, + 451 + ], + "score": 1.0, + "content": "diffeomorphic flows. ArXiv, abs/2007.10973, 2020. 3", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "[33] Zekun Hao, Hadar Averbuch-Elor, Noah Snavely, and Serge J. Belongie. Dualsdf: Semantic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 468, + 451, + 482 + ], + "spans": [ + { + "bbox": [ + 127, + 468, + 451, + 482 + ], + "score": 1.0, + "content": "shape manipulation using a two-level representation. pages 7628–7638, 2020. 3", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "[34] Jingwei Huang, C. Jiang, Baiqiang Leng, Bin Wang, and L. Guibas. Meshode: A robust and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 127, + 498, + 432, + 510 + ], + "spans": [ + { + "bbox": [ + 127, + 498, + 432, + 510 + ], + "score": 1.0, + "content": "scalable framework for mesh deformation. ArXiv, abs/2005.11617, 2020. 3", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 107, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "[35] José A. Iglesias, M. Rumpf, and O. Scherzer. Shape-aware matching of implicit surfaces based", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 527, + 507, + 542 + ], + "spans": [ + { + "bbox": [ + 126, + 527, + 507, + 542 + ], + "score": 1.0, + "content": "on thin shell energies. Foundations of Computational Mathematics (New York, N.y.), 18:891 –", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 540, + 194, + 551 + ], + "spans": [ + { + "bbox": [ + 127, + 540, + 194, + 551 + ], + "score": 1.0, + "content": "927, 2018. 3, 8", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "[36] A. Jacobson, I. Baran, Jovan Popovic, and O. Sorkine-Hornung. Bounded biharmonic weights", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 569, + 444, + 581 + ], + "spans": [ + { + "bbox": [ + 127, + 569, + 444, + 581 + ], + "score": 1.0, + "content": "for real-time deformation. Communications of the ACM, 57:99 – 106, 2014. 2", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "[37] Timothy Jeruzalski, Boyang Deng, Mohammad Norouzi, J. P. Lewis, G. Hinton, and Andrea", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 599, + 448, + 613 + ], + "spans": [ + { + "bbox": [ + 127, + 599, + 448, + 613 + ], + "score": 1.0, + "content": "Tagliasacchi. Nasa: Neural articulated shape approximation. In ECCV, 2020. 3", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 507, + 631 + ], + "score": 1.0, + "content": "[38] Chiyu Max Jiang, Jingwei Huang, Andrea Tagliasacchi, and Leonidas J. Guibas. Shapeflow:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 630, + 405, + 642 + ], + "spans": [ + { + "bbox": [ + 127, + 630, + 405, + 642 + ], + "score": 1.0, + "content": "Learnable deformation flows among 3d shapes. In NeurIPS, 2020. 3", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 107, + 649, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 107, + 649, + 506, + 660 + ], + "score": 1.0, + "content": "[39] M. W. Jones, J. A. Bærentzen, and M. Srámek. 3d distance fields: a survey of techniques and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 659, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 126, + 659, + 507, + 672 + ], + "score": 1.0, + "content": "applications. IEEE Transactions on Visualization and Computer Graphics, 12:581–599, 2006.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 126, + 669, + 158, + 684 + ], + "spans": [ + { + "bbox": [ + 126, + 669, + 158, + 684 + ], + "score": 1.0, + "content": "1, 2, 3", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 507, + 702 + ], + "score": 1.0, + "content": "[40] Venkat Krishnamurthy and M. Levoy. Fitting smooth surfaces to dense polygon meshes.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 125, + 698, + 507, + 716 + ], + "spans": [ + { + "bbox": [ + 125, + 698, + 507, + 716 + ], + "score": 1.0, + "content": "Proceedings of the 23rd annual conference on Computer graphics and interactive techniques,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 127, + 711, + 162, + 723 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 162, + 723 + ], + "score": 1.0, + "content": "1996. 4", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 47, + 507, + 727 + ], + "lines": [], + "index": 22.5, + "bbox_fs": [ + 104, + 71, + 509, + 723 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 506, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 507, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 507, + 85 + ], + "score": 1.0, + "content": "[41] Zohar Levi and C. Gotsman. Smooth rotation enhanced as-rigid-as-possible mesh animation.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 83, + 486, + 96 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 486, + 96 + ], + "score": 1.0, + "content": "IEEE Transactions on Visualization and Computer Graphics, 21:264–277, 2015. 2, 9, 10", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "[42] Y. Lipman, O. Sorkine-Hornung, D. Cohen-Or, D. Levin, Christian Rössl, and H. Seidel.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "Differential coordinates for interactive mesh editing. Proceedings Shape Modeling Applications,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 124, + 255, + 138 + ], + "spans": [ + { + "bbox": [ + 127, + 124, + 255, + 138 + ], + "score": 1.0, + "content": "2004., pages 181–190, 2004. 3", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 144, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "[43] Steven Liu, Xiuming Zhang, Zhoutong Zhang, Richard Zhang, Jun-Yan Zhu, and Bryan C.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 155, + 448, + 168 + ], + "spans": [ + { + "bbox": [ + 127, + 155, + 448, + 168 + ], + "score": 1.0, + "content": "Russell. Editing conditional radiance fields. ArXiv, abs/2105.06466, 2021. 3, 6", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "[44] W. Lorensen and H. Cline. Marching cubes: A high resolution 3d surface construction algorithm.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 185, + 253, + 198 + ], + "spans": [ + { + "bbox": [ + 127, + 185, + 253, + 198 + ], + "score": 1.0, + "content": "In SIGGRAPH ’87, 1987. 4, 8", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "score": 1.0, + "content": "[45] Lars M. Mescheder, Michael Oechsle, M. Niemeyer, S. Nowozin, and Andreas Geiger. Occu-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 216, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 126, + 216, + 506, + 230 + ], + "score": 1.0, + "content": "pancy networks: Learning 3d reconstruction in function space. 2019 IEEE/CVF Conference on", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 227, + 453, + 242 + ], + "spans": [ + { + "bbox": [ + 127, + 227, + 453, + 242 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition (CVPR), pages 4455–4465, 2019. 1, 8", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "[46] Mateusz Michalkiewicz, Jhony K Pontes, Dominic Jack, Mahsa Baktashmotlagh, and Anders", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 127, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "Eriksson. Deep level sets: Implicit surface representations for 3d shape inference. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 270, + 240, + 281 + ], + "spans": [ + { + "bbox": [ + 127, + 270, + 240, + 281 + ], + "score": 1.0, + "content": "arXiv:1901.06802, 2019. 1", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 105, + 288, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "[47] Ben Mildenhall, Pratul P. Srinivasan, Matthew Tancik, J. T. Barron, R. Ramamoorthi, and Ren", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 127, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "Ng. Nerf: Representing scenes as neural radiance fields for view synthesis. In ECCV, 2020. 1, 6", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 105, + 319, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 318, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 334 + ], + "score": 1.0, + "content": "[48] Tim Milliron, R. Jensen, Ronen Barzel, and A. Finkelstein. A framework for geometric warps", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 128, + 331, + 365, + 342 + ], + "spans": [ + { + "bbox": [ + 128, + 331, + 365, + 342 + ], + "score": 1.0, + "content": "and deformations. ACM Trans. Graph., 21:20–51, 2002. 2", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "[49] I. Mitchell. The flexible, extensible and efficient toolbox of level set methods. Journal of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 361, + 303, + 373 + ], + "spans": [ + { + "bbox": [ + 126, + 361, + 303, + 373 + ], + "score": 1.0, + "content": "Scientific Computing, 35:300–329, 2008. 2", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "[50] Henry P. Moreton and C. Séquin. Functional optimization for fair surface design. Proceedings", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 392, + 486, + 404 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 486, + 404 + ], + "score": 1.0, + "content": "of the 19th annual conference on Computer graphics and interactive techniques, 1992. 2", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 504, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "[51] K. Museth, D. Breen, R. Whitaker, and A. Barr. Level set surface editing operators. Proceedings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 422, + 495, + 435 + ], + "spans": [ + { + "bbox": [ + 127, + 422, + 495, + 435 + ], + "score": 1.0, + "content": "of the 29th annual conference on Computer graphics and interactive techniques, 2002. 1, 3", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 502, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "[52] Martin E Newell. The utilization of procedure models in digital image synthesis. Technical", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 453, + 450, + 465 + ], + "spans": [ + { + "bbox": [ + 127, + 453, + 450, + 465 + ], + "score": 1.0, + "content": "report, UTAH UNIV SALT LAKE CITY SCHOOL OF COMPUTING, 1975. 1", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "score": 1.0, + "content": "[53] M. Niemeyer, Lars M. Mescheder, Michael Oechsle, and Andreas Geiger. Occupancy flow: 4d", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 126, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 126, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "reconstruction by learning particle dynamics. 2019 IEEE/CVF International Conference on", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 127, + 494, + 342, + 507 + ], + "spans": [ + { + "bbox": [ + 127, + 494, + 342, + 507 + ], + "score": 1.0, + "content": "Computer Vision (ICCV), pages 5378–5388, 2019. 3", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "[54] S. Osher and Ronald Fedkiw. Level set methods and dynamic implicit surfaces. In Applied", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 524, + 287, + 537 + ], + "spans": [ + { + "bbox": [ + 127, + 524, + 287, + 537 + ], + "score": 1.0, + "content": "mathematical sciences, 2003. 1, 2, 3, 7", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 504, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "[55] S. Osher and N. Paragios. Geometric level set methods in imaging, vision, and graphics. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 556, + 243, + 567 + ], + "spans": [ + { + "bbox": [ + 127, + 556, + 243, + 567 + ], + "score": 1.0, + "content": "Springer New York, 2003. 3", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 506, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 508, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 508, + 588 + ], + "score": 1.0, + "content": "[56] Jeong Joon Park, Peter R. Florence, J. Straub, Richard A. Newcombe, and S. Lovegrove.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 127, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Deepsdf: Learning continuous signed distance functions for shape representation. 2019", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 596, + 507, + 610 + ], + "spans": [ + { + "bbox": [ + 126, + 596, + 507, + 610 + ], + "score": 1.0, + "content": "IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 165–174,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 607, + 183, + 621 + ], + "spans": [ + { + "bbox": [ + 127, + 607, + 183, + 621 + ], + "score": 1.0, + "content": "2019. 1, 4, 8", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 505, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "[57] Keunhong Park, Utkarsh Sinha, Jonathan T. Barron, Sofien Bouaziz, Dan B Goldman, Steven M.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 127, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "Seitz, and Ricardo Martin-Brualla. Deformable neural radiance fields. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 127, + 649, + 251, + 662 + ], + "spans": [ + { + "bbox": [ + 127, + 649, + 251, + 662 + ], + "score": 1.0, + "content": "arXiv:2011.12948, 2020. 3, 6", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "[58] Sida Peng, Junting Dong, Qianqian Wang, Shangzhan Zhang, Qing Shuai, Hujun Bao,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 127, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "and Xiaowei Zhou. Animatable neural radiance fields for human body modeling. ArXiv,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 128, + 691, + 231, + 702 + ], + "spans": [ + { + "bbox": [ + 128, + 691, + 231, + 702 + ], + "score": 1.0, + "content": "abs/2105.02872, 2021. 3", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 104, + 711, + 493, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 494, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 494, + 724 + ], + "score": 1.0, + "content": "[59] H. Piaggio. Differential geometry of curves and surfaces. Nature, 169:560–560, 1952. 3, 7", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 506, + 96 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 507, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 507, + 85 + ], + "score": 1.0, + "content": "[41] Zohar Levi and C. Gotsman. Smooth rotation enhanced as-rigid-as-possible mesh animation.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 83, + 486, + 96 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 486, + 96 + ], + "score": 1.0, + "content": "IEEE Transactions on Visualization and Computer Graphics, 21:264–277, 2015. 2, 9, 10", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 72, + 507, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "[42] Y. Lipman, O. Sorkine-Hornung, D. Cohen-Or, D. Levin, Christian Rössl, and H. Seidel.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "Differential coordinates for interactive mesh editing. Proceedings Shape Modeling Applications,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 124, + 255, + 138 + ], + "spans": [ + { + "bbox": [ + 127, + 124, + 255, + 138 + ], + "score": 1.0, + "content": "2004., pages 181–190, 2004. 3", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 103, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 144, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "[43] Steven Liu, Xiuming Zhang, Zhoutong Zhang, Richard Zhang, Jun-Yan Zhu, and Bryan C.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 155, + 448, + 168 + ], + "spans": [ + { + "bbox": [ + 127, + 155, + 448, + 168 + ], + "score": 1.0, + "content": "Russell. Editing conditional radiance fields. ArXiv, abs/2105.06466, 2021. 3, 6", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 145, + 505, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "[44] W. Lorensen and H. Cline. Marching cubes: A high resolution 3d surface construction algorithm.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 185, + 253, + 198 + ], + "spans": [ + { + "bbox": [ + 127, + 185, + 253, + 198 + ], + "score": 1.0, + "content": "In SIGGRAPH ’87, 1987. 4, 8", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 174, + 505, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 205, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "score": 1.0, + "content": "[45] Lars M. Mescheder, Michael Oechsle, M. Niemeyer, S. Nowozin, and Andreas Geiger. Occu-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 216, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 126, + 216, + 506, + 230 + ], + "score": 1.0, + "content": "pancy networks: Learning 3d reconstruction in function space. 2019 IEEE/CVF Conference on", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 227, + 453, + 242 + ], + "spans": [ + { + "bbox": [ + 127, + 227, + 453, + 242 + ], + "score": 1.0, + "content": "Computer Vision and Pattern Recognition (CVPR), pages 4455–4465, 2019. 1, 8", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 206, + 506, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "[46] Mateusz Michalkiewicz, Jhony K Pontes, Dominic Jack, Mahsa Baktashmotlagh, and Anders", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 127, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "Eriksson. Deep level sets: Implicit surface representations for 3d shape inference. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 270, + 240, + 281 + ], + "spans": [ + { + "bbox": [ + 127, + 270, + 240, + 281 + ], + "score": 1.0, + "content": "arXiv:1901.06802, 2019. 1", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 246, + 505, + 281 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 288, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "[47] Ben Mildenhall, Pratul P. Srinivasan, Matthew Tancik, J. T. Barron, R. Ramamoorthi, and Ren", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 127, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "Ng. Nerf: Representing scenes as neural radiance fields for view synthesis. In ECCV, 2020. 1, 6", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 318, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 334 + ], + "score": 1.0, + "content": "[48] Tim Milliron, R. Jensen, Ronen Barzel, and A. Finkelstein. A framework for geometric warps", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 128, + 331, + 365, + 342 + ], + "spans": [ + { + "bbox": [ + 128, + 331, + 365, + 342 + ], + "score": 1.0, + "content": "and deformations. ACM Trans. Graph., 21:20–51, 2002. 2", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 289, + 506, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 319, + 504, + 342 + ], + "lines": [], + "index": 17.5, + "bbox_fs": [ + 106, + 318, + 505, + 342 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "[49] I. Mitchell. The flexible, extensible and efficient toolbox of level set methods. Journal of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 361, + 303, + 373 + ], + "spans": [ + { + "bbox": [ + 126, + 361, + 303, + 373 + ], + "score": 1.0, + "content": "Scientific Computing, 35:300–329, 2008. 2", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 349, + 506, + 373 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "[50] Henry P. Moreton and C. Séquin. Functional optimization for fair surface design. Proceedings", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 392, + 486, + 404 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 486, + 404 + ], + "score": 1.0, + "content": "of the 19th annual conference on Computer graphics and interactive techniques, 1992. 2", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 380, + 505, + 404 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 504, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "[51] K. Museth, D. Breen, R. Whitaker, and A. Barr. Level set surface editing operators. Proceedings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 127, + 422, + 495, + 435 + ], + "spans": [ + { + "bbox": [ + 127, + 422, + 495, + 435 + ], + "score": 1.0, + "content": "of the 29th annual conference on Computer graphics and interactive techniques, 2002. 1, 3", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "[52] Martin E Newell. The utilization of procedure models in digital image synthesis. Technical", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 453, + 450, + 465 + ], + "spans": [ + { + "bbox": [ + 127, + 453, + 450, + 465 + ], + "score": 1.0, + "content": "report, UTAH UNIV SALT LAKE CITY SCHOOL OF COMPUTING, 1975. 1", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 410, + 505, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 502, + 465 + ], + "lines": [], + "index": 25.5, + "bbox_fs": [ + 106, + 442, + 505, + 465 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 486 + ], + "score": 1.0, + "content": "[53] M. Niemeyer, Lars M. Mescheder, Michael Oechsle, and Andreas Geiger. Occupancy flow: 4d", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 126, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 126, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "reconstruction by learning particle dynamics. 2019 IEEE/CVF International Conference on", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 127, + 494, + 342, + 507 + ], + "spans": [ + { + "bbox": [ + 127, + 494, + 342, + 507 + ], + "score": 1.0, + "content": "Computer Vision (ICCV), pages 5378–5388, 2019. 3", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 472, + 506, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "[54] S. Osher and Ronald Fedkiw. Level set methods and dynamic implicit surfaces. In Applied", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 524, + 287, + 537 + ], + "spans": [ + { + "bbox": [ + 127, + 524, + 287, + 537 + ], + "score": 1.0, + "content": "mathematical sciences, 2003. 1, 2, 3, 7", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 514, + 506, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 504, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "[55] S. Osher and N. Paragios. Geometric level set methods in imaging, vision, and graphics. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 556, + 243, + 567 + ], + "spans": [ + { + "bbox": [ + 127, + 556, + 243, + 567 + ], + "score": 1.0, + "content": "Springer New York, 2003. 3", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 543, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 506, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 508, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 508, + 588 + ], + "score": 1.0, + "content": "[56] Jeong Joon Park, Peter R. Florence, J. Straub, Richard A. Newcombe, and S. Lovegrove.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 127, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 127, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Deepsdf: Learning continuous signed distance functions for shape representation. 2019", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 596, + 507, + 610 + ], + "spans": [ + { + "bbox": [ + 126, + 596, + 507, + 610 + ], + "score": 1.0, + "content": "IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 165–174,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 127, + 607, + 183, + 621 + ], + "spans": [ + { + "bbox": [ + 127, + 607, + 183, + 621 + ], + "score": 1.0, + "content": "2019. 1, 4, 8", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 574, + 508, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 505, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "[57] Keunhong Park, Utkarsh Sinha, Jonathan T. Barron, Sofien Bouaziz, Dan B Goldman, Steven M.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 127, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "Seitz, and Ricardo Martin-Brualla. Deformable neural radiance fields. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 127, + 649, + 251, + 662 + ], + "spans": [ + { + "bbox": [ + 127, + 649, + 251, + 662 + ], + "score": 1.0, + "content": "arXiv:2011.12948, 2020. 3, 6", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 627, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "[58] Sida Peng, Junting Dong, Qianqian Wang, Shangzhan Zhang, Qing Shuai, Hujun Bao,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 127, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "and Xiaowei Zhou. Animatable neural radiance fields for human body modeling. ArXiv,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 128, + 691, + 231, + 702 + ], + "spans": [ + { + "bbox": [ + 128, + 691, + 231, + 702 + ], + "score": 1.0, + "content": "abs/2105.02872, 2021. 3", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 668, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 711, + 493, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 494, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 494, + 724 + ], + "score": 1.0, + "content": "[59] H. Piaggio. Differential geometry of curves and surfaces. Nature, 169:560–560, 1952. 3, 7", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 709, + 494, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 42, + 517, + 726 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "[60] Albert Pumarola, Enric Corona, Gerard Pons-Moll, and F. Moreno-Noguer. D-nerf: Neural", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 83, + 401, + 95 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 401, + 95 + ], + "score": 1.0, + "content": "radiance fields for dynamic scenes. ArXiv, abs/2011.13961, 2020. 3", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 506, + 115 + ], + "score": 1.0, + "content": "[61] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 124, + 410, + 138 + ], + "spans": [ + { + "bbox": [ + 127, + 124, + 410, + 138 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pages 5301–5310. PMLR, 2019. 2", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 142, + 507, + 157 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 507, + 157 + ], + "score": 1.0, + "content": "[62] Edoardo Remelli, Artem Lukoianov, Stephan R. Richter, Benoit Guillard, Timur M. Bagautdinov,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 154, + 497, + 168 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 497, + 168 + ], + "score": 1.0, + "content": "Pierre Baqué, and P. Fua. Meshsdf: Differentiable iso-surface extraction. NeurIPS, 2020. 3", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 507, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 507, + 187 + ], + "score": 1.0, + "content": "[63] A. Rosenfeld and J. Pfaltz. Sequential operations in digital picture processing. J. ACM, 13:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 128, + 185, + 203, + 196 + ], + "spans": [ + { + "bbox": [ + 128, + 185, + 203, + 196 + ], + "score": 1.0, + "content": "471–494, 1966. 1", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 203, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 507, + 217 + ], + "score": 1.0, + "content": "[64] S. Saito, Zeng Huang, R. Natsume, S. Morishima, Angjoo Kanazawa, and Hao Li. Pifu:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 128, + 214, + 504, + 226 + ], + "spans": [ + { + "bbox": [ + 128, + 214, + 504, + 226 + ], + "score": 1.0, + "content": "Pixel-aligned implicit function for high-resolution clothed human digitization. 2019 IEEE/CVF", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 128, + 226, + 456, + 238 + ], + "spans": [ + { + "bbox": [ + 128, + 226, + 456, + 238 + ], + "score": 1.0, + "content": "International Conference on Computer Vision (ICCV), pages 2304–2314, 2019. 1", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 507, + 259 + ], + "score": 1.0, + "content": "[65] T. Sederberg and S. Parry. Free-form deformation of solid geometric models. Proceedings of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 255, + 475, + 270 + ], + "spans": [ + { + "bbox": [ + 126, + 255, + 475, + 270 + ], + "score": 1.0, + "content": "the 13th annual conference on Computer graphics and interactive techniques, 1986. 2", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 273, + 507, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 507, + 288 + ], + "score": 1.0, + "content": "[66] V. Sitzmann, Julien N. P. Martel, Alexander W. Bergman, David B. Lindell, and G. Wetzstein.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 127, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "Implicit neural representations with periodic activation functions. ArXiv, abs/2006.09661, 2020.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 296, + 167, + 308 + ], + "spans": [ + { + "bbox": [ + 127, + 296, + 167, + 308 + ], + "score": 1.0, + "content": "2, 4, 6, 8", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "[67] Vincent Sitzmann, Eric Chan, Richard Tucker, Noah Snavely, and Gordon Wetzstein. Metasdf:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 326, + 430, + 340 + ], + "spans": [ + { + "bbox": [ + 126, + 326, + 430, + 340 + ], + "score": 1.0, + "content": "Meta-learning signed distance functions. ArXiv, abs/2006.09662, 2020. 10", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 344, + 507, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 507, + 359 + ], + "score": 1.0, + "content": "[68] Yang Song and S. Ermon. Generative modeling by estimating gradients of the data distribution.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 124, + 355, + 260, + 369 + ], + "spans": [ + { + "bbox": [ + 124, + 355, + 260, + 369 + ], + "score": 1.0, + "content": "ArXiv, abs/1907.05600, 2019. 5", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "[69] Olga Sorkine. Differential representations for mesh processing. In Computer Graphics Forum,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 386, + 366, + 400 + ], + "spans": [ + { + "bbox": [ + 127, + 386, + 366, + 400 + ], + "score": 1.0, + "content": "volume 25, pages 789–807. Wiley Online Library, 2006. 2", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "[70] O. Sorkine-Hornung and M. Alexa. As-rigid-as-possible surface modeling. In Symposium on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 415, + 285, + 429 + ], + "spans": [ + { + "bbox": [ + 126, + 415, + 285, + 429 + ], + "score": 1.0, + "content": "Geometry Processing, 2007. 2, 5, 7, 8", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 507, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 507, + 449 + ], + "score": 1.0, + "content": "[71] O. Sorkine-Hornung, D. Cohen-Or, Y. Lipman, M. Alexa, Christian Rössl, and H. Seidel.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 444, + 320, + 459 + ], + "spans": [ + { + "bbox": [ + 126, + 444, + 320, + 459 + ], + "score": 1.0, + "content": "Laplacian surface editing. In SGP ’04, 2004. 2", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 465, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 107, + 465, + 506, + 477 + ], + "score": 1.0, + "content": "[72] O. Stein, E. Grinspun, M. Wardetzky, and A. Jacobson. Natural boundary conditions for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 127, + 476, + 507, + 490 + ], + "spans": [ + { + "bbox": [ + 127, + 476, + 507, + 490 + ], + "score": 1.0, + "content": "smoothing in geometry processing. ACM Transactions on Graphics (TOG), 37:1 – 13, 2018. 2", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "[73] Towaki Takikawa, Joey Litalien, K. Yin, K. Kreis, Charles T. Loop, Derek Nowrouzezahrai,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 504, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 126, + 504, + 507, + 521 + ], + "score": 1.0, + "content": "A. Jacobson, M. McGuire, and S. Fidler. Neural geometric level of detail: Real-time rendering", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 517, + 357, + 529 + ], + "spans": [ + { + "bbox": [ + 128, + 517, + 357, + 529 + ], + "score": 1.0, + "content": "with implicit 3d shapes. ArXiv, abs/2101.10994, 2021. 1", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "[74] Matthew Tancik, Pratul P. Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 128, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 128, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "Utkarsh Singhal, R. Ramamoorthi, J. T. Barron, and Ren Ng. Fourier features let networks learn", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 128, + 558, + 489, + 570 + ], + "spans": [ + { + "bbox": [ + 128, + 558, + 489, + 570 + ], + "score": 1.0, + "content": "high frequency functions in low dimensional domains. ArXiv, abs/2006.10739, 2020. 2, 6", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "score": 1.0, + "content": "[75] Matthew Tancik, Ben Mildenhall, Terrance Wang, Divi Schmidt, Pratul P. Srinivasan, Jonathan T.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 128, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 128, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "Barron, and Ren Ng. Learned initializations for optimizing coordinate-based neural representa-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 128, + 599, + 234, + 611 + ], + "spans": [ + { + "bbox": [ + 128, + 599, + 234, + 611 + ], + "score": 1.0, + "content": "tions. In CVPR, 2021. 10", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "[76] G. Taubin. A signal processing approach to fair surface design. Proceedings of the 22nd annual", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 628, + 421, + 642 + ], + "spans": [ + { + "bbox": [ + 127, + 628, + 421, + 642 + ], + "score": 1.0, + "content": "conference on Computer graphics and interactive techniques, 1995. 2, 4", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 647, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 506, + 661 + ], + "score": 1.0, + "content": "[77] Demetri Terzopoulos, John C. Platt, A. Barr, and K. Fleischer. Elastically deformable models.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 659, + 243, + 671 + ], + "spans": [ + { + "bbox": [ + 127, + 659, + 243, + 671 + ], + "score": 1.0, + "content": "In SIGGRAPH ’87, 1987. 2", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 675, + 508, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 214, + 691 + ], + "score": 1.0, + "content": "[78] Jason Torchinsky.", + "type": "text" + }, + { + "bbox": [ + 240, + 675, + 508, + 692 + ], + "score": 1.0, + "content": "The first real object ever 3D scanned and ren-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 124, + 687, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 124, + 687, + 265, + 702 + ], + "score": 1.0, + "content": "dered was a VW beetle.", + "type": "text" + }, + { + "bbox": [ + 276, + 687, + 356, + 702 + ], + "score": 1.0, + "content": "Jalopnik, 2013.", + "type": "text" + }, + { + "bbox": [ + 376, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "https://jalopnik.com/", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 699, + 518, + 714 + ], + "spans": [ + { + "bbox": [ + 127, + 699, + 518, + 714 + ], + "score": 1.0, + "content": "the-first-real-object-ever-3d-scanned-and-rendered-was-494241353.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 42, + 517, + 726 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "[60] Albert Pumarola, Enric Corona, Gerard Pons-Moll, and F. Moreno-Noguer. D-nerf: Neural", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 127, + 83, + 401, + 95 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 401, + 95 + ], + "score": 1.0, + "content": "radiance fields for dynamic scenes. ArXiv, abs/2011.13961, 2020. 3", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 103, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 506, + 115 + ], + "score": 1.0, + "content": "[61] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht,", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 124, + 410, + 138 + ], + "spans": [ + { + "bbox": [ + 127, + 124, + 410, + 138 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pages 5301–5310. PMLR, 2019. 2", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 142, + 507, + 157 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 507, + 157 + ], + "score": 1.0, + "content": "[62] Edoardo Remelli, Artem Lukoianov, Stephan R. Richter, Benoit Guillard, Timur M. Bagautdinov,", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 154, + 497, + 168 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 497, + 168 + ], + "score": 1.0, + "content": "Pierre Baqué, and P. Fua. Meshsdf: Differentiable iso-surface extraction. NeurIPS, 2020. 3", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 173, + 507, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 507, + 187 + ], + "score": 1.0, + "content": "[63] A. Rosenfeld and J. Pfaltz. Sequential operations in digital picture processing. J. ACM, 13:", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 185, + 203, + 196 + ], + "spans": [ + { + "bbox": [ + 128, + 185, + 203, + 196 + ], + "score": 1.0, + "content": "471–494, 1966. 1", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 203, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 507, + 217 + ], + "score": 1.0, + "content": "[64] S. Saito, Zeng Huang, R. Natsume, S. Morishima, Angjoo Kanazawa, and Hao Li. Pifu:", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 214, + 504, + 226 + ], + "spans": [ + { + "bbox": [ + 128, + 214, + 504, + 226 + ], + "score": 1.0, + "content": "Pixel-aligned implicit function for high-resolution clothed human digitization. 2019 IEEE/CVF", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 226, + 456, + 238 + ], + "spans": [ + { + "bbox": [ + 128, + 226, + 456, + 238 + ], + "score": 1.0, + "content": "International Conference on Computer Vision (ICCV), pages 2304–2314, 2019. 1", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 243, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 507, + 259 + ], + "score": 1.0, + "content": "[65] T. Sederberg and S. Parry. Free-form deformation of solid geometric models. Proceedings of", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 255, + 475, + 270 + ], + "spans": [ + { + "bbox": [ + 126, + 255, + 475, + 270 + ], + "score": 1.0, + "content": "the 13th annual conference on Computer graphics and interactive techniques, 1986. 2", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 273, + 507, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 507, + 288 + ], + "score": 1.0, + "content": "[66] V. Sitzmann, Julien N. P. Martel, Alexander W. Bergman, David B. Lindell, and G. Wetzstein.", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "Implicit neural representations with periodic activation functions. ArXiv, abs/2006.09661, 2020.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 296, + 167, + 308 + ], + "spans": [ + { + "bbox": [ + 127, + 296, + 167, + 308 + ], + "score": 1.0, + "content": "2, 4, 6, 8", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "[67] Vincent Sitzmann, Eric Chan, Richard Tucker, Noah Snavely, and Gordon Wetzstein. Metasdf:", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 326, + 430, + 340 + ], + "spans": [ + { + "bbox": [ + 126, + 326, + 430, + 340 + ], + "score": 1.0, + "content": "Meta-learning signed distance functions. ArXiv, abs/2006.09662, 2020. 10", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 344, + 507, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 507, + 359 + ], + "score": 1.0, + "content": "[68] Yang Song and S. Ermon. Generative modeling by estimating gradients of the data distribution.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 355, + 260, + 369 + ], + "spans": [ + { + "bbox": [ + 124, + 355, + 260, + 369 + ], + "score": 1.0, + "content": "ArXiv, abs/1907.05600, 2019. 5", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "[69] Olga Sorkine. Differential representations for mesh processing. In Computer Graphics Forum,", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 386, + 366, + 400 + ], + "spans": [ + { + "bbox": [ + 127, + 386, + 366, + 400 + ], + "score": 1.0, + "content": "volume 25, pages 789–807. Wiley Online Library, 2006. 2", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "[70] O. Sorkine-Hornung and M. Alexa. As-rigid-as-possible surface modeling. In Symposium on", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 415, + 285, + 429 + ], + "spans": [ + { + "bbox": [ + 126, + 415, + 285, + 429 + ], + "score": 1.0, + "content": "Geometry Processing, 2007. 2, 5, 7, 8", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 434, + 507, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 507, + 449 + ], + "score": 1.0, + "content": "[71] O. Sorkine-Hornung, D. Cohen-Or, Y. Lipman, M. Alexa, Christian Rössl, and H. Seidel.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 444, + 320, + 459 + ], + "spans": [ + { + "bbox": [ + 126, + 444, + 320, + 459 + ], + "score": 1.0, + "content": "Laplacian surface editing. In SGP ’04, 2004. 2", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 465, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 107, + 465, + 506, + 477 + ], + "score": 1.0, + "content": "[72] O. Stein, E. Grinspun, M. Wardetzky, and A. Jacobson. Natural boundary conditions for", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 476, + 507, + 490 + ], + "spans": [ + { + "bbox": [ + 127, + 476, + 507, + 490 + ], + "score": 1.0, + "content": "smoothing in geometry processing. ACM Transactions on Graphics (TOG), 37:1 – 13, 2018. 2", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "[73] Towaki Takikawa, Joey Litalien, K. Yin, K. Kreis, Charles T. Loop, Derek Nowrouzezahrai,", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 504, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 126, + 504, + 507, + 521 + ], + "score": 1.0, + "content": "A. Jacobson, M. McGuire, and S. Fidler. Neural geometric level of detail: Real-time rendering", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 517, + 357, + 529 + ], + "spans": [ + { + "bbox": [ + 128, + 517, + 357, + 529 + ], + "score": 1.0, + "content": "with implicit 3d shapes. ArXiv, abs/2101.10994, 2021. 1", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "[74] Matthew Tancik, Pratul P. Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan,", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 128, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "Utkarsh Singhal, R. Ramamoorthi, J. T. Barron, and Ren Ng. Fourier features let networks learn", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 128, + 558, + 489, + 570 + ], + "spans": [ + { + "bbox": [ + 128, + 558, + 489, + 570 + ], + "score": 1.0, + "content": "high frequency functions in low dimensional domains. ArXiv, abs/2006.10739, 2020. 2, 6", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "score": 1.0, + "content": "[75] Matthew Tancik, Ben Mildenhall, Terrance Wang, Divi Schmidt, Pratul P. Srinivasan, Jonathan T.", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 128, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "Barron, and Ren Ng. Learned initializations for optimizing coordinate-based neural representa-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 128, + 599, + 234, + 611 + ], + "spans": [ + { + "bbox": [ + 128, + 599, + 234, + 611 + ], + "score": 1.0, + "content": "tions. In CVPR, 2021. 10", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "[76] G. Taubin. A signal processing approach to fair surface design. Proceedings of the 22nd annual", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 127, + 628, + 421, + 642 + ], + "spans": [ + { + "bbox": [ + 127, + 628, + 421, + 642 + ], + "score": 1.0, + "content": "conference on Computer graphics and interactive techniques, 1995. 2, 4", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 647, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 506, + 661 + ], + "score": 1.0, + "content": "[77] Demetri Terzopoulos, John C. Platt, A. Barr, and K. Fleischer. Elastically deformable models.", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 659, + 243, + 671 + ], + "spans": [ + { + "bbox": [ + 127, + 659, + 243, + 671 + ], + "score": 1.0, + "content": "In SIGGRAPH ’87, 1987. 2", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 675, + 508, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 214, + 691 + ], + "score": 1.0, + "content": "[78] Jason Torchinsky.", + "type": "text" + }, + { + "bbox": [ + 240, + 675, + 508, + 692 + ], + "score": 1.0, + "content": "The first real object ever 3D scanned and ren-", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 687, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 124, + 687, + 265, + 702 + ], + "score": 1.0, + "content": "dered was a VW beetle.", + "type": "text" + }, + { + "bbox": [ + 276, + 687, + 356, + 702 + ], + "score": 1.0, + "content": "Jalopnik, 2013.", + "type": "text" + }, + { + "bbox": [ + 376, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "https://jalopnik.com/", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 127, + 699, + 518, + 714 + ], + "spans": [ + { + "bbox": [ + 127, + 699, + 518, + 714 + ], + "score": 1.0, + "content": "the-first-real-object-ever-3d-scanned-and-rendered-was-494241353.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "score": 1.0, + "content": "[79] B. Vallet and B. Lévy. Spectral geometry processing with manifold harmonics. Computer", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 84, + 248, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 84, + 248, + 97 + ], + "score": 1.0, + "content": "Graphics Forum, 27, 2008. 2", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "score": 1.0, + "content": "[80] Weiyue Wang, D. Ceylan, R. Mech, and U. Neumann. 3dn: 3d deformation network. 2019", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 113, + 507, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 507, + 127 + ], + "score": 1.0, + "content": "IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 1038–1046,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 124, + 162, + 136 + ], + "spans": [ + { + "bbox": [ + 126, + 124, + 162, + 136 + ], + "score": 1.0, + "content": "2019. 3", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "score": 1.0, + "content": "[81] Yifan Wang, Noam Aigerman, Vladimir G. Kim, S. Chaudhuri, and O. Sorkine-Hornung.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "Neural cages for detail-preserving 3d deformations. 2020 IEEE/CVF Conference on Computer", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 164, + 381, + 178 + ], + "spans": [ + { + "bbox": [ + 127, + 164, + 381, + 178 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), pages 72–80, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "[82] William Welch and A. Witkin. Variational surface modeling. Proceedings of the 19th annual", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 195, + 411, + 209 + ], + "spans": [ + { + "bbox": [ + 127, + 195, + 411, + 209 + ], + "score": 1.0, + "content": "conference on Computer graphics and interactive techniques, 1992. 2", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "[83] Zhan Xu, Yang Zhou, E. Kalogerakis, Chris Landreth, and Karan Singh. Rignet: Neural rigging", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 225, + 364, + 238 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 364, + 238 + ], + "score": 1.0, + "content": "for articulated characters. ArXiv, abs/2005.00559, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "[84] Lior Yariv, Yoni Kasten, Dror Moran, Meirav Galun, Matan Atzmon, Basri Ronen, and Yaron", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 254, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 126, + 254, + 507, + 268 + ], + "score": 1.0, + "content": "Lipman. Multiview neural surface reconstruction by disentangling geometry and appearance.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 126, + 266, + 391, + 279 + ], + "spans": [ + { + "bbox": [ + 126, + 266, + 391, + 279 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 33, 2020. 1", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 284, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 299 + ], + "score": 1.0, + "content": "[85] Zerong Zheng, Tao Yu, Qionghai Dai, and Y. Liu. Deep implicit templates for 3d shape", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 295, + 322, + 308 + ], + "spans": [ + { + "bbox": [ + 127, + 295, + 322, + 308 + ], + "score": 1.0, + "content": "representation. ArXiv, abs/2011.14565, 2020. 3", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "[86] Qian-Yi Zhou, Jaesik Park, and Vladlen Koltun. Open3D: A modern library for 3D data", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 326, + 289, + 338 + ], + "spans": [ + { + "bbox": [ + 127, + 326, + 289, + 338 + ], + "score": 1.0, + "content": "processing. arXiv:1801.09847, 2018. 8", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + } + ], + "index": 22, + "bbox_fs": [ + 105, + 73, + 518, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 71, + 507, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "score": 1.0, + "content": "[79] B. Vallet and B. Lévy. Spectral geometry processing with manifold harmonics. Computer", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 84, + 248, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 84, + 248, + 97 + ], + "score": 1.0, + "content": "Graphics Forum, 27, 2008. 2", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 116 + ], + "score": 1.0, + "content": "[80] Weiyue Wang, D. Ceylan, R. Mech, and U. Neumann. 3dn: 3d deformation network. 2019", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 113, + 507, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 507, + 127 + ], + "score": 1.0, + "content": "IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 1038–1046,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 124, + 162, + 136 + ], + "spans": [ + { + "bbox": [ + 126, + 124, + 162, + 136 + ], + "score": 1.0, + "content": "2019. 3", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "score": 1.0, + "content": "[81] Yifan Wang, Noam Aigerman, Vladimir G. Kim, S. Chaudhuri, and O. Sorkine-Hornung.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "Neural cages for detail-preserving 3d deformations. 2020 IEEE/CVF Conference on Computer", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 164, + 381, + 178 + ], + "spans": [ + { + "bbox": [ + 127, + 164, + 381, + 178 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition (CVPR), pages 72–80, 2020. 3", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "[82] William Welch and A. Witkin. Variational surface modeling. Proceedings of the 19th annual", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 195, + 411, + 209 + ], + "spans": [ + { + "bbox": [ + 127, + 195, + 411, + 209 + ], + "score": 1.0, + "content": "conference on Computer graphics and interactive techniques, 1992. 2", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "[83] Zhan Xu, Yang Zhou, E. Kalogerakis, Chris Landreth, and Karan Singh. Rignet: Neural rigging", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 225, + 364, + 238 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 364, + 238 + ], + "score": 1.0, + "content": "for articulated characters. ArXiv, abs/2005.00559, 2020. 3", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "[84] Lior Yariv, Yoni Kasten, Dror Moran, Meirav Galun, Matan Atzmon, Basri Ronen, and Yaron", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 254, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 126, + 254, + 507, + 268 + ], + "score": 1.0, + "content": "Lipman. Multiview neural surface reconstruction by disentangling geometry and appearance.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 126, + 266, + 391, + 279 + ], + "spans": [ + { + "bbox": [ + 126, + 266, + 391, + 279 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 33, 2020. 1", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 299 + ], + "score": 1.0, + "content": "[85] Zerong Zheng, Tao Yu, Qionghai Dai, and Y. Liu. Deep implicit templates for 3d shape", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 295, + 322, + 308 + ], + "spans": [ + { + "bbox": [ + 127, + 295, + 322, + 308 + ], + "score": 1.0, + "content": "representation. ArXiv, abs/2011.14565, 2020. 3", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "[86] Qian-Yi Zhou, Jaesik Park, and Vladlen Koltun. Open3D: A modern library for 3D data", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 326, + 289, + 338 + ], + "spans": [ + { + "bbox": [ + 127, + 326, + 289, + 338 + ], + "score": 1.0, + "content": "processing. arXiv:1801.09847, 2018. 8", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 9 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 104, + 71, + 507, + 339 + ], + "lines": [], + "index": 9, + "bbox_fs": [ + 105, + 72, + 507, + 338 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_model.json b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_model.json new file mode 100644 index 0000000000000000000000000000000000000000..57829b2d4b632c365a0a5741efd66ee1f6df65df --- /dev/null +++ b/parse/train/JG-SlCAx5_K/JG-SlCAx5_K_model.json @@ -0,0 +1,19431 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1228, + 1404, + 1228, + 1404, + 1533, + 298, + 1533 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 398, + 659, + 1304, + 659, + 1304, + 1084, + 398, + 1084 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1547, + 1404, + 1547, + 1404, + 1911, + 298, + 1911 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 433, + 272, + 1268, + 272, + 1268, + 327, + 433, + 327 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 1153, + 530, + 1153, + 530, + 1191, + 299, + 1191 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 322, + 1945, + 1286, + 1945, + 1286, + 1975, + 322, + 1975 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 1186, + 445, + 1374, + 445, + 1374, + 505, + 1186, + 505 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 298, + 2033, + 1070, + 2033, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 577, + 445, + 869, + 445, + 869, + 506, + 577, + 506 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 913, + 445, + 1147, + 445, + 1147, + 505, + 913, + 505 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 788, + 585, + 913, + 585, + 913, + 621, + 788, + 621 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 328, + 445, + 538, + 445, + 538, + 506, + 328, + 506 + ], + "score": 0.854 + }, + { + "category_id": 13, + "poly": [ + 566, + 1576, + 722, + 1576, + 722, + 1611, + 566, + 1611 + ], + "score": 0.92, + "latex": "\\bar { \\{ x \\vert f ( x ) = c \\} }" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 269.0, + 1270.0, + 269.0, + 1270.0, + 330.0, + 432.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1150.0, + 536.0, + 1150.0, + 536.0, + 1198.0, + 292.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1943.0, + 1288.0, + 1943.0, + 1288.0, + 1978.0, + 332.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 582.0, + 920.0, + 582.0, + 920.0, + 626.0, + 782.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1227.0, + 1404.0, + 1227.0, + 1404.0, + 1263.0, + 293.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1259.0, + 1405.0, + 1259.0, + 1405.0, + 1294.0, + 294.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1289.0, + 1406.0, + 1289.0, + 1406.0, + 1325.0, + 293.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1318.0, + 1406.0, + 1318.0, + 1406.0, + 1353.0, + 293.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1349.0, + 1406.0, + 1349.0, + 1406.0, + 1384.0, + 294.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1379.0, + 1408.0, + 1379.0, + 1408.0, + 1416.0, + 293.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1408.0, + 1406.0, + 1408.0, + 1406.0, + 1446.0, + 293.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1475.0, + 294.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1472.0, + 1402.0, + 1472.0, + 1402.0, + 1507.0, + 294.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1100.0, + 1498.0, + 1100.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 659.0, + 1305.0, + 659.0, + 1305.0, + 694.0, + 394.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 691.0, + 1305.0, + 691.0, + 1305.0, + 725.0, + 392.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 720.0, + 1307.0, + 720.0, + 1307.0, + 758.0, + 392.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 751.0, + 1305.0, + 751.0, + 1305.0, + 785.0, + 394.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 782.0, + 1305.0, + 782.0, + 1305.0, + 816.0, + 393.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 812.0, + 1308.0, + 812.0, + 1308.0, + 846.0, + 393.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 843.0, + 1306.0, + 843.0, + 1306.0, + 875.0, + 394.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 874.0, + 1306.0, + 874.0, + 1306.0, + 905.0, + 395.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 904.0, + 1307.0, + 904.0, + 1307.0, + 936.0, + 392.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 931.0, + 1305.0, + 931.0, + 1305.0, + 967.0, + 393.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 964.0, + 1309.0, + 964.0, + 1309.0, + 995.0, + 393.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 995.0, + 1306.0, + 995.0, + 1306.0, + 1026.0, + 395.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1024.0, + 1308.0, + 1024.0, + 1308.0, + 1056.0, + 395.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1053.0, + 1180.0, + 1053.0, + 1180.0, + 1088.0, + 395.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1582.0, + 292.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1573.0, + 565.0, + 1573.0, + 565.0, + 1617.0, + 291.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1573.0, + 1406.0, + 1573.0, + 1406.0, + 1617.0, + 723.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1607.0, + 1404.0, + 1607.0, + 1404.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1636.0, + 1405.0, + 1636.0, + 1405.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1405.0, + 1669.0, + 1405.0, + 1702.0, + 294.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1729.0, + 1402.0, + 1729.0, + 1402.0, + 1763.0, + 294.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1757.0, + 1404.0, + 1757.0, + 1404.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1786.0, + 1406.0, + 1786.0, + 1406.0, + 1826.0, + 292.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1853.0, + 293.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 941.0, + 1883.0, + 941.0, + 1914.0, + 293.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 441.0, + 1376.0, + 441.0, + 1376.0, + 476.0, + 1186.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 471.0, + 1342.0, + 471.0, + 1342.0, + 506.0, + 1219.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 442.0, + 817.0, + 442.0, + 817.0, + 481.0, + 631.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 472.0, + 874.0, + 472.0, + 874.0, + 513.0, + 574.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 441.0, + 1150.0, + 441.0, + 1150.0, + 477.0, + 909.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 472.0, + 1137.0, + 472.0, + 1137.0, + 510.0, + 922.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 439.0, + 539.0, + 439.0, + 539.0, + 480.0, + 338.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 470.0, + 538.0, + 470.0, + 538.0, + 510.0, + 324.0, + 510.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 202, + 1404, + 202, + 1404, + 537, + 298, + 537 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 551, + 1404, + 551, + 1404, + 825, + 298, + 825 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1454, + 1402, + 1454, + 1402, + 1636, + 299, + 1636 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1669, + 1403, + 1669, + 1403, + 1852, + 299, + 1852 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 1404, + 839, + 1404, + 1114, + 298, + 1114 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1884, + 1402, + 1884, + 1402, + 2007, + 300, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1127, + 1404, + 1127, + 1404, + 1220, + 300, + 1220 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 301, + 1330, + 1402, + 1330, + 1402, + 1421, + 301, + 1421 + ], + "score": 0.962 + }, + { + "category_id": 0, + "poly": [ + 299, + 1261, + 548, + 1261, + 548, + 1298, + 299, + 1298 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.72 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 859, + 2062, + 859, + 2084, + 841, + 2084 + ], + "score": 0.116 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1258.0, + 551.0, + 1258.0, + 551.0, + 1303.0, + 292.0, + 1303.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": [ + 294.0, + 203.0, + 1405.0, + 203.0, + 1405.0, + 241.0, + 294.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 235.0, + 1409.0, + 235.0, + 1409.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 295.0, + 1405.0, + 295.0, + 1405.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 324.0, + 1406.0, + 324.0, + 1406.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 353.0, + 1408.0, + 353.0, + 1408.0, + 392.0, + 292.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 421.0, + 293.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 414.0, + 1407.0, + 414.0, + 1407.0, + 451.0, + 292.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 442.0, + 1405.0, + 442.0, + 1405.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 477.0, + 1406.0, + 477.0, + 1406.0, + 512.0, + 294.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 987.0, + 507.0, + 987.0, + 541.0, + 294.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 553.0, + 1405.0, + 553.0, + 1405.0, + 585.0, + 297.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 582.0, + 1407.0, + 582.0, + 1407.0, + 618.0, + 292.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 613.0, + 1409.0, + 613.0, + 1409.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1406.0, + 641.0, + 1406.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 707.0, + 293.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 733.0, + 1409.0, + 733.0, + 1409.0, + 770.0, + 294.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 763.0, + 1406.0, + 763.0, + 1406.0, + 800.0, + 294.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 793.0, + 1178.0, + 793.0, + 1178.0, + 830.0, + 293.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 1404.0, + 1452.0, + 1404.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1483.0, + 1403.0, + 1483.0, + 1403.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 1404.0, + 1512.0, + 1404.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 1406.0, + 1545.0, + 1406.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1574.0, + 1406.0, + 1574.0, + 1406.0, + 1609.0, + 293.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1605.0, + 1013.0, + 1605.0, + 1013.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1407.0, + 1668.0, + 1407.0, + 1704.0, + 295.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1408.0, + 1699.0, + 1408.0, + 1734.0, + 294.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1407.0, + 1728.0, + 1407.0, + 1766.0, + 293.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 1403.0, + 1762.0, + 1403.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1791.0, + 1407.0, + 1791.0, + 1407.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1246.0, + 1820.0, + 1246.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 879.0, + 293.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 906.0, + 294.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 901.0, + 1406.0, + 901.0, + 1406.0, + 936.0, + 293.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 969.0, + 292.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 1405.0, + 961.0, + 1405.0, + 997.0, + 294.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 990.0, + 1406.0, + 990.0, + 1406.0, + 1030.0, + 292.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1022.0, + 1406.0, + 1022.0, + 1406.0, + 1057.0, + 293.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 1406.0, + 1051.0, + 1406.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1082.0, + 827.0, + 1082.0, + 827.0, + 1118.0, + 296.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1402.0, + 1882.0, + 1402.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1949.0, + 293.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1981.0, + 291.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1163.0, + 295.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1158.0, + 1405.0, + 1158.0, + 1405.0, + 1192.0, + 296.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1188.0, + 1242.0, + 1188.0, + 1242.0, + 1225.0, + 295.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 1406.0, + 1329.0, + 1406.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1407.0, + 1360.0, + 1407.0, + 1397.0, + 295.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 1261.0, + 1387.0, + 1261.0, + 1429.0, + 295.0, + 1429.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 361, + 1404, + 361, + 1404, + 817, + 297, + 817 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1182, + 1405, + 1182, + 1405, + 1489, + 298, + 1489 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1524, + 1405, + 1524, + 1405, + 1738, + 298, + 1738 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 933, + 1404, + 933, + 1404, + 1148, + 298, + 1148 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1854, + 1403, + 1854, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 203, + 1404, + 203, + 1404, + 325, + 299, + 325 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 298, + 862, + 1020, + 862, + 1020, + 901, + 298, + 901 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 298, + 1782, + 835, + 1782, + 835, + 1822, + 298, + 1822 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.606 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.43 + }, + { + "category_id": 13, + "poly": [ + 926, + 1613, + 1126, + 1613, + 1126, + 1648, + 926, + 1648 + ], + "score": 0.93, + "latex": "\\dot { H _ { d } } ( \\mathbf { x } ) = \\mathcal { D } ^ { 2 } d ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1154, + 1304, + 1331, + 1304, + 1331, + 1338, + 1154, + 1338 + ], + "score": 0.93, + "latex": "\\mathbf { x } - d ( \\mathbf { x } ) \\mathbf { n } _ { d } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 506, + 1244, + 706, + 1244, + 706, + 1278, + 506, + 1278 + ], + "score": 0.92, + "latex": "\\mathbf { n } _ { d } ( \\mathbf { x } ) = \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1274, + 469, + 1274, + 469, + 1308, + 299, + 1308 + ], + "score": 0.92, + "latex": "\\lVert \\nabla _ { \\mathbf { x } } d ( \\mathbf { x } ) \\rVert = 1" + }, + { + "category_id": 13, + "poly": [ + 762, + 994, + 1120, + 994, + 1120, + 1029, + 762, + 1029 + ], + "score": 0.92, + "latex": "d ( \\mathbf { x } ) = s ( \\mathbf { x } ) \\operatorname* { m i n } _ { \\mathbf { y } \\in \\partial \\Omega } \\bar { \\| } \\mathbf { x } - \\mathbf { y } \\bar { \\| }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1584, + 504, + 1584, + 504, + 1618, + 298, + 1618 + ], + "score": 0.92, + "latex": "\\bar { \\mathbf { \\xi } } S _ { D } ( \\bar { \\mathbf { x } } ) = \\mathcal { D } \\bar { \\mathbf { n } _ { d } } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1423, + 611, + 1423, + 611, + 1460, + 297, + 1460 + ], + "score": 0.92, + "latex": "\\mathbf { P } _ { d } \\mathbf { \\bar { ( x ) } } \\overset { \\mathbf { \\bar { \\alpha } } } { = } \\mathbf { I } - \\mathbf { \\bar { n _ { d } } } \\mathbf { ( x ) } \\mathbf { n } _ { d } \\mathbf { ( x ) } \\mathbf { \\breve { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1675, + 375, + 1675, + 375, + 1709, + 298, + 1709 + ], + "score": 0.92, + "latex": "S _ { D } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 986, + 1676, + 1067, + 1676, + 1067, + 1708, + 986, + 1708 + ], + "score": 0.91, + "latex": "S _ { D } ( { \\bf x } ) _ { , }" + }, + { + "category_id": 13, + "poly": [ + 1349, + 994, + 1403, + 994, + 1403, + 1028, + 1349, + 1028 + ], + "score": 0.91, + "latex": "s ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 590, + 1946, + 654, + 1946, + 654, + 1979, + 590, + 1979 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1977, + 362, + 1977, + 362, + 2009, + 298, + 2009 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 463, + 1706, + 544, + 1706, + 544, + 1739, + 463, + 1739 + ], + "score": 0.91, + "latex": "S _ { D } ( { \\bf x } ) _ { , }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1915, + 352, + 1915, + 352, + 1946, + 298, + 1946 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 537, + 1086, + 587, + 1086, + 587, + 1120, + 537, + 1120 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { f }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1915, + 1399, + 1915, + 1399, + 1948, + 1335, + 1948 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 513, + 1026, + 599, + 1026, + 599, + 1054, + 513, + 1054 + ], + "score": 0.9, + "latex": "\\textbf { x } \\in { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1916, + 1083, + 1916, + 1083, + 1946, + 1047, + 1946 + ], + "score": 0.9, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1946, + 1159, + 1946, + 1159, + 1976, + 1106, + 1976 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1977, + 1106, + 1977, + 1106, + 2006, + 1053, + 2006 + ], + "score": 0.89, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1057, + 1233, + 1057, + 1233, + 1087, + 1213, + 1087 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 566, + 995, + 606, + 995, + 606, + 1023, + 566, + 1023 + ], + "score": 0.83, + "latex": "\\partial \\Omega" + }, + { + "category_id": 13, + "poly": [ + 552, + 1916, + 576, + 1916, + 576, + 1942, + 552, + 1942 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1162, + 966, + 1185, + 966, + 1185, + 992, + 1162, + 992 + ], + "score": 0.76, + "latex": "\\Omega" + }, + { + "category_id": 13, + "poly": [ + 744, + 965, + 783, + 965, + 783, + 993, + 744, + 993 + ], + "score": 0.75, + "latex": "\\partial \\Omega" + }, + { + "category_id": 13, + "poly": [ + 514, + 1679, + 533, + 1679, + 533, + 1704, + 514, + 1704 + ], + "score": 0.73, + "latex": "\\bar { \\kappa }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1305, + 870, + 1305, + 870, + 1333, + 830, + 1333 + ], + "score": 0.71, + "latex": "\\partial \\Omega" + }, + { + "category_id": 13, + "poly": [ + 442, + 1027, + 481, + 1027, + 481, + 1055, + 442, + 1055 + ], + "score": 0.7, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 936, + 1309, + 960, + 1309, + 960, + 1333, + 936, + 1333 + ], + "score": 0.46, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1400, + 1397, + 1400, + 1397, + 1424, + 1376, + 1424 + ], + "score": 0.26, + "latex": "\\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 860.0, + 1025.0, + 860.0, + 1025.0, + 911.0, + 289.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1777.0, + 838.0, + 1777.0, + 838.0, + 1833.0, + 291.0, + 1833.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": [ + 294.0, + 358.0, + 1404.0, + 358.0, + 1404.0, + 395.0, + 294.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 389.0, + 1405.0, + 389.0, + 1405.0, + 426.0, + 294.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 419.0, + 1406.0, + 419.0, + 1406.0, + 459.0, + 292.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 490.0, + 292.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 481.0, + 1406.0, + 481.0, + 1406.0, + 518.0, + 292.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 511.0, + 1406.0, + 511.0, + 1406.0, + 552.0, + 292.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 543.0, + 1406.0, + 543.0, + 1406.0, + 579.0, + 292.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 572.0, + 1405.0, + 572.0, + 1405.0, + 608.0, + 294.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 601.0, + 1407.0, + 601.0, + 1407.0, + 641.0, + 291.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 635.0, + 1406.0, + 635.0, + 1406.0, + 670.0, + 295.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 665.0, + 1404.0, + 665.0, + 1404.0, + 699.0, + 296.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 694.0, + 1405.0, + 694.0, + 1405.0, + 729.0, + 295.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1405.0, + 726.0, + 1405.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 790.0, + 295.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 785.0, + 1160.0, + 785.0, + 1160.0, + 820.0, + 295.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1180.0, + 1405.0, + 1180.0, + 1405.0, + 1217.0, + 293.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1215.0, + 1405.0, + 1215.0, + 1405.0, + 1246.0, + 296.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 505.0, + 1243.0, + 505.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1243.0, + 1408.0, + 1243.0, + 1408.0, + 1280.0, + 707.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 298.0, + 1273.0, + 298.0, + 1309.0, + 295.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1309.0, + 470.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1302.0, + 829.0, + 1302.0, + 829.0, + 1341.0, + 291.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1302.0, + 935.0, + 1302.0, + 935.0, + 1341.0, + 871.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1302.0, + 1153.0, + 1302.0, + 1153.0, + 1341.0, + 961.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1302.0, + 1407.0, + 1302.0, + 1407.0, + 1341.0, + 1332.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1333.0, + 1408.0, + 1333.0, + 1408.0, + 1372.0, + 292.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1367.0, + 1403.0, + 1367.0, + 1403.0, + 1399.0, + 295.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1395.0, + 1375.0, + 1395.0, + 1375.0, + 1431.0, + 295.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1395.0, + 1408.0, + 1395.0, + 1408.0, + 1431.0, + 1398.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1423.0, + 296.0, + 1423.0, + 296.0, + 1463.0, + 293.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1423.0, + 1408.0, + 1423.0, + 1408.0, + 1463.0, + 612.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1456.0, + 1410.0, + 1456.0, + 1410.0, + 1492.0, + 295.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1523.0, + 1403.0, + 1523.0, + 1403.0, + 1559.0, + 296.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1554.0, + 1407.0, + 1554.0, + 1407.0, + 1589.0, + 293.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1582.0, + 297.0, + 1582.0, + 297.0, + 1621.0, + 292.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1582.0, + 1405.0, + 1582.0, + 1405.0, + 1621.0, + 505.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1613.0, + 925.0, + 1613.0, + 925.0, + 1651.0, + 291.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1613.0, + 1406.0, + 1613.0, + 1406.0, + 1651.0, + 1127.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1646.0, + 1406.0, + 1646.0, + 1406.0, + 1680.0, + 295.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1674.0, + 297.0, + 1674.0, + 297.0, + 1711.0, + 293.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1674.0, + 513.0, + 1674.0, + 513.0, + 1711.0, + 376.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1674.0, + 985.0, + 1674.0, + 985.0, + 1711.0, + 534.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1674.0, + 1405.0, + 1674.0, + 1405.0, + 1711.0, + 1068.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1705.0, + 462.0, + 1705.0, + 462.0, + 1741.0, + 292.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1705.0, + 1381.0, + 1705.0, + 1381.0, + 1741.0, + 545.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 932.0, + 1405.0, + 932.0, + 1405.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 963.0, + 743.0, + 963.0, + 743.0, + 999.0, + 292.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 963.0, + 1161.0, + 963.0, + 1161.0, + 999.0, + 784.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 963.0, + 1406.0, + 963.0, + 1406.0, + 999.0, + 1186.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 991.0, + 565.0, + 991.0, + 565.0, + 1032.0, + 291.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 991.0, + 761.0, + 991.0, + 761.0, + 1032.0, + 607.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 991.0, + 1348.0, + 991.0, + 1348.0, + 1032.0, + 1121.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1023.0, + 441.0, + 1023.0, + 441.0, + 1060.0, + 293.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1023.0, + 512.0, + 1023.0, + 512.0, + 1060.0, + 482.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1023.0, + 1405.0, + 1023.0, + 1405.0, + 1060.0, + 600.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1055.0, + 1212.0, + 1055.0, + 1212.0, + 1086.0, + 296.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1055.0, + 1402.0, + 1055.0, + 1402.0, + 1086.0, + 1234.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1087.0, + 536.0, + 1087.0, + 536.0, + 1118.0, + 296.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1087.0, + 1405.0, + 1087.0, + 1405.0, + 1118.0, + 588.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1408.0, + 1116.0, + 1408.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 297.0, + 1908.0, + 297.0, + 1954.0, + 293.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1908.0, + 551.0, + 1908.0, + 551.0, + 1954.0, + 353.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1908.0, + 1046.0, + 1908.0, + 1046.0, + 1954.0, + 577.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1908.0, + 1334.0, + 1908.0, + 1334.0, + 1954.0, + 1084.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1908.0, + 1403.0, + 1908.0, + 1403.0, + 1954.0, + 1400.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 589.0, + 1944.0, + 589.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1944.0, + 1105.0, + 1944.0, + 1105.0, + 1981.0, + 655.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1981.0, + 1160.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1977.0, + 1052.0, + 1977.0, + 1052.0, + 2010.0, + 363.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1977.0, + 1117.0, + 1977.0, + 1117.0, + 2010.0, + 1107.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 204.0, + 1401.0, + 204.0, + 1401.0, + 236.0, + 295.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 232.0, + 1404.0, + 232.0, + 1404.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 1409.0, + 294.0, + 1409.0, + 329.0, + 294.0, + 329.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1671, + 1404, + 1671, + 1404, + 2007, + 297, + 2007 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1064, + 1045, + 1064, + 1045, + 1402, + 298, + 1402 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1414, + 1404, + 1414, + 1404, + 1630, + 297, + 1630 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 304, + 197, + 1402, + 197, + 1402, + 640, + 304, + 640 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 297, + 648, + 1404, + 648, + 1404, + 772, + 297, + 772 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 1068, + 1073, + 1398, + 1073, + 1398, + 1282, + 1068, + 1282 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 1065, + 1302, + 1405, + 1302, + 1405, + 1395, + 1065, + 1395 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 296, + 810, + 1403, + 810, + 1403, + 874, + 296, + 874 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 311, + 897, + 1388, + 897, + 1388, + 991, + 311, + 991 + ], + "score": 0.942 + }, + { + "category_id": 9, + "poly": [ + 1365, + 991, + 1400, + 991, + 1400, + 1021, + 1365, + 1021 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.763 + }, + { + "category_id": 13, + "poly": [ + 505, + 1368, + 752, + 1368, + 752, + 1403, + 505, + 1403 + ], + "score": 0.93, + "latex": "\\kappa _ { f } ( \\mathbf { x } ) = \\mathrm { t r } \\mathcal { D } ( \\mathbf { n } _ { f } ( \\mathbf { x } ) )" + }, + { + "category_id": 14, + "poly": [ + 308, + 896, + 1386, + 896, + 1386, + 993, + 308, + 993 + ], + "score": 0.92, + "latex": "\\mathcal { L } ( \\theta ) = \\int _ { \\mathbf { x } \\in U } \\left| G _ { \\theta } ( \\mathbf { x } ) - F ( \\mathbf { x } ) \\right| ^ { 2 } + \\lambda _ { g } \\left( \\left\\| \\nabla _ { \\mathbf { x } } G _ { \\theta } ( \\mathbf { x } ) \\right\\| - 1 \\right) ^ { 2 } d \\mathbf { x } + \\int _ { \\mathbf { x } \\in V _ { \\tau } } \\lambda _ { k } \\left( \\kappa _ { G _ { \\theta } } ( \\mathbf { x } ) - \\beta \\kappa _ { F } ( \\mathbf { x } ) \\right) ^ { 2 } d \\mathbf { x } ." + }, + { + "category_id": 13, + "poly": [ + 818, + 1278, + 901, + 1278, + 901, + 1309, + 818, + 1309 + ], + "score": 0.91, + "latex": "\\beta > 1" + }, + { + "category_id": 13, + "poly": [ + 381, + 1565, + 812, + 1565, + 812, + 1600, + 381, + 1600 + ], + "score": 0.91, + "latex": "V _ { \\tau } = \\{ \\mathbf { x } \\in U | \\operatorname* { m a x } ( | \\kappa _ { G _ { \\theta } } | , | \\kappa _ { F } | ) < \\tau \\}" + }, + { + "category_id": 13, + "poly": [ + 523, + 1248, + 594, + 1248, + 594, + 1279, + 523, + 1279 + ], + "score": 0.91, + "latex": "\\beta < 1" + }, + { + "category_id": 13, + "poly": [ + 730, + 1098, + 768, + 1098, + 768, + 1127, + 730, + 1127 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 504, + 843, + 540, + 843, + 540, + 873, + 504, + 873 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 388, + 1283, + 435, + 1283, + 435, + 1311, + 388, + 1311 + ], + "score": 0.89, + "latex": "\\kappa _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 761, + 812, + 798, + 812, + 798, + 842, + 761, + 842 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 749, + 1067, + 785, + 1067, + 785, + 1096, + 749, + 1096 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 813, + 1398, + 813, + 1398, + 839, + 1374, + 839 + ], + "score": 0.85, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1368, + 1566, + 1400, + 1566, + 1400, + 1596, + 1368, + 1596 + ], + "score": 0.84, + "latex": "V _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 570, + 1188, + 595, + 1188, + 595, + 1214, + 570, + 1214 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 938, + 1157, + 964, + 1157, + 964, + 1185, + 938, + 1185 + ], + "score": 0.77, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1540, + 1117, + 1540, + 1117, + 1563, + 1098, + 1563 + ], + "score": 0.69, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 407, + 1253, + 426, + 1253, + 426, + 1275, + 407, + 1275 + ], + "score": 0.63, + "latex": "\\kappa" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 204.0, + 449.0, + 204.0, + 449.0, + 284.0, + 351.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 208.0, + 817.0, + 208.0, + 817.0, + 222.0, + 797.0, + 222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 208.0, + 947.0, + 208.0, + 947.0, + 222.0, + 928.0, + 222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 204.0, + 1264.0, + 204.0, + 1264.0, + 219.0, + 1244.0, + 219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 204.0, + 1398.0, + 204.0, + 1398.0, + 219.0, + 1377.0, + 219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 301.0, + 943.0, + 301.0, + 943.0, + 309.0, + 930.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 299.0, + 1264.0, + 299.0, + 1264.0, + 312.0, + 1244.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 301.0, + 1396.0, + 301.0, + 1396.0, + 309.0, + 1380.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 395.0, + 813.0, + 395.0, + 813.0, + 405.0, + 798.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 395.0, + 943.0, + 395.0, + 943.0, + 405.0, + 929.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 393.0, + 1261.0, + 393.0, + 1261.0, + 403.0, + 1245.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 392.0, + 1396.0, + 392.0, + 1396.0, + 404.0, + 1376.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 523.0, + 812.0, + 523.0, + 812.0, + 532.0, + 798.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 520.0, + 945.0, + 520.0, + 945.0, + 535.0, + 925.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 522.0, + 1262.0, + 522.0, + 1262.0, + 534.0, + 1242.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 524.0, + 1393.0, + 524.0, + 1393.0, + 532.0, + 1378.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 528.0, + 658.0, + 528.0, + 658.0, + 625.0, + 532.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 647.0, + 1405.0, + 647.0, + 1405.0, + 683.0, + 295.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 675.0, + 1405.0, + 675.0, + 1405.0, + 715.0, + 292.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 710.0, + 1404.0, + 710.0, + 1404.0, + 743.0, + 295.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 742.0, + 891.0, + 742.0, + 891.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1111.0, + 1242.0, + 1111.0, + 1242.0, + 1167.0, + 1105.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1123.0, + 1305.0, + 1123.0, + 1305.0, + 1288.0, + 1057.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1201.0, + 1365.0, + 1201.0, + 1365.0, + 1247.0, + 1309.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1300.0, + 1405.0, + 1300.0, + 1405.0, + 1333.0, + 1064.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1330.0, + 1407.0, + 1330.0, + 1407.0, + 1365.0, + 1064.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1365.0, + 1373.0, + 1365.0, + 1373.0, + 1397.0, + 1066.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1672.0, + 1407.0, + 1672.0, + 1407.0, + 1706.0, + 296.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1704.0, + 1404.0, + 1704.0, + 1404.0, + 1736.0, + 293.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1733.0, + 1406.0, + 1733.0, + 1406.0, + 1767.0, + 293.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1406.0, + 1762.0, + 1406.0, + 1798.0, + 293.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1791.0, + 1406.0, + 1791.0, + 1406.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1407.0, + 1820.0, + 1407.0, + 1860.0, + 292.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1854.0, + 1406.0, + 1854.0, + 1406.0, + 1891.0, + 292.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1886.0, + 1402.0, + 1886.0, + 1402.0, + 1917.0, + 296.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1404.0, + 1915.0, + 1404.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1980.0, + 296.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1975.0, + 1357.0, + 1975.0, + 1357.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1065.0, + 748.0, + 1065.0, + 748.0, + 1099.0, + 296.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1065.0, + 1046.0, + 1065.0, + 1046.0, + 1099.0, + 786.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1094.0, + 729.0, + 1094.0, + 729.0, + 1129.0, + 294.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1094.0, + 1048.0, + 1094.0, + 1048.0, + 1129.0, + 769.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1126.0, + 1046.0, + 1126.0, + 1046.0, + 1159.0, + 295.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 937.0, + 1156.0, + 937.0, + 1189.0, + 295.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1156.0, + 1047.0, + 1156.0, + 1047.0, + 1189.0, + 965.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 569.0, + 1186.0, + 569.0, + 1219.0, + 294.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1186.0, + 1046.0, + 1186.0, + 1046.0, + 1219.0, + 596.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 1047.0, + 1217.0, + 1047.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1248.0, + 406.0, + 1248.0, + 406.0, + 1280.0, + 294.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1248.0, + 522.0, + 1248.0, + 522.0, + 1280.0, + 427.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1248.0, + 1048.0, + 1248.0, + 1048.0, + 1280.0, + 595.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1276.0, + 387.0, + 1276.0, + 387.0, + 1313.0, + 294.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1276.0, + 817.0, + 1276.0, + 817.0, + 1313.0, + 436.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1276.0, + 1048.0, + 1276.0, + 1048.0, + 1313.0, + 902.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1305.0, + 1050.0, + 1305.0, + 1050.0, + 1344.0, + 294.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1047.0, + 1337.0, + 1047.0, + 1373.0, + 294.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1366.0, + 504.0, + 1366.0, + 504.0, + 1404.0, + 294.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1366.0, + 764.0, + 1366.0, + 764.0, + 1404.0, + 753.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1404.0, + 1412.0, + 1404.0, + 1449.0, + 295.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1444.0, + 1406.0, + 1444.0, + 1406.0, + 1479.0, + 295.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1510.0, + 295.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1536.0, + 1097.0, + 1536.0, + 1097.0, + 1569.0, + 294.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1536.0, + 1404.0, + 1536.0, + 1404.0, + 1569.0, + 1118.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 380.0, + 1565.0, + 380.0, + 1603.0, + 294.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1565.0, + 1367.0, + 1565.0, + 1367.0, + 1603.0, + 813.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1565.0, + 1404.0, + 1565.0, + 1404.0, + 1603.0, + 1401.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 756.0, + 1595.0, + 756.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 760.0, + 810.0, + 760.0, + 846.0, + 295.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 810.0, + 1373.0, + 810.0, + 1373.0, + 846.0, + 799.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 810.0, + 1409.0, + 810.0, + 1409.0, + 846.0, + 1399.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 503.0, + 839.0, + 503.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 839.0, + 880.0, + 839.0, + 880.0, + 877.0, + 541.0, + 877.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 880, + 1405, + 880, + 1405, + 1096, + 297, + 1096 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 683, + 1404, + 683, + 1404, + 868, + 298, + 868 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 266, + 1406, + 266, + 1406, + 482, + 297, + 482 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1186, + 937, + 1186, + 937, + 1490, + 298, + 1490 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1853, + 1404, + 1853, + 1404, + 2008, + 298, + 2008 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1687, + 1404, + 1687, + 1404, + 1841, + 297, + 1841 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1491, + 1403, + 1491, + 1403, + 1675, + 297, + 1675 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 958, + 1194, + 1400, + 1194, + 1400, + 1397, + 958, + 1397 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 295, + 607, + 1406, + 607, + 1406, + 671, + 295, + 671 + ], + "score": 0.945 + }, + { + "category_id": 4, + "poly": [ + 955, + 1410, + 1403, + 1410, + 1403, + 1471, + 955, + 1471 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 512, + 540, + 1186, + 540, + 1186, + 585, + 512, + 585 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 292, + 493, + 1334, + 493, + 1334, + 526, + 292, + 526 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 297, + 198, + 531, + 198, + 531, + 236, + 297, + 236 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 298, + 1130, + 477, + 1130, + 477, + 1164, + 298, + 1164 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1366, + 546, + 1400, + 546, + 1400, + 575, + 1366, + 575 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.716 + }, + { + "category_id": 13, + "poly": [ + 682, + 1748, + 1072, + 1748, + 1072, + 1782, + 682, + 1782 + ], + "score": 0.93, + "latex": "\\mathbf { x } _ { 0 } \\sim \\{ \\mathbf { x } \\in U ( - 1 , 1 ) | F ( \\mathbf { x } ) < \\tau _ { s } \\}" + }, + { + "category_id": 13, + "poly": [ + 539, + 608, + 693, + 608, + 693, + 643, + 539, + 643 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { d f m } ( G _ { \\theta } , F )" + }, + { + "category_id": 13, + "poly": [ + 1066, + 267, + 1159, + 267, + 1159, + 301, + 1066, + 301 + ], + "score": 0.92, + "latex": "\\{ { \\bf h } _ { i } \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1431, + 810, + 1431, + 810, + 1461, + 756, + 1461 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 298, + 639, + 554, + 639, + 554, + 673, + 298, + 673 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 329, + 385, + 329, + 385, + 359, + 297, + 359 + ], + "score": 0.91, + "latex": "\\mathbf { t } _ { i } = \\mathbf { h } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 815, + 1551, + 984, + 1551, + 984, + 1585, + 815, + 1585 + ], + "score": 0.9, + "latex": "{ \\bf x } - { \\bf n } ( { \\bf x } ) F ( { \\bf x } )" + }, + { + "category_id": 13, + "poly": [ + 774, + 1522, + 864, + 1522, + 864, + 1553, + 774, + 1553 + ], + "score": 0.9, + "latex": "[ - 1 , 1 ] ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 551, + 1461, + 606, + 1461, + 606, + 1491, + 551, + 1491 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 14, + "poly": [ + 511, + 540, + 1183, + 540, + 1183, + 591, + 511, + 591 + ], + "score": 0.9, + "latex": "\\operatorname* { m i n } _ { \\theta } \\ \\mathcal { L } _ { d f m } ( G _ { \\theta } , F ) \\quad \\mathrm { s . t . } \\ \\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } _ { i } , \\mathbf { h } _ { i } ) = 0 , 1 \\leq i \\leq n ," + }, + { + "category_id": 13, + "poly": [ + 1282, + 420, + 1319, + 420, + 1319, + 450, + 1282, + 450 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 702, + 300, + 728, + 300, + 728, + 329, + 702, + 329 + ], + "score": 0.87, + "latex": "\\mathbf { t } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1366, + 268, + 1396, + 268, + 1396, + 298, + 1366, + 298 + ], + "score": 0.86, + "latex": "\\mathbf { h } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1693, + 1074, + 1693, + 1074, + 1718, + 1041, + 1718 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { \\mathrm { 0 } }" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1489, + 1311, + 1489, + 1311, + 1523, + 1121, + 1523 + ], + "score": 0.85, + "latex": "\\tilde { \\mathbf { x } } _ { t } \\sim \\mathcal { N } ( \\mathbf { x } _ { t } , \\sigma \\mathbf { I } )" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1753, + 1281, + 1753, + 1281, + 1779, + 1253, + 1779 + ], + "score": 0.84, + "latex": "\\tau _ { s }" + }, + { + "category_id": 13, + "poly": [ + 490, + 421, + 515, + 421, + 515, + 447, + 490, + 447 + ], + "score": 0.83, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 645, + 1492, + 670, + 1492, + 670, + 1519, + 645, + 1519 + ], + "score": 0.8, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 298, + 1370, + 322, + 1370, + 322, + 1397, + 298, + 1397 + ], + "score": 0.78, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1494, + 1358, + 1494, + 1358, + 1522, + 1324, + 1522 + ], + "score": 0.74, + "latex": "\\mathbf { x } _ { \\mathrm { 0 } }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1490, + 1087, + 1490, + 1087, + 1524, + 768, + 1524 + ], + "score": 0.69, + "latex": "\\mathbf { x } _ { t + 1 } \\overset { \\cdot } { = } \\tilde { \\mathbf { x } } _ { t } - F ( \\tilde { \\mathbf { x } } _ { t } ) n _ { F } ( \\tilde { \\mathbf { x } } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1887, + 1091, + 1887, + 1091, + 1913, + 1051, + 1913 + ], + "score": 0.68, + "latex": "L D" + }, + { + "category_id": 13, + "poly": [ + 560, + 1556, + 582, + 1556, + 582, + 1580, + 560, + 1580 + ], + "score": 0.47, + "latex": "\\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1245.0, + 1261.0, + 1245.0, + 1261.0, + 1268.0, + 1231.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1258.0, + 1281.0, + 1258.0, + 1281.0, + 1286.0, + 1244.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1322.5, + 1382.0, + 1322.5, + 1382.0, + 1371.5, + 1291.0, + 1371.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1338.5, + 1124.0, + 1338.5, + 1124.0, + 1359.0, + 1097.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1316.0, + 1097.0, + 1316.0, + 1097.0, + 1350.0, + 1011.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1405.0, + 1405.0, + 1405.0, + 1405.0, + 1447.0, + 955.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1436.0, + 1341.0, + 1436.0, + 1341.0, + 1477.0, + 955.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 192.0, + 536.0, + 192.0, + 536.0, + 244.0, + 289.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1124.0, + 482.0, + 1124.0, + 482.0, + 1174.0, + 291.0, + 1174.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": [ + 292.0, + 878.0, + 1405.0, + 878.0, + 1405.0, + 919.0, + 292.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 911.0, + 1405.0, + 911.0, + 1405.0, + 946.0, + 292.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 939.0, + 1405.0, + 939.0, + 1405.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 969.0, + 1406.0, + 969.0, + 1406.0, + 1010.0, + 292.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1003.0, + 1405.0, + 1003.0, + 1405.0, + 1037.0, + 295.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1034.0, + 1406.0, + 1034.0, + 1406.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1063.0, + 1138.0, + 1063.0, + 1138.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 685.0, + 1404.0, + 685.0, + 1404.0, + 717.0, + 297.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 713.0, + 1404.0, + 713.0, + 1404.0, + 750.0, + 293.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 745.0, + 1405.0, + 745.0, + 1405.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 775.0, + 1405.0, + 775.0, + 1405.0, + 811.0, + 294.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 803.0, + 1405.0, + 803.0, + 1405.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 837.0, + 774.0, + 837.0, + 774.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 262.0, + 1065.0, + 262.0, + 1065.0, + 309.0, + 291.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 262.0, + 1365.0, + 262.0, + 1365.0, + 309.0, + 1160.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 262.0, + 1412.0, + 262.0, + 1412.0, + 309.0, + 1397.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 297.0, + 701.0, + 297.0, + 701.0, + 332.0, + 295.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 297.0, + 1407.0, + 297.0, + 1407.0, + 332.0, + 729.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 328.0, + 1404.0, + 328.0, + 1404.0, + 363.0, + 386.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 359.0, + 1406.0, + 359.0, + 1406.0, + 394.0, + 295.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 386.0, + 1404.0, + 386.0, + 1404.0, + 423.0, + 294.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 420.0, + 489.0, + 420.0, + 489.0, + 454.0, + 295.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 420.0, + 1281.0, + 420.0, + 1281.0, + 454.0, + 516.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 420.0, + 1406.0, + 420.0, + 1406.0, + 454.0, + 1320.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 449.0, + 1300.0, + 449.0, + 1300.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 940.0, + 1186.0, + 940.0, + 1221.0, + 295.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 938.0, + 1217.0, + 938.0, + 1250.0, + 294.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 939.0, + 1247.0, + 939.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 936.0, + 1279.0, + 936.0, + 1310.0, + 294.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1307.0, + 937.0, + 1307.0, + 937.0, + 1342.0, + 294.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1338.0, + 938.0, + 1338.0, + 938.0, + 1372.0, + 295.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1369.0, + 938.0, + 1369.0, + 938.0, + 1403.0, + 323.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 938.0, + 1398.0, + 938.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1426.0, + 755.0, + 1426.0, + 755.0, + 1465.0, + 293.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1426.0, + 938.0, + 1426.0, + 938.0, + 1465.0, + 811.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1460.0, + 550.0, + 1460.0, + 550.0, + 1494.0, + 295.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1460.0, + 937.0, + 1460.0, + 937.0, + 1494.0, + 607.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1888.0, + 297.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1884.0, + 1050.0, + 1884.0, + 1050.0, + 1921.0, + 294.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1921.0, + 1092.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1953.0, + 293.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1409.0, + 1940.0, + 1409.0, + 1985.0, + 292.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 1409.0, + 1973.0, + 1409.0, + 2013.0, + 293.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1683.0, + 1040.0, + 1683.0, + 1040.0, + 1724.0, + 292.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1683.0, + 1408.0, + 1683.0, + 1408.0, + 1724.0, + 1075.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1752.0, + 295.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1749.0, + 681.0, + 1749.0, + 681.0, + 1783.0, + 296.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1749.0, + 1252.0, + 1749.0, + 1252.0, + 1783.0, + 1073.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1749.0, + 1405.0, + 1749.0, + 1405.0, + 1783.0, + 1282.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1808.0, + 1155.0, + 1808.0, + 1155.0, + 1845.0, + 295.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1487.0, + 644.0, + 1487.0, + 644.0, + 1526.0, + 293.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1487.0, + 767.0, + 1487.0, + 767.0, + 1526.0, + 671.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1487.0, + 1120.0, + 1487.0, + 1120.0, + 1526.0, + 1088.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1487.0, + 1323.0, + 1487.0, + 1323.0, + 1526.0, + 1312.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1487.0, + 1405.0, + 1487.0, + 1405.0, + 1526.0, + 1359.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1515.0, + 773.0, + 1515.0, + 773.0, + 1558.0, + 291.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1515.0, + 1408.0, + 1515.0, + 1408.0, + 1558.0, + 865.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1549.0, + 559.0, + 1549.0, + 559.0, + 1587.0, + 293.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1549.0, + 814.0, + 1549.0, + 814.0, + 1587.0, + 583.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1549.0, + 1405.0, + 1549.0, + 1405.0, + 1587.0, + 985.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1582.0, + 1406.0, + 1582.0, + 1406.0, + 1616.0, + 293.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1645.0, + 293.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1643.0, + 1400.0, + 1643.0, + 1400.0, + 1676.0, + 293.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 604.0, + 538.0, + 604.0, + 538.0, + 644.0, + 293.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 604.0, + 1404.0, + 604.0, + 1404.0, + 644.0, + 694.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 638.0, + 1158.0, + 638.0, + 1158.0, + 677.0, + 555.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 1334.0, + 490.0, + 1334.0, + 532.0, + 293.0, + 532.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1112, + 1407, + 1112, + 1407, + 1358, + 296, + 1358 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1607, + 936, + 1607, + 936, + 2007, + 298, + 2007 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 431, + 937, + 431, + 937, + 709, + 298, + 709 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 885, + 1405, + 885, + 1405, + 1072, + 297, + 1072 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 719, + 1405, + 719, + 1405, + 844, + 298, + 844 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1404, + 202, + 1404, + 327, + 298, + 327 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1480, + 1404, + 1480, + 1404, + 1566, + 297, + 1566 + ], + "score": 0.973 + }, + { + "category_id": 5, + "poly": [ + 956, + 498, + 1409, + 498, + 1409, + 704, + 956, + 704 + ], + "score": 0.964, + "html": "
Dino Armadillo
MetricsLDOursLDOurs
CDr (↓)1.541.041.361.02
EMDr (↓)3.381.153.301.08
Time0.150.210.120.18
" + }, + { + "category_id": 4, + "poly": [ + 956, + 1832, + 1405, + 1832, + 1405, + 1925, + 956, + 1925 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 956, + 1613, + 1377, + 1613, + 1377, + 1802, + 956, + 1802 + ], + "score": 0.958 + }, + { + "category_id": 6, + "poly": [ + 955, + 432, + 1404, + 432, + 1404, + 493, + 955, + 493 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 360, + 1381, + 1327, + 1381, + 1327, + 1458, + 360, + 1458 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 299, + 371, + 703, + 371, + 703, + 404, + 299, + 404 + ], + "score": 0.918 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1407, + 1400, + 1407, + 1400, + 1437, + 1366, + 1437 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 859, + 2062, + 859, + 2085, + 840, + 2085 + ], + "score": 0.784 + }, + { + "category_id": 13, + "poly": [ + 582, + 1511, + 1082, + 1511, + 1082, + 1567, + 582, + 1567 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\bar { R _ { \\theta } } ( \\mathbf { x } ) = \\mathbf { x } + g _ { \\theta } \\left( \\frac { 1 } { \\sqrt { d } } [ \\gamma _ { 1 } \\left( \\mathbf { x } \\right) , \\mathbf { \\Omega } , \\mathbf { \\Omega } . . . , \\gamma _ { d } \\left( \\mathbf { \\bar { x } } \\right) ] \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1038, + 1206, + 1038, + 1206, + 1072, + 1153, + 1072 + ], + "score": 0.93, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 702, + 614, + 929, + 614, + 929, + 648, + 702, + 648 + ], + "score": 0.93, + "latex": "G _ { \\theta } ( \\mathbf { x } ) = F ( D _ { \\theta } ( \\mathbf { x } ) )" + }, + { + "category_id": 13, + "poly": [ + 658, + 947, + 713, + 947, + 713, + 981, + 658, + 981 + ], + "score": 0.93, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 830, + 1008, + 989, + 1008, + 989, + 1041, + 830, + 1041 + ], + "score": 0.92, + "latex": "y \\mapsto y - g ( x )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1294, + 490, + 1294, + 490, + 1328, + 298, + 1328 + ], + "score": 0.92, + "latex": "\\sin ( a x + b ) | a | ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 369, + 916, + 570, + 916, + 570, + 950, + 369, + 950 + ], + "score": 0.92, + "latex": "f ( x ) = x + g ( x )" + }, + { + "category_id": 13, + "poly": [ + 747, + 722, + 786, + 722, + 786, + 751, + 747, + 751 + ], + "score": 0.92, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 362, + 1759, + 638, + 1759, + 638, + 1799, + 362, + 1799 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left\\| D _ { \\theta } ( \\mathbf { h } _ { i } ) - \\mathbf { t } _ { i } \\right\\| ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 532, + 645, + 718, + 645, + 718, + 677, + 532, + 677 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } )" + }, + { + "category_id": 13, + "poly": [ + 650, + 781, + 733, + 781, + 733, + 814, + 650, + 814 + ], + "score": 0.91, + "latex": "D _ { \\theta } ( \\mathbf { x } ) )" + }, + { + "category_id": 14, + "poly": [ + 364, + 1380, + 1335, + 1380, + 1335, + 1460, + 364, + 1460 + ], + "score": 0.91, + "latex": "\\gamma _ { i } ( { \\bf x } ) = \\frac { 1 } { \\sqrt { 2 L + 1 } } \\left( x _ { i } , \\frac { \\cos ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\frac { \\sin ( 2 ^ { 0 } \\pi { \\bf x } _ { i } ) } { 2 ^ { 0 } \\pi } , \\ldots , \\frac { \\cos ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } , \\frac { \\sin ( 2 ^ { L } \\pi { \\bf x } _ { i } ) } { 2 ^ { L } \\pi } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 297, + 675, + 669, + 675, + 669, + 710, + 297, + 710 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { c o n s t } ( G _ { \\theta } , \\mathbf { t } , \\mathbf { h } ) = \\| D _ { \\theta } ( \\mathbf { t } ) - \\mathbf { h } \\|" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1205, + 1396, + 1205, + 1396, + 1237, + 1261, + 1237 + ], + "score": 0.89, + "latex": "\\sin ( a x + b )" + }, + { + "category_id": 13, + "poly": [ + 1048, + 782, + 1087, + 782, + 1087, + 812, + 1048, + 812 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 492, + 585, + 530, + 585, + 530, + 615, + 492, + 615 + ], + "score": 0.86, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 977, + 238, + 1011, + 238, + 1011, + 265, + 977, + 265 + ], + "score": 0.84, + "latex": "\\mathbf { x } _ { \\mathrm { 0 } }" + }, + { + "category_id": 13, + "poly": [ + 1224, + 921, + 1243, + 921, + 1243, + 949, + 1224, + 949 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 856, + 1045, + 875, + 1045, + 875, + 1066, + 856, + 1066 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 369, + 1239, + 387, + 1239, + 387, + 1262, + 369, + 1262 + ], + "score": 0.72, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 296, + 1916, + 338, + 1916, + 338, + 1944, + 296, + 1944 + ], + "score": 0.71, + "latex": "P E _ { \\mathrm { { \\ell } } }" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1832.0, + 1403.0, + 1832.0, + 1403.0, + 1862.0, + 954.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1860.0, + 1408.0, + 1860.0, + 1408.0, + 1895.0, + 956.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1890.0, + 1270.0, + 1890.0, + 1270.0, + 1927.0, + 955.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1616.0, + 1100.0, + 1616.0, + 1100.0, + 1648.0, + 969.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1615.0, + 1222.0, + 1615.0, + 1222.0, + 1648.0, + 1138.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1614.0, + 1360.0, + 1614.0, + 1360.0, + 1650.0, + 1294.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1647.0, + 972.0, + 1647.0, + 972.0, + 1661.0, + 960.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1647.0, + 1025.0, + 1647.0, + 1025.0, + 1660.0, + 996.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1649.0, + 1303.0, + 1649.0, + 1303.0, + 1656.0, + 1287.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1652.0, + 1287.0, + 1652.0, + 1287.0, + 1659.0, + 1278.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1698.0, + 1094.0, + 1698.0, + 1094.0, + 1750.0, + 1050.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1710.0, + 1229.0, + 1710.0, + 1229.0, + 1746.0, + 1206.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1697.0, + 1285.0, + 1697.0, + 1285.0, + 1755.0, + 1275.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1711.0, + 1370.0, + 1711.0, + 1370.0, + 1741.0, + 1353.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1651.0, + 1001.0, + 1651.0, + 1001.0, + 1658.0, + 983.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 465.0, + 955.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 461.0, + 1306.0, + 461.0, + 1306.0, + 494.0, + 956.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 371.0, + 705.0, + 371.0, + 705.0, + 407.0, + 295.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 1407.0, + 1112.0, + 1407.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1144.0, + 1407.0, + 1144.0, + 1407.0, + 1177.0, + 295.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1170.0, + 1408.0, + 1170.0, + 1408.0, + 1209.0, + 293.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 1260.0, + 1203.0, + 1260.0, + 1239.0, + 293.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1203.0, + 1407.0, + 1203.0, + 1407.0, + 1239.0, + 1397.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 368.0, + 1235.0, + 368.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1269.0, + 388.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1264.0, + 1404.0, + 1264.0, + 1404.0, + 1297.0, + 294.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1293.0, + 297.0, + 1293.0, + 297.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1293.0, + 1407.0, + 1293.0, + 1407.0, + 1330.0, + 491.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 951.0, + 1326.0, + 951.0, + 1360.0, + 294.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1606.0, + 941.0, + 1606.0, + 941.0, + 1639.0, + 296.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1637.0, + 937.0, + 1637.0, + 937.0, + 1670.0, + 295.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1667.0, + 935.0, + 1667.0, + 935.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 938.0, + 1697.0, + 938.0, + 1730.0, + 295.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1725.0, + 938.0, + 1725.0, + 938.0, + 1764.0, + 292.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1762.0, + 360.0, + 1762.0, + 360.0, + 1796.0, + 294.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1746.0, + 947.0, + 1746.0, + 947.0, + 1812.0, + 639.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 937.0, + 1792.0, + 937.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1823.0, + 938.0, + 1823.0, + 938.0, + 1856.0, + 295.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 937.0, + 1853.0, + 937.0, + 1888.0, + 294.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 937.0, + 1884.0, + 937.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1912.0, + 295.0, + 1912.0, + 295.0, + 1948.0, + 292.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1912.0, + 936.0, + 1912.0, + 936.0, + 1948.0, + 339.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 938.0, + 1944.0, + 938.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 794.0, + 1970.0, + 794.0, + 2013.0, + 293.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 430.0, + 940.0, + 430.0, + 940.0, + 466.0, + 296.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 463.0, + 935.0, + 463.0, + 935.0, + 493.0, + 297.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 493.0, + 937.0, + 493.0, + 937.0, + 527.0, + 295.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 523.0, + 938.0, + 523.0, + 938.0, + 555.0, + 295.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 552.0, + 938.0, + 552.0, + 938.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 584.0, + 491.0, + 584.0, + 491.0, + 617.0, + 293.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 584.0, + 940.0, + 584.0, + 940.0, + 617.0, + 531.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 610.0, + 701.0, + 610.0, + 701.0, + 650.0, + 293.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 610.0, + 941.0, + 610.0, + 941.0, + 650.0, + 930.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 640.0, + 531.0, + 640.0, + 531.0, + 681.0, + 291.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 640.0, + 941.0, + 640.0, + 941.0, + 681.0, + 719.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 673.0, + 682.0, + 673.0, + 682.0, + 711.0, + 670.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 882.0, + 1406.0, + 882.0, + 1406.0, + 920.0, + 294.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 912.0, + 368.0, + 912.0, + 368.0, + 953.0, + 292.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 912.0, + 1223.0, + 912.0, + 1223.0, + 953.0, + 571.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 912.0, + 1410.0, + 912.0, + 1410.0, + 953.0, + 1244.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 945.0, + 657.0, + 945.0, + 657.0, + 982.0, + 292.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 945.0, + 1407.0, + 945.0, + 1407.0, + 982.0, + 714.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 979.0, + 1402.0, + 979.0, + 1402.0, + 1011.0, + 296.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 829.0, + 1005.0, + 829.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1005.0, + 1406.0, + 1005.0, + 1406.0, + 1044.0, + 990.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 855.0, + 1040.0, + 855.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1040.0, + 1152.0, + 1040.0, + 1152.0, + 1072.0, + 876.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1040.0, + 1217.0, + 1040.0, + 1217.0, + 1072.0, + 1207.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 721.0, + 746.0, + 721.0, + 746.0, + 753.0, + 295.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 753.0, + 787.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 750.0, + 1406.0, + 750.0, + 1406.0, + 785.0, + 292.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 783.0, + 649.0, + 783.0, + 649.0, + 815.0, + 292.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 783.0, + 1047.0, + 783.0, + 1047.0, + 815.0, + 734.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 783.0, + 1406.0, + 783.0, + 1406.0, + 815.0, + 1088.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 812.0, + 936.0, + 812.0, + 936.0, + 847.0, + 293.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 238.0, + 292.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 232.0, + 976.0, + 232.0, + 976.0, + 269.0, + 292.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 232.0, + 1404.0, + 232.0, + 1404.0, + 269.0, + 1012.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 301.0, + 293.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 296.0, + 469.0, + 296.0, + 469.0, + 330.0, + 296.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1478.0, + 1404.0, + 1478.0, + 1404.0, + 1517.0, + 295.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1507.0, + 581.0, + 1507.0, + 581.0, + 1573.0, + 286.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1507.0, + 1096.0, + 1507.0, + 1096.0, + 1573.0, + 1083.0, + 1573.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1345, + 1405, + 1345, + 1405, + 1596, + 296, + 1596 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 295, + 1606, + 1405, + 1606, + 1405, + 1827, + 295, + 1827 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 256, + 1406, + 256, + 1406, + 443, + 297, + 443 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 661, + 1404, + 661, + 1404, + 847, + 297, + 847 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 858, + 1405, + 858, + 1405, + 1013, + 297, + 1013 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 524, + 1405, + 524, + 1405, + 648, + 298, + 648 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1081, + 1408, + 1081, + 1408, + 1175, + 297, + 1175 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 547, + 1189, + 1152, + 1189, + 1152, + 1266, + 547, + 1266 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 1941, + 1404, + 1941, + 1404, + 2013, + 295, + 2013 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 467, + 1026, + 1232, + 1026, + 1232, + 1070, + 467, + 1070 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 298, + 202, + 648, + 202, + 648, + 236, + 298, + 236 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 297, + 1294, + 545, + 1294, + 545, + 1328, + 297, + 1328 + ], + "score": 0.926 + }, + { + "category_id": 8, + "poly": [ + 418, + 1840, + 1278, + 1840, + 1278, + 1913, + 418, + 1913 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 298, + 473, + 569, + 473, + 569, + 507, + 298, + 507 + ], + "score": 0.922 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1209, + 1400, + 1209, + 1400, + 1239, + 1365, + 1239 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1034, + 1400, + 1034, + 1400, + 1063, + 1366, + 1063 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1862, + 1400, + 1862, + 1400, + 1891, + 1366, + 1891 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 841, + 2060, + 858, + 2060, + 858, + 2084, + 841, + 2084 + ], + "score": 0.741 + }, + { + "category_id": 13, + "poly": [ + 480, + 1698, + 654, + 1698, + 654, + 1731, + 480, + 1731 + ], + "score": 0.94, + "latex": "\\dot { \\mathbf { t } } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 725, + 1407, + 906, + 1407, + 906, + 1441, + 725, + 1441 + ], + "score": 0.93, + "latex": "\\mathbf { t } _ { 1 } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 635, + 1467, + 810, + 1467, + 810, + 1502, + 635, + 1502 + ], + "score": 0.92, + "latex": "{ \\bf \\dot { \\{ p \\vert } } G _ { \\theta } ( { \\bf p } ) = t \\}" + }, + { + "category_id": 13, + "poly": [ + 829, + 784, + 917, + 784, + 917, + 817, + 829, + 817 + ], + "score": 0.92, + "latex": "\\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1638, + 1400, + 1638, + 1400, + 1672, + 1223, + 1672 + ], + "score": 0.92, + "latex": "\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 877, + 258, + 1008, + 258, + 1008, + 290, + 877, + 290 + ], + "score": 0.92, + "latex": "\\mathbf { y } = D _ { \\theta } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 391, + 951, + 558, + 951, + 558, + 984, + 391, + 984 + ], + "score": 0.92, + "latex": "\\mathbf { t } _ { i } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1528, + 610, + 1528, + 610, + 1568, + 299, + 1568 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { d } { d t } \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } \\mathbf { \\bar { \\Psi } } _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { T } \\bar { H _ { G _ { \\theta } } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1291, + 783, + 1402, + 783, + 1402, + 817, + 1291, + 817 + ], + "score": 0.92, + "latex": "\\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v }" + }, + { + "category_id": 14, + "poly": [ + 415, + 1837, + 1281, + 1837, + 1281, + 1916, + 415, + 1916 + ], + "score": 0.92, + "latex": "\\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| = \\left| \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\mathbf { v } _ { 2 } \\right| ." + }, + { + "category_id": 14, + "poly": [ + 547, + 1186, + 1152, + 1186, + 1152, + 1267, + 547, + 1267 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { s } ( G _ { \\theta } ) = \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\left. \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right. _ { F } ^ { 2 } d \\mathbf { x } ." + }, + { + "category_id": 13, + "poly": [ + 708, + 1698, + 887, + 1698, + 887, + 1734, + 708, + 1734 + ], + "score": 0.92, + "latex": "\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1407, + 1142, + 1407, + 1142, + 1440, + 959, + 1440 + ], + "score": 0.92, + "latex": "\\mathbf { t } _ { 2 } = \\mathbf { \\bar { P } } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { v } } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 720, + 920, + 903, + 920, + 903, + 954, + 720, + 954 + ], + "score": 0.92, + "latex": "\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 610, + 952, + 782, + 952, + 782, + 986, + 610, + 986 + ], + "score": 0.91, + "latex": "\\mathbf { t } _ { j } ^ { \\prime } = \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { \\bar { x } } ) \\mathbf { t } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 440, + 1972, + 703, + 1972, + 703, + 2014, + 440, + 2014 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\left| \\frac { d } { d t } \\left( \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\bar { \\mathbf { t } } _ { 2 } ^ { \\prime } \\right) _ { t = 0 } \\right| } \\end{array} \\qquad = 0 ." + }, + { + "category_id": 13, + "poly": [ + 345, + 1668, + 527, + 1668, + 527, + 1702, + 345, + 1702 + ], + "score": 0.91, + "latex": "\\mathbf { t } _ { j } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 379, + 782, + 742, + 782, + 742, + 817, + 379, + 817 + ], + "score": 0.91, + "latex": "\\bar { \\mathbf { P } _ { G _ { \\theta } } } ( \\mathbf { x } ) = \\mathbf { I } - \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { \\bar { n } } _ { G _ { \\theta } } ( \\mathbf { \\bar { x } } ) ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 942, + 291, + 1006, + 291, + 1006, + 323, + 942, + 323 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { d f m }" + }, + { + "category_id": 13, + "poly": [ + 489, + 920, + 668, + 920, + 668, + 953, + 489, + 953 + ], + "score": 0.91, + "latex": "\\mathbf { t } _ { i } = \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 463, + 1025, + 1235, + 1025, + 1235, + 1071, + 463, + 1071 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\vert \\mathbf { t } _ { 1 } ^ { T } \\mathbf { t } _ { 2 } - \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } \\vert = \\vert \\mathbf { v } _ { 1 } ^ { T } \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\left( \\mathbf { I } - \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\right) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) \\mathbf { v } _ { 2 } \\vert . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 887, + 1109, + 1167, + 1109, + 1167, + 1149, + 887, + 1149 + ], + "score": 0.91, + "latex": "\\mathbf { \\dot { P } } _ { G _ { \\theta } } ^ { T } \\bigl ( \\mathbf { I } - \\mathbf { \\dot { J } } _ { D _ { \\theta } } ^ { T } \\mathbf { J } _ { D _ { \\theta } } \\bigr ) \\mathbf { P } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 962, + 1441, + 1081, + 1441, + 1081, + 1471, + 962, + 1471 + ], + "score": 0.9, + "latex": "\\mathbf { x } + t \\mathbf { n } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 607, + 1795, + 659, + 1795, + 659, + 1826, + 607, + 1826 + ], + "score": 0.9, + "latex": "\\mathbf { P } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 837, + 1469, + 874, + 1469, + 874, + 1499, + 837, + 1499 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 355, + 1701, + 444, + 1701, + 444, + 1732, + 355, + 1732 + ], + "score": 0.88, + "latex": "\\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 974, + 1699, + 1001, + 1699, + 1001, + 1732, + 974, + 1732 + ], + "score": 0.88, + "latex": "\\mathbf { t } _ { i } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 298, + 952, + 336, + 952, + 336, + 981, + 298, + 981 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1182, + 862, + 1210, + 862, + 1210, + 893, + 1182, + 893 + ], + "score": 0.88, + "latex": "\\mathbf { t } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1103, + 862, + 1129, + 862, + 1129, + 890, + 1103, + 890 + ], + "score": 0.87, + "latex": "\\mathbf { t } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 487, + 1732, + 541, + 1732, + 541, + 1759, + 487, + 1759 + ], + "score": 0.86, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1699, + 1082, + 1699, + 1082, + 1736, + 1054, + 1736 + ], + "score": 0.86, + "latex": "\\mathbf { t } _ { j } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 318, + 1759, + 1107, + 1759, + 1107, + 1798, + 318, + 1798 + ], + "score": 0.81, + "latex": ": \\mathbf { \\Gamma } _ { d t } ^ { d } \\mathbf { t } _ { 1 } ^ { \\prime T } \\mathbf { t } _ { 2 } ^ { \\prime } | _ { t = 0 } = \\mathbf { t } _ { 1 } ^ { \\prime T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { t } _ { 2 } ^ { \\prime } = \\mathbf { t } _ { 1 } ^ { T } \\mathbf { J } _ { D _ { \\theta } } ^ { T } ( \\mathbf { x } ) H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { t } _ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 434, + 1797, + 481, + 1797, + 481, + 1826, + 434, + 1826 + ], + "score": 0.78, + "latex": "\\mathbf { J } _ { D _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1148, + 536, + 1148, + 536, + 1170, + 516, + 1170 + ], + "score": 0.75, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1795, + 548, + 1795, + 548, + 1826, + 494, + 1826 + ], + "score": 0.66, + "latex": "H _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1948, + 1260, + 1948, + 1260, + 1971, + 1238, + 1971 + ], + "score": 0.66, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1314, + 1948, + 1335, + 1948, + 1335, + 1974, + 1314, + 1974 + ], + "score": 0.63, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 761, + 820, + 780, + 820, + 780, + 841, + 761, + 841 + ], + "score": 0.62, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 609, + 895, + 631, + 895, + 631, + 917, + 609, + 917 + ], + "score": 0.61, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1106, + 728, + 1128, + 728, + 1128, + 752, + 1106, + 752 + ], + "score": 0.53, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 509, + 759, + 529, + 759, + 529, + 781, + 509, + 781 + ], + "score": 0.51, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1762, + 321, + 1762, + 321, + 1791, + 298, + 1791 + ], + "score": 0.47, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1258, + 788, + 1279, + 788, + 1279, + 812, + 1258, + 812 + ], + "score": 0.46, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1075, + 263, + 1097, + 263, + 1097, + 287, + 1075, + 287 + ], + "score": 0.46, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1734, + 317, + 1734, + 317, + 1759, + 296, + 1759 + ], + "score": 0.44, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 324, + 1443, + 344, + 1443, + 344, + 1466, + 324, + 1466 + ], + "score": 0.43, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1176, + 956, + 1197, + 956, + 1197, + 982, + 1176, + 982 + ], + "score": 0.38, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 759, + 1188, + 759, + 1188, + 782, + 1167, + 782 + ], + "score": 0.27, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 887, + 1109, + 938, + 1109, + 938, + 1148, + 887, + 1148 + ], + "score": 0.25, + "latex": "\\mathbf { \\Delta } _ { \\mathbf { \\tilde { P } } _ { G _ { \\theta } } ^ { T } } ^ { T }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 197.0, + 652.0, + 197.0, + 652.0, + 242.0, + 292.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1289.0, + 550.0, + 1289.0, + 550.0, + 1334.0, + 293.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 468.0, + 572.0, + 468.0, + 572.0, + 513.0, + 293.0, + 513.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": [ + 294.0, + 1345.0, + 1406.0, + 1345.0, + 1406.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1379.0, + 1403.0, + 1379.0, + 1403.0, + 1410.0, + 295.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 724.0, + 1405.0, + 724.0, + 1446.0, + 293.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1405.0, + 958.0, + 1405.0, + 958.0, + 1446.0, + 907.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1405.0, + 1406.0, + 1405.0, + 1406.0, + 1446.0, + 1143.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 323.0, + 1440.0, + 323.0, + 1471.0, + 295.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1440.0, + 961.0, + 1440.0, + 961.0, + 1471.0, + 345.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1440.0, + 1403.0, + 1440.0, + 1403.0, + 1471.0, + 1082.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1469.0, + 634.0, + 1469.0, + 634.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1469.0, + 836.0, + 1469.0, + 836.0, + 1503.0, + 811.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1469.0, + 1405.0, + 1469.0, + 1405.0, + 1503.0, + 875.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1495.0, + 1410.0, + 1495.0, + 1410.0, + 1534.0, + 291.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1511.0, + 298.0, + 1511.0, + 298.0, + 1598.0, + 283.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1511.0, + 1418.0, + 1511.0, + 1418.0, + 1598.0, + 611.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1644.0, + 294.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1636.0, + 1222.0, + 1636.0, + 1222.0, + 1675.0, + 294.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1636.0, + 1405.0, + 1636.0, + 1405.0, + 1675.0, + 1401.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 344.0, + 1668.0, + 344.0, + 1703.0, + 295.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1703.0, + 528.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1696.0, + 354.0, + 1696.0, + 354.0, + 1735.0, + 294.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1696.0, + 479.0, + 1696.0, + 479.0, + 1735.0, + 445.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1696.0, + 707.0, + 1696.0, + 707.0, + 1735.0, + 655.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1696.0, + 973.0, + 1696.0, + 973.0, + 1735.0, + 888.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1696.0, + 1053.0, + 1696.0, + 1053.0, + 1735.0, + 1002.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1696.0, + 1406.0, + 1696.0, + 1406.0, + 1735.0, + 1083.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1727.0, + 295.0, + 1727.0, + 295.0, + 1763.0, + 290.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1727.0, + 486.0, + 1727.0, + 486.0, + 1763.0, + 318.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1727.0, + 1407.0, + 1727.0, + 1407.0, + 1763.0, + 542.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1747.0, + 297.0, + 1747.0, + 297.0, + 1813.0, + 287.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1747.0, + 1416.0, + 1747.0, + 1416.0, + 1813.0, + 1108.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 433.0, + 1792.0, + 433.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1792.0, + 493.0, + 1792.0, + 493.0, + 1829.0, + 482.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1792.0, + 606.0, + 1792.0, + 606.0, + 1829.0, + 549.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1792.0, + 1410.0, + 1792.0, + 1410.0, + 1829.0, + 660.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 257.0, + 876.0, + 257.0, + 876.0, + 293.0, + 295.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 257.0, + 1074.0, + 257.0, + 1074.0, + 293.0, + 1009.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 257.0, + 1404.0, + 257.0, + 1404.0, + 293.0, + 1098.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 288.0, + 941.0, + 288.0, + 941.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 288.0, + 1403.0, + 288.0, + 1403.0, + 324.0, + 1007.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1406.0, + 319.0, + 1406.0, + 355.0, + 294.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 351.0, + 1407.0, + 351.0, + 1407.0, + 383.0, + 295.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 415.0, + 294.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 407.0, + 1188.0, + 407.0, + 1188.0, + 449.0, + 291.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1405.0, + 660.0, + 1405.0, + 697.0, + 294.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 691.0, + 1406.0, + 691.0, + 1406.0, + 727.0, + 295.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 722.0, + 1105.0, + 722.0, + 1105.0, + 759.0, + 294.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 722.0, + 1405.0, + 722.0, + 1405.0, + 759.0, + 1129.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 508.0, + 753.0, + 508.0, + 788.0, + 294.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 753.0, + 1166.0, + 753.0, + 1166.0, + 788.0, + 530.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 788.0, + 1189.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 780.0, + 378.0, + 780.0, + 378.0, + 819.0, + 294.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 780.0, + 828.0, + 780.0, + 828.0, + 819.0, + 743.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 780.0, + 1257.0, + 780.0, + 1257.0, + 819.0, + 918.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 780.0, + 1290.0, + 780.0, + 1290.0, + 819.0, + 1280.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 815.0, + 760.0, + 815.0, + 760.0, + 847.0, + 295.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 815.0, + 791.0, + 815.0, + 791.0, + 847.0, + 781.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 857.0, + 1102.0, + 857.0, + 1102.0, + 896.0, + 294.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 857.0, + 1181.0, + 857.0, + 1181.0, + 896.0, + 1130.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 857.0, + 1405.0, + 857.0, + 1405.0, + 896.0, + 1211.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 890.0, + 608.0, + 890.0, + 608.0, + 924.0, + 296.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 890.0, + 1403.0, + 890.0, + 1403.0, + 924.0, + 632.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 920.0, + 488.0, + 920.0, + 488.0, + 957.0, + 294.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 920.0, + 719.0, + 920.0, + 719.0, + 957.0, + 669.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 920.0, + 1405.0, + 920.0, + 1405.0, + 957.0, + 904.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 946.0, + 297.0, + 946.0, + 297.0, + 990.0, + 292.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 946.0, + 390.0, + 946.0, + 390.0, + 990.0, + 337.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 946.0, + 609.0, + 946.0, + 609.0, + 990.0, + 559.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 946.0, + 1175.0, + 946.0, + 1175.0, + 990.0, + 783.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 946.0, + 1410.0, + 946.0, + 1410.0, + 990.0, + 1198.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 979.0, + 1376.0, + 979.0, + 1376.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 526.0, + 1402.0, + 526.0, + 1402.0, + 559.0, + 296.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 556.0, + 1406.0, + 556.0, + 1406.0, + 591.0, + 292.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 590.0, + 1403.0, + 590.0, + 1403.0, + 619.0, + 296.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 619.0, + 829.0, + 619.0, + 829.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1077.0, + 1409.0, + 1077.0, + 1409.0, + 1117.0, + 291.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1098.0, + 886.0, + 1098.0, + 886.0, + 1162.0, + 285.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1098.0, + 1415.0, + 1098.0, + 1415.0, + 1162.0, + 1168.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1143.0, + 515.0, + 1143.0, + 515.0, + 1177.0, + 296.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1143.0, + 1408.0, + 1143.0, + 1408.0, + 1177.0, + 537.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1938.0, + 1237.0, + 1938.0, + 1237.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1938.0, + 1313.0, + 1938.0, + 1313.0, + 1978.0, + 1261.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1938.0, + 1402.0, + 1938.0, + 1402.0, + 1978.0, + 1336.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 439.0, + 1970.0, + 439.0, + 2016.0, + 294.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2016.0, + 704.0, + 2016.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1670, + 1405, + 1670, + 1405, + 2008, + 297, + 2008 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 443, + 1405, + 443, + 1405, + 641, + 297, + 641 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 725, + 1405, + 725, + 1405, + 881, + 297, + 881 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1396, + 1405, + 1396, + 1405, + 1644, + 297, + 1644 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1200, + 1405, + 1200, + 1405, + 1292, + 297, + 1292 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 198, + 1404, + 198, + 1404, + 295, + 298, + 295 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1060, + 1404, + 1060, + 1404, + 1155, + 298, + 1155 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 458, + 303, + 1239, + 303, + 1239, + 376, + 458, + 376 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 608, + 1160, + 1091, + 1160, + 1091, + 1197, + 608, + 1197 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 374, + 645, + 1316, + 645, + 1316, + 719, + 374, + 719 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 298, + 392, + 646, + 392, + 646, + 426, + 298, + 426 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 297, + 912, + 522, + 912, + 522, + 946, + 297, + 946 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 299, + 1331, + 644, + 1331, + 644, + 1369, + 299, + 1369 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 443, + 1004, + 1256, + 1004, + 1256, + 1051, + 443, + 1051 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 300, + 967, + 1400, + 967, + 1400, + 1001, + 300, + 1001 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1163, + 1399, + 1163, + 1399, + 1193, + 1353, + 1193 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1365, + 318, + 1401, + 318, + 1401, + 349, + 1365, + 349 + ], + "score": 0.861 + }, + { + "category_id": 9, + "poly": [ + 1366, + 663, + 1400, + 663, + 1400, + 692, + 1366, + 692 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2085, + 840, + 2085 + ], + "score": 0.804 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1008, + 1399, + 1008, + 1399, + 1037, + 1365, + 1037 + ], + "score": 0.798 + }, + { + "category_id": 13, + "poly": [ + 1181, + 576, + 1329, + 576, + 1329, + 613, + 1181, + 613 + ], + "score": 0.96, + "latex": "\\mathbf { x } = D _ { \\theta } ^ { - 1 } ( \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 714, + 786, + 791, + 786, + 791, + 821, + 714, + 821 + ], + "score": 0.92, + "latex": "\\mathbf { n } _ { F } \\mathbf { n } _ { G } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 479, + 1488, + 569, + 1488, + 569, + 1522, + 479, + 1522 + ], + "score": 0.92, + "latex": "[ - 1 , 1 ] ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 475, + 490, + 475, + 490, + 520, + 298, + 520 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\bar { \\mathcal { L } } ( \\mathbf { x } ) d \\mathbf { x } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 459, + 297, + 1240, + 297, + 1240, + 377, + 459, + 377 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { b } ( G _ { \\theta } ) = \\int _ { x \\in \\mathcal { M } _ { G _ { \\theta } } } \\left\\| \\mathbf { P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - \\mathbf { J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( \\mathbf { x } ) ) \\mathbf { J } _ { D _ { \\theta } } \\right) \\mathbf { P } _ { G _ { \\theta } } \\right\\| _ { F } ^ { s } d \\mathbf { x } ." + }, + { + "category_id": 14, + "poly": [ + 378, + 643, + 1320, + 643, + 1320, + 720, + 378, + 720 + ], + "score": 0.91, + "latex": "\\int _ { \\mathbf { x } \\in \\mathcal { M } _ { G _ { \\theta } } } \\mathcal { L } ( \\mathbf { x } ) d \\mathbf { x } = \\int _ { \\mathbf { y } \\in \\mathcal { M } _ { F } } \\mathcal { L } ( \\mathbf { x } ) \\left| \\operatorname* { d e t } \\left( \\mathbf { J } _ { D _ { \\theta } } ( \\mathbf { x } ) \\mathbf { P } _ { G _ { \\theta } } ( \\mathbf { x } ) + \\mathbf { n } _ { F } ( \\mathbf { y } ) \\mathbf { n } _ { G _ { \\theta } } ( \\mathbf { x } ) ^ { T } \\right) \\right| ^ { - 2 } d \\mathbf { y } ." + }, + { + "category_id": 13, + "poly": [ + 779, + 727, + 843, + 727, + 843, + 760, + 779, + 760 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1230, + 1345, + 1230, + 1345, + 1262, + 1288, + 1262 + ], + "score": 0.91, + "latex": "\\mathcal { L } ( \\boldsymbol { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 725, + 493, + 725, + 493, + 760, + 296, + 760 + ], + "score": 0.91, + "latex": "\\mathbf { J } _ { D _ { \\theta } } \\mathbf { P } _ { G _ { \\theta } } \\in \\mathbb { R } ^ { 3 \\times 3 }" + }, + { + "category_id": 13, + "poly": [ + 569, + 514, + 634, + 514, + 634, + 548, + 569, + 548 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 871, + 610, + 924, + 610, + 924, + 639, + 871, + 639 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 876, + 727, + 929, + 727, + 929, + 757, + 876, + 757 + ], + "score": 0.9, + "latex": "\\mathcal { M } _ { F }" + }, + { + "category_id": 13, + "poly": [ + 917, + 546, + 954, + 546, + 954, + 576, + 917, + 576 + ], + "score": 0.9, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 763, + 1261, + 800, + 1261, + 800, + 1291, + 763, + 1291 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 762, + 579, + 799, + 579, + 799, + 609, + 762, + 609 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 601, + 1231, + 631, + 1231, + 631, + 1260, + 601, + 1260 + ], + "score": 0.89, + "latex": "\\lambda _ { b }" + }, + { + "category_id": 13, + "poly": [ + 681, + 1231, + 713, + 1231, + 713, + 1260, + 681, + 1260 + ], + "score": 0.89, + "latex": "\\lambda _ { s }" + }, + { + "category_id": 13, + "poly": [ + 514, + 546, + 551, + 546, + 551, + 576, + 514, + 576 + ], + "score": 0.89, + "latex": "G _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 704, + 201, + 1159, + 201, + 1159, + 239, + 704, + 239 + ], + "score": 0.88, + "latex": "{ \\bf P } _ { G _ { \\theta } } ^ { T } \\left( H _ { G _ { \\theta } } - { \\bf J } _ { D _ { \\theta } } ^ { T } H _ { F } ( D _ { \\theta } ( { \\bf x } ) ) { \\bf J } _ { D _ { \\theta } } \\right) { \\bf P } _ { G _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 533, + 446, + 567, + 446, + 567, + 476, + 533, + 476 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1201, + 414, + 1201, + 414, + 1230, + 382, + 1230 + ], + "score": 0.88, + "latex": "\\lambda _ { c }" + }, + { + "category_id": 13, + "poly": [ + 554, + 1119, + 990, + 1119, + 990, + 1158, + 554, + 1158 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\dot { \\mathcal { L } } _ { c o n s t } ^ { { \\bf \\Delta } } ( D _ { \\theta } ) = \\frac { 1 } { n } \\sum _ { 1 = 1 } ^ { n } \\left. D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\right. } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 441, + 1003, + 1255, + 1003, + 1255, + 1058, + 441, + 1058 + ], + "score": 0.87, + "latex": "\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\lambda _ { s } \\mathcal { L } _ { s } ( G _ { \\theta } ) + \\lambda _ { b } \\mathcal { L } _ { b } ( G _ { \\theta } ) , \\quad \\mathrm { s . t . } \\forall 1 \\leq i \\leq n , \\ \\| D _ { \\theta } ( \\mathbf { t } _ { i } ) - \\mathbf { h } _ { i } \\| = 0" + }, + { + "category_id": 13, + "poly": [ + 521, + 394, + 555, + 394, + 555, + 424, + 521, + 424 + ], + "score": 0.87, + "latex": "\\mathcal { L } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 611, + 394, + 644, + 394, + 644, + 424, + 611, + 424 + ], + "score": 0.87, + "latex": "\\mathcal { L } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 437, + 446, + 470, + 446, + 470, + 476, + 437, + 476 + ], + "score": 0.86, + "latex": "\\mathcal { L } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 819, + 1129, + 819, + 1129, + 845, + 1104, + 845 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1376, + 819, + 1401, + 819, + 1401, + 845, + 1376, + 845 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 602, + 1160, + 1090, + 1160, + 1090, + 1197, + 602, + 1197 + ], + "score": 0.67, + "latex": "\\begin{array} { r } { \\boldsymbol { \\mathcal { L } } ( \\boldsymbol { \\theta } ) = \\mathcal { L } _ { s } ( G _ { \\theta } ) + \\lambda _ { b } \\mathcal { L } _ { b } ( G _ { \\theta } ) + \\lambda _ { c } \\mathcal { L } _ { c } ( D _ { \\theta } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 505, + 614, + 526, + 614, + 526, + 640, + 505, + 640 + ], + "score": 0.66, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 702, + 201, + 754, + 201, + 754, + 239, + 702, + 239 + ], + "score": 0.65, + "latex": "\\mathbf { P } _ { G _ { \\theta } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 418, + 1063, + 449, + 1063, + 449, + 1092, + 418, + 1092 + ], + "score": 0.52, + "latex": "\\lambda _ { b }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1063, + 404, + 1063, + 404, + 1092, + 374, + 1092 + ], + "score": 0.52, + "latex": "\\lambda _ { s }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1062, + 449, + 1062, + 449, + 1092, + 374, + 1092 + ], + "score": 0.47, + "latex": "\\lambda _ { s } , \\lambda _ { b }" + }, + { + "category_id": 14, + "poly": [ + 606, + 1161, + 1089, + 1161, + 1089, + 1197, + 606, + 1197 + ], + "score": 0.44, + "latex": "\\begin{array} { r } { \\boldsymbol { \\mathcal { L } } ( \\boldsymbol { \\theta } ) = \\mathcal { L } _ { s } ( G _ { \\theta } ) + \\lambda _ { b } \\mathcal { L } _ { b } ( G _ { \\theta } ) + \\lambda _ { c } \\mathcal { L } _ { c } ( D _ { \\theta } ) . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 387.0, + 520.0, + 387.0, + 520.0, + 433.0, + 293.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 387.0, + 610.0, + 387.0, + 610.0, + 433.0, + 556.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 907.0, + 525.0, + 907.0, + 525.0, + 953.0, + 292.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1330.0, + 645.0, + 1330.0, + 645.0, + 1374.0, + 293.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2058.0, + 859.0, + 2058.0, + 859.0, + 2089.0, + 836.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1672.0, + 1405.0, + 1672.0, + 1405.0, + 1707.0, + 297.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1703.0, + 1405.0, + 1703.0, + 1405.0, + 1737.0, + 294.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1733.0, + 1405.0, + 1733.0, + 1405.0, + 1768.0, + 294.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1766.0, + 1408.0, + 1766.0, + 1408.0, + 1797.0, + 295.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 1408.0, + 1792.0, + 1408.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1407.0, + 1820.0, + 1407.0, + 1861.0, + 292.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1889.0, + 295.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 1406.0, + 1885.0, + 1406.0, + 1920.0, + 295.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1406.0, + 1915.0, + 1406.0, + 1950.0, + 295.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1946.0, + 1407.0, + 1946.0, + 1407.0, + 1981.0, + 295.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1975.0, + 1407.0, + 1975.0, + 1407.0, + 2009.0, + 296.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 441.0, + 436.0, + 441.0, + 436.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 441.0, + 532.0, + 441.0, + 532.0, + 483.0, + 471.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 441.0, + 1407.0, + 441.0, + 1407.0, + 483.0, + 568.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 511.0, + 491.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 507.0, + 568.0, + 507.0, + 568.0, + 553.0, + 292.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 507.0, + 1410.0, + 507.0, + 1410.0, + 553.0, + 635.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 545.0, + 513.0, + 545.0, + 513.0, + 582.0, + 295.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 545.0, + 916.0, + 545.0, + 916.0, + 582.0, + 552.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 545.0, + 1405.0, + 545.0, + 1405.0, + 582.0, + 955.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 761.0, + 575.0, + 761.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 575.0, + 1180.0, + 575.0, + 1180.0, + 617.0, + 800.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 575.0, + 1406.0, + 575.0, + 1406.0, + 617.0, + 1330.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 607.0, + 504.0, + 607.0, + 504.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 607.0, + 870.0, + 607.0, + 870.0, + 646.0, + 527.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 607.0, + 938.0, + 607.0, + 938.0, + 646.0, + 925.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 476.0, + 399.0, + 476.0, + 399.0, + 525.5, + 294.0, + 525.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 719.0, + 295.0, + 719.0, + 295.0, + 764.0, + 291.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 719.0, + 778.0, + 719.0, + 778.0, + 764.0, + 494.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 719.0, + 875.0, + 719.0, + 875.0, + 764.0, + 844.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 719.0, + 1408.0, + 719.0, + 1408.0, + 764.0, + 930.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 758.0, + 1403.0, + 758.0, + 1403.0, + 791.0, + 295.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 786.0, + 713.0, + 786.0, + 713.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 786.0, + 1408.0, + 786.0, + 1408.0, + 823.0, + 792.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 818.0, + 1103.0, + 818.0, + 1103.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 818.0, + 1375.0, + 818.0, + 1375.0, + 848.0, + 1130.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 848.0, + 1402.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 846.0, + 1385.0, + 846.0, + 1385.0, + 883.0, + 294.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1405.0, + 1396.0, + 1405.0, + 1433.0, + 292.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1462.0, + 295.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1460.0, + 1403.0, + 1460.0, + 1403.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1487.0, + 478.0, + 1487.0, + 478.0, + 1524.0, + 292.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1487.0, + 1407.0, + 1487.0, + 1407.0, + 1524.0, + 570.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1519.0, + 1406.0, + 1519.0, + 1406.0, + 1553.0, + 294.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1545.0, + 1408.0, + 1545.0, + 1408.0, + 1584.0, + 292.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1577.0, + 1407.0, + 1577.0, + 1407.0, + 1615.0, + 292.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1613.0, + 976.0, + 1613.0, + 976.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 381.0, + 1199.0, + 381.0, + 1233.0, + 295.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1199.0, + 1403.0, + 1199.0, + 1403.0, + 1233.0, + 415.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 600.0, + 1228.0, + 600.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1228.0, + 680.0, + 1228.0, + 680.0, + 1265.0, + 632.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1228.0, + 1287.0, + 1228.0, + 1287.0, + 1265.0, + 714.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1265.0, + 1346.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1260.0, + 762.0, + 1260.0, + 762.0, + 1294.0, + 295.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1260.0, + 1364.0, + 1260.0, + 1364.0, + 1294.0, + 801.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 194.0, + 701.0, + 194.0, + 701.0, + 251.0, + 288.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 194.0, + 1413.0, + 194.0, + 1413.0, + 251.0, + 1160.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 232.0, + 1404.0, + 232.0, + 1404.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1047.0, + 263.0, + 1047.0, + 301.0, + 294.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 373.0, + 1059.0, + 373.0, + 1097.0, + 294.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1059.0, + 1406.0, + 1059.0, + 1406.0, + 1097.0, + 450.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 1404.0, + 1092.0, + 1404.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1110.0, + 553.0, + 1110.0, + 553.0, + 1167.0, + 288.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1110.0, + 1257.0, + 1110.0, + 1257.0, + 1167.0, + 991.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 964.0, + 1405.0, + 964.0, + 1405.0, + 1008.0, + 294.0, + 1008.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1763, + 1405, + 1763, + 1405, + 2008, + 298, + 2008 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1391, + 1405, + 1391, + 1405, + 1725, + 298, + 1725 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 296, + 205, + 1402, + 205, + 1402, + 1210, + 296, + 1210 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 297, + 1233, + 1407, + 1233, + 1407, + 1357, + 297, + 1357 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2084, + 840, + 2084 + ], + "score": 0.797 + }, + { + "category_id": 13, + "poly": [ + 683, + 1916, + 715, + 1916, + 715, + 1946, + 683, + 1946 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1244, + 1947, + 1274, + 1947, + 1274, + 1976, + 1244, + 1976 + ], + "score": 0.88, + "latex": "\\lambda _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1161, + 1947, + 1192, + 1947, + 1192, + 1976, + 1161, + 1976 + ], + "score": 0.88, + "latex": "\\lambda _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1795, + 1294, + 1795, + 1294, + 1824, + 1261, + 1824 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 450, + 1825, + 483, + 1825, + 483, + 1855, + 450, + 1855 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { b }" + }, + { + "category_id": 13, + "poly": [ + 1367, + 1855, + 1400, + 1855, + 1400, + 1885, + 1367, + 1885 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 386, + 1266, + 417, + 1266, + 417, + 1296, + 386, + 1296 + ], + "score": 0.86, + "latex": "\\mathbf { h } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 937, + 1267, + 963, + 1267, + 963, + 1296, + 937, + 1296 + ], + "score": 0.86, + "latex": "\\mathbf { t } _ { i }" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 222.0, + 977.0, + 222.0, + 977.0, + 238.0, + 939.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 256.0, + 1179.0, + 256.0, + 1179.0, + 274.0, + 1152.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 252.0, + 1277.0, + 252.0, + 1277.0, + 270.0, + 1247.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 252.0, + 1370.0, + 252.0, + 1370.0, + 271.0, + 1341.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 339.0, + 755.0, + 339.0, + 755.0, + 374.0, + 738.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 348.0, + 922.0, + 348.0, + 922.0, + 361.0, + 890.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 482.0, + 1178.0, + 482.0, + 1178.0, + 495.0, + 1154.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 484.0, + 1280.0, + 484.0, + 1280.0, + 498.0, + 1252.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 490.0, + 1363.0, + 490.0, + 1363.0, + 499.0, + 1345.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 499.0, + 367.0, + 499.0, + 367.0, + 531.0, + 318.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 495.0, + 501.0, + 495.0, + 501.0, + 537.0, + 446.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 499.0, + 702.0, + 499.0, + 702.0, + 534.0, + 659.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 499.0, + 870.0, + 499.0, + 870.0, + 534.0, + 824.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 499.0, + 1040.0, + 499.0, + 1040.0, + 534.0, + 996.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 498.0, + 1199.0, + 498.0, + 1199.0, + 535.0, + 1140.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 498.0, + 1296.0, + 498.0, + 1296.0, + 534.0, + 1228.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 500.0, + 1377.0, + 500.0, + 1377.0, + 530.0, + 1336.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 539.0, + 985.0, + 539.0, + 985.0, + 578.0, + 933.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 549.0, + 1125.0, + 549.0, + 1125.0, + 571.0, + 1105.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 544.0, + 1291.0, + 544.0, + 1291.0, + 573.0, + 1259.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 566.0, + 803.0, + 566.0, + 803.0, + 577.0, + 791.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 585.0, + 674.0, + 585.0, + 674.0, + 622.0, + 635.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 604.0, + 1187.0, + 604.0, + 1187.0, + 627.0, + 1157.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 605.0, + 1357.0, + 605.0, + 1357.0, + 647.0, + 1313.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 725.0, + 438.0, + 725.0, + 438.0, + 757.0, + 392.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 731.0, + 532.0, + 731.0, + 532.0, + 754.0, + 499.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 738.0, + 823.0, + 738.0, + 823.0, + 761.0, + 786.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 729.0, + 860.0, + 729.0, + 860.0, + 754.0, + 826.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 736.0, + 1012.0, + 736.0, + 1012.0, + 750.0, + 991.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 722.0, + 1128.0, + 722.0, + 1128.0, + 762.0, + 1088.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 728.0, + 1186.0, + 728.0, + 1186.0, + 756.0, + 1148.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 819.0, + 333.0, + 819.0, + 333.0, + 825.0, + 326.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 768.0, + 1053.0, + 768.0, + 1053.0, + 976.0, + 865.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 792.0, + 1411.0, + 792.0, + 1411.0, + 972.0, + 1228.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 850.0, + 484.0, + 850.0, + 484.0, + 960.0, + 410.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 876.0, + 859.0, + 876.0, + 859.0, + 948.0, + 791.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 865.0, + 1213.0, + 865.0, + 1213.0, + 944.0, + 1140.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 989.0, + 365.0, + 989.0, + 365.0, + 1014.0, + 334.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 995.0, + 461.0, + 995.0, + 461.0, + 1035.0, + 422.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 985.0, + 728.0, + 985.0, + 728.0, + 1020.0, + 684.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 990.0, + 810.0, + 990.0, + 810.0, + 1012.0, + 775.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 993.0, + 1090.0, + 993.0, + 1090.0, + 1012.0, + 1066.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 989.0, + 1201.0, + 989.0, + 1201.0, + 1029.0, + 1134.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1142.0, + 544.0, + 1142.0, + 544.0, + 1149.0, + 537.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1060.0, + 1389.0, + 1060.0, + 1389.0, + 1201.0, + 1254.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1173.0, + 517.0, + 1173.0, + 517.0, + 1192.0, + 491.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1174.0, + 712.0, + 1174.0, + 712.0, + 1192.0, + 683.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1177.0, + 1068.0, + 1177.0, + 1068.0, + 1191.0, + 1041.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1177.0, + 1255.0, + 1177.0, + 1255.0, + 1191.0, + 1230.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 541.5, + 835.0, + 541.5, + 835.0, + 577.0, + 781.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.25, + 570.0, + 885.25, + 570.0, + 885.25, + 604.0, + 862.25, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 573.0, + 1027.0, + 573.0, + 1027.0, + 597.0, + 1022.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 742.0, + 381.0, + 742.0, + 381.0, + 761.0, + 346.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 744.0, + 981.0, + 744.0, + 981.0, + 762.0, + 947.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.75, + 913.0, + 1097.75, + 913.0, + 1097.75, + 928.0, + 1091.75, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 989.5, + 434.0, + 989.5, + 434.0, + 1012.5, + 392.0, + 1012.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1001.5, + 826.0, + 1001.5, + 826.0, + 1028.5, + 805.0, + 1028.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1058.5, + 621.0, + 1058.5, + 621.0, + 1081.0, + 607.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.25, + 1084.5, + 1195.25, + 1084.5, + 1195.25, + 1185.5, + 1082.25, + 1185.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1091.0, + 1206.0, + 1091.0, + 1206.0, + 1113.0, + 1178.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1120.0, + 654.0, + 1120.0, + 654.0, + 1162.5, + 608.0, + 1162.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1233.0, + 1407.0, + 1233.0, + 1407.0, + 1269.0, + 295.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1262.0, + 385.0, + 1262.0, + 385.0, + 1300.0, + 292.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1262.0, + 936.0, + 1262.0, + 936.0, + 1300.0, + 418.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1262.0, + 1407.0, + 1262.0, + 1407.0, + 1300.0, + 964.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 1409.0, + 1296.0, + 1409.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 822.0, + 1324.0, + 822.0, + 1360.0, + 294.0, + 1360.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": [ + 293.0, + 1762.0, + 1405.0, + 1762.0, + 1405.0, + 1799.0, + 293.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1794.0, + 1260.0, + 1794.0, + 1260.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1794.0, + 1405.0, + 1794.0, + 1405.0, + 1828.0, + 1295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 449.0, + 1824.0, + 449.0, + 1858.0, + 295.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1858.0, + 484.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1366.0, + 1854.0, + 1366.0, + 1891.0, + 293.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1920.0, + 292.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 682.0, + 1915.0, + 682.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1915.0, + 1407.0, + 1915.0, + 1407.0, + 1949.0, + 716.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1160.0, + 1944.0, + 1160.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1944.0, + 1243.0, + 1944.0, + 1243.0, + 1980.0, + 1193.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1980.0, + 1275.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 960.0, + 1973.0, + 960.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1425.0, + 297.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 1406.0, + 1420.0, + 1406.0, + 1454.0, + 295.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 1405.0, + 1452.0, + 1405.0, + 1486.0, + 295.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1483.0, + 1406.0, + 1483.0, + 1406.0, + 1517.0, + 295.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1547.0, + 296.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1542.0, + 1407.0, + 1542.0, + 1407.0, + 1576.0, + 292.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1609.0, + 293.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1638.0, + 293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1633.0, + 1403.0, + 1633.0, + 1403.0, + 1668.0, + 295.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1700.0, + 293.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 779.0, + 1695.0, + 779.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1704, + 1404, + 1704, + 1404, + 1858, + 299, + 1858 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1101, + 1403, + 1101, + 1403, + 1316, + 297, + 1316 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1328, + 1403, + 1328, + 1403, + 1483, + 299, + 1483 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 748, + 938, + 748, + 938, + 1082, + 298, + 1082 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1500, + 1402, + 1500, + 1402, + 1593, + 300, + 1593 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 336, + 190, + 1360, + 190, + 1360, + 459, + 336, + 459 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 296, + 473, + 1407, + 473, + 1407, + 627, + 296, + 627 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 957, + 973, + 1404, + 973, + 1404, + 1066, + 957, + 1066 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 298, + 1876, + 1399, + 1876, + 1399, + 1969, + 298, + 1969 + ], + "score": 0.96 + }, + { + "category_id": 3, + "poly": [ + 979, + 767, + 1377, + 767, + 1377, + 955, + 979, + 955 + ], + "score": 0.953 + }, + { + "category_id": 0, + "poly": [ + 298, + 679, + 938, + 679, + 938, + 717, + 298, + 717 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 298, + 1635, + 509, + 1635, + 509, + 1673, + 298, + 1673 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 837, + 2062, + 865, + 2062, + 865, + 2085, + 837, + 2085 + ], + "score": 0.853 + }, + { + "category_id": 15, + "poly": [ + 342.0, + 194.0, + 472.0, + 194.0, + 472.0, + 232.0, + 342.0, + 232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 193.0, + 611.0, + 193.0, + 611.0, + 230.0, + 553.0, + 230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 192.0, + 815.0, + 192.0, + 815.0, + 235.0, + 705.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 193.0, + 1203.0, + 193.0, + 1203.0, + 230.0, + 871.0, + 230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 193.0, + 1319.0, + 193.0, + 1319.0, + 231.0, + 1252.0, + 231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 241.0, + 428.0, + 241.0, + 428.0, + 263.0, + 397.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 237.0, + 565.0, + 237.0, + 565.0, + 277.0, + 526.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 236.0, + 747.0, + 236.0, + 747.0, + 283.0, + 696.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 238.0, + 925.0, + 238.0, + 925.0, + 281.0, + 881.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 241.0, + 1096.0, + 241.0, + 1096.0, + 280.0, + 1054.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 271.0, + 807.0, + 271.0, + 807.0, + 303.0, + 770.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 278.0, + 981.0, + 278.0, + 981.0, + 301.0, + 957.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 278.0, + 1321.0, + 278.0, + 1321.0, + 300.0, + 1303.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 432.0, + 430.0, + 432.0, + 430.0, + 456.0, + 393.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 432.0, + 739.0, + 432.0, + 739.0, + 456.0, + 700.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 434.0, + 918.0, + 434.0, + 918.0, + 455.0, + 883.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 281.0, + 1144.0, + 281.0, + 1144.0, + 300.0, + 1141.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1405.0, + 475.0, + 1405.0, + 508.0, + 295.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 502.0, + 1406.0, + 502.0, + 1406.0, + 541.0, + 291.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 531.0, + 1407.0, + 531.0, + 1407.0, + 571.0, + 293.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 563.0, + 1407.0, + 563.0, + 1407.0, + 599.0, + 293.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 595.0, + 773.0, + 595.0, + 773.0, + 632.0, + 293.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1006.0, + 955.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1000.0, + 1406.0, + 1000.0, + 1406.0, + 1040.0, + 954.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1033.0, + 1211.0, + 1033.0, + 1211.0, + 1069.0, + 955.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 768.0, + 1087.0, + 768.0, + 1087.0, + 808.0, + 986.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 768.0, + 1233.0, + 768.0, + 1233.0, + 808.0, + 1125.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 767.0, + 1375.0, + 767.0, + 1375.0, + 809.0, + 1277.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 806.0, + 1146.0, + 806.0, + 1146.0, + 817.0, + 1132.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 807.0, + 1167.0, + 807.0, + 1167.0, + 815.0, + 1160.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 847.0, + 1139.0, + 847.0, + 1139.0, + 912.0, + 1129.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 863.0, + 1229.0, + 863.0, + 1229.0, + 898.0, + 1207.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 866.0, + 1371.0, + 866.0, + 1371.0, + 893.0, + 1357.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 675.0, + 945.0, + 675.0, + 945.0, + 726.0, + 290.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1628.0, + 515.0, + 1628.0, + 515.0, + 1680.0, + 289.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1703.0, + 1404.0, + 1703.0, + 1404.0, + 1739.0, + 294.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1736.0, + 1404.0, + 1736.0, + 1404.0, + 1769.0, + 295.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 1406.0, + 1765.0, + 1406.0, + 1802.0, + 294.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 1406.0, + 1794.0, + 1406.0, + 1831.0, + 294.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1829.0, + 875.0, + 1829.0, + 875.0, + 1862.0, + 294.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1100.0, + 1404.0, + 1100.0, + 1404.0, + 1137.0, + 294.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 1405.0, + 1133.0, + 1405.0, + 1167.0, + 293.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1159.0, + 1405.0, + 1159.0, + 1405.0, + 1199.0, + 294.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1404.0, + 1194.0, + 1404.0, + 1228.0, + 295.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1260.0, + 292.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1254.0, + 1405.0, + 1254.0, + 1405.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1286.0, + 1407.0, + 1286.0, + 1407.0, + 1320.0, + 295.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1360.0, + 1404.0, + 1360.0, + 1404.0, + 1394.0, + 297.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1427.0, + 294.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 1404.0, + 1421.0, + 1404.0, + 1455.0, + 295.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 1403.0, + 1451.0, + 1403.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 745.0, + 941.0, + 745.0, + 941.0, + 784.0, + 294.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 778.0, + 940.0, + 778.0, + 940.0, + 812.0, + 293.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 941.0, + 809.0, + 941.0, + 845.0, + 294.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 938.0, + 840.0, + 938.0, + 870.0, + 294.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 940.0, + 870.0, + 940.0, + 903.0, + 295.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 899.0, + 938.0, + 899.0, + 938.0, + 934.0, + 294.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 929.0, + 942.0, + 929.0, + 942.0, + 964.0, + 293.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 960.0, + 941.0, + 960.0, + 941.0, + 992.0, + 295.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 938.0, + 991.0, + 938.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 940.0, + 1021.0, + 940.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 940.0, + 1049.0, + 940.0, + 1086.0, + 294.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1536.0, + 294.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1532.0, + 1404.0, + 1532.0, + 1404.0, + 1566.0, + 296.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1562.0, + 1078.0, + 1562.0, + 1078.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1877.0, + 1404.0, + 1877.0, + 1404.0, + 1910.0, + 296.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1907.0, + 1404.0, + 1907.0, + 1404.0, + 1941.0, + 294.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1935.0, + 996.0, + 1935.0, + 996.0, + 1973.0, + 293.0, + 1973.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 0, + "poly": [ + 299, + 200, + 456, + 200, + 456, + 235, + 299, + 235 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 835, + 2061, + 864, + 2061, + 864, + 2086, + 835, + 2086 + ], + "score": 0.818 + }, + { + "category_id": 1, + "poly": [ + 292, + 172, + 1409, + 172, + 1409, + 2037, + 292, + 2037 + ], + "score": 0.613 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 196.0, + 460.0, + 196.0, + 460.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2098.0, + 831.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 195.0, + 463.0, + 195.0, + 463.0, + 241.0, + 293.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 251.0, + 1411.0, + 251.0, + 1411.0, + 290.0, + 306.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 278.0, + 1351.0, + 278.0, + 1351.0, + 323.0, + 350.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 333.0, + 1407.0, + 333.0, + 1407.0, + 372.0, + 306.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 366.0, + 1013.0, + 366.0, + 1013.0, + 398.0, + 354.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 413.0, + 1409.0, + 413.0, + 1409.0, + 452.0, + 308.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 445.0, + 1197.0, + 445.0, + 1197.0, + 484.0, + 352.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 495.0, + 1407.0, + 495.0, + 1407.0, + 533.0, + 306.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 525.0, + 1409.0, + 525.0, + 1409.0, + 564.0, + 352.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 556.0, + 526.0, + 556.0, + 526.0, + 595.0, + 354.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 603.0, + 1409.0, + 603.0, + 1409.0, + 650.0, + 304.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 636.0, + 842.0, + 636.0, + 842.0, + 675.0, + 352.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 689.0, + 1353.0, + 689.0, + 1353.0, + 728.0, + 308.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 740.0, + 1411.0, + 740.0, + 1411.0, + 779.0, + 308.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 775.0, + 380.0, + 775.0, + 380.0, + 804.0, + 354.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 822.0, + 1169.0, + 822.0, + 1169.0, + 861.0, + 308.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 873.0, + 1409.0, + 873.0, + 1409.0, + 912.0, + 308.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 906.0, + 1309.0, + 906.0, + 1309.0, + 939.0, + 354.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1407.0, + 955.0, + 1407.0, + 994.0, + 294.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 986.0, + 899.0, + 986.0, + 899.0, + 1025.0, + 354.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1039.0, + 1405.0, + 1039.0, + 1405.0, + 1072.0, + 296.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1066.0, + 754.0, + 1066.0, + 754.0, + 1109.0, + 348.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1119.0, + 1407.0, + 1119.0, + 1407.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1143.0, + 1413.0, + 1143.0, + 1413.0, + 1193.0, + 348.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1180.0, + 716.0, + 1180.0, + 716.0, + 1213.0, + 352.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1227.0, + 1409.0, + 1227.0, + 1409.0, + 1270.0, + 292.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1260.0, + 1407.0, + 1260.0, + 1407.0, + 1299.0, + 352.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1295.0, + 1057.0, + 1295.0, + 1057.0, + 1328.0, + 356.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1342.0, + 1407.0, + 1342.0, + 1407.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1371.0, + 881.0, + 1371.0, + 881.0, + 1409.0, + 352.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1424.0, + 1407.0, + 1424.0, + 1407.0, + 1463.0, + 294.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1455.0, + 937.0, + 1455.0, + 937.0, + 1493.0, + 354.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1504.0, + 1319.0, + 1504.0, + 1319.0, + 1543.0, + 294.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 1407.0, + 1557.0, + 1407.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1590.0, + 966.0, + 1590.0, + 966.0, + 1624.0, + 352.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 1405.0, + 1639.0, + 1405.0, + 1678.0, + 294.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1667.0, + 1407.0, + 1667.0, + 1407.0, + 1706.0, + 352.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1702.0, + 384.0, + 1702.0, + 384.0, + 1735.0, + 352.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1753.0, + 1403.0, + 1753.0, + 1403.0, + 1786.0, + 296.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1778.0, + 1407.0, + 1778.0, + 1407.0, + 1821.0, + 352.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1813.0, + 592.0, + 1813.0, + 592.0, + 1845.0, + 356.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1858.0, + 1409.0, + 1858.0, + 1409.0, + 1905.0, + 294.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1893.0, + 1143.0, + 1893.0, + 1143.0, + 1931.0, + 352.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 1407.0, + 1944.0, + 1407.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1974.0, + 1129.0, + 1974.0, + 1129.0, + 2013.0, + 352.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.822 + }, + { + "category_id": 1, + "poly": [ + 293, + 133, + 1410, + 133, + 1410, + 2022, + 293, + 2022 + ], + "score": 0.62 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 199.0, + 1414.0, + 199.0, + 1414.0, + 245.0, + 294.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 230.0, + 1409.0, + 230.0, + 1409.0, + 274.0, + 351.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 263.0, + 454.0, + 263.0, + 454.0, + 298.0, + 355.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 315.0, + 1405.0, + 315.0, + 1405.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 348.0, + 746.0, + 348.0, + 746.0, + 381.0, + 353.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 402.0, + 1405.0, + 402.0, + 1405.0, + 435.0, + 296.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 429.0, + 1141.0, + 429.0, + 1141.0, + 466.0, + 351.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 485.0, + 1405.0, + 485.0, + 1405.0, + 518.0, + 298.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 512.0, + 741.0, + 512.0, + 741.0, + 549.0, + 351.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 601.0, + 296.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 597.0, + 1071.0, + 597.0, + 1071.0, + 634.0, + 351.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 649.0, + 1409.0, + 649.0, + 1409.0, + 688.0, + 296.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 673.0, + 1411.0, + 673.0, + 1411.0, + 723.0, + 349.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 711.0, + 452.0, + 711.0, + 452.0, + 746.0, + 353.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 763.0, + 1407.0, + 763.0, + 1407.0, + 802.0, + 294.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 794.0, + 1409.0, + 794.0, + 1409.0, + 833.0, + 353.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 823.0, + 638.0, + 823.0, + 638.0, + 860.0, + 351.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 879.0, + 1405.0, + 879.0, + 1405.0, + 912.0, + 298.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 910.0, + 1403.0, + 910.0, + 1403.0, + 943.0, + 353.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 937.0, + 1312.0, + 937.0, + 1312.0, + 976.0, + 353.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 984.0, + 1409.0, + 984.0, + 1409.0, + 1032.0, + 290.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1019.0, + 1407.0, + 1019.0, + 1407.0, + 1059.0, + 353.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1051.0, + 1021.0, + 1051.0, + 1021.0, + 1090.0, + 353.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1107.0, + 1403.0, + 1107.0, + 1403.0, + 1140.0, + 296.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1133.0, + 1010.0, + 1133.0, + 1010.0, + 1173.0, + 353.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1407.0, + 1185.0, + 1407.0, + 1225.0, + 294.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1220.0, + 963.0, + 1220.0, + 963.0, + 1254.0, + 355.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1270.0, + 1407.0, + 1270.0, + 1407.0, + 1310.0, + 296.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1301.0, + 1255.0, + 1301.0, + 1255.0, + 1341.0, + 353.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1353.0, + 1407.0, + 1353.0, + 1407.0, + 1392.0, + 296.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1386.0, + 1202.0, + 1386.0, + 1202.0, + 1419.0, + 353.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1438.0, + 1405.0, + 1438.0, + 1405.0, + 1471.0, + 298.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1465.0, + 1409.0, + 1465.0, + 1409.0, + 1506.0, + 351.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1500.0, + 539.0, + 1500.0, + 539.0, + 1533.0, + 355.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1550.0, + 1407.0, + 1550.0, + 1407.0, + 1589.0, + 296.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1583.0, + 1234.0, + 1583.0, + 1234.0, + 1616.0, + 353.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1633.0, + 1407.0, + 1633.0, + 1407.0, + 1672.0, + 294.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1664.0, + 1247.0, + 1664.0, + 1247.0, + 1703.0, + 355.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1716.0, + 1411.0, + 1716.0, + 1411.0, + 1755.0, + 294.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1751.0, + 1126.0, + 1751.0, + 1126.0, + 1784.0, + 353.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1803.0, + 1407.0, + 1803.0, + 1407.0, + 1836.0, + 298.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1832.0, + 1409.0, + 1832.0, + 1409.0, + 1869.0, + 351.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1859.0, + 439.0, + 1859.0, + 439.0, + 1900.0, + 351.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1409.0, + 1912.0, + 1409.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1939.0, + 1411.0, + 1939.0, + 1411.0, + 1989.0, + 349.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1975.0, + 452.0, + 1975.0, + 452.0, + 2010.0, + 355.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 290, + 202, + 1408, + 202, + 1408, + 267, + 290, + 267 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 296, + 1057, + 1405, + 1057, + 1405, + 1123, + 296, + 1123 + ], + "score": 0.561 + }, + { + "category_id": 1, + "poly": [ + 297, + 1142, + 1400, + 1142, + 1400, + 1208, + 297, + 1208 + ], + "score": 0.55 + }, + { + "category_id": 1, + "poly": [ + 299, + 1228, + 1397, + 1228, + 1397, + 1292, + 299, + 1292 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 295, + 972, + 1405, + 972, + 1405, + 1037, + 295, + 1037 + ], + "score": 0.53 + }, + { + "category_id": 1, + "poly": [ + 295, + 1313, + 1401, + 1313, + 1401, + 1408, + 295, + 1408 + ], + "score": 0.517 + }, + { + "category_id": 1, + "poly": [ + 297, + 1428, + 1401, + 1428, + 1401, + 1492, + 297, + 1492 + ], + "score": 0.511 + }, + { + "category_id": 1, + "poly": [ + 293, + 888, + 1401, + 888, + 1401, + 952, + 293, + 952 + ], + "score": 0.508 + }, + { + "category_id": 1, + "poly": [ + 295, + 486, + 1401, + 486, + 1401, + 551, + 295, + 551 + ], + "score": 0.506 + }, + { + "category_id": 1, + "poly": [ + 295, + 572, + 1401, + 572, + 1401, + 667, + 295, + 667 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 296, + 1512, + 1402, + 1512, + 1402, + 1577, + 296, + 1577 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 294, + 802, + 1403, + 802, + 1403, + 868, + 294, + 868 + ], + "score": 0.488 + }, + { + "category_id": 1, + "poly": [ + 297, + 286, + 1401, + 286, + 1401, + 380, + 297, + 380 + ], + "score": 0.481 + }, + { + "category_id": 1, + "poly": [ + 297, + 687, + 1403, + 687, + 1403, + 782, + 297, + 782 + ], + "score": 0.478 + }, + { + "category_id": 1, + "poly": [ + 295, + 401, + 1400, + 401, + 1400, + 466, + 295, + 466 + ], + "score": 0.475 + }, + { + "category_id": 1, + "poly": [ + 296, + 1743, + 1404, + 1743, + 1404, + 1838, + 296, + 1838 + ], + "score": 0.439 + }, + { + "category_id": 1, + "poly": [ + 296, + 1597, + 1406, + 1597, + 1406, + 1723, + 296, + 1723 + ], + "score": 0.428 + }, + { + "category_id": 1, + "poly": [ + 296, + 1859, + 1400, + 1859, + 1400, + 1952, + 296, + 1952 + ], + "score": 0.422 + }, + { + "category_id": 1, + "poly": [ + 290, + 1975, + 1370, + 1975, + 1370, + 2009, + 290, + 2009 + ], + "score": 0.42 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.165 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 202.0, + 1409.0, + 202.0, + 1409.0, + 238.0, + 296.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 232.0, + 1350.0, + 232.0, + 1350.0, + 268.0, + 354.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1058.0, + 1403.0, + 1058.0, + 1403.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1089.0, + 1350.0, + 1089.0, + 1350.0, + 1124.0, + 354.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1141.0, + 1405.0, + 1141.0, + 1405.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1174.0, + 1376.0, + 1174.0, + 1376.0, + 1210.0, + 355.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1228.0, + 1403.0, + 1228.0, + 1403.0, + 1264.0, + 295.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1259.0, + 1251.0, + 1259.0, + 1251.0, + 1292.0, + 354.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 1408.0, + 971.0, + 1408.0, + 1011.0, + 295.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1003.0, + 844.0, + 1003.0, + 844.0, + 1038.0, + 352.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1313.0, + 1405.0, + 1313.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1343.0, + 1406.0, + 1343.0, + 1406.0, + 1381.0, + 352.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1373.0, + 950.0, + 1373.0, + 950.0, + 1410.0, + 354.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1464.0, + 296.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1457.0, + 798.0, + 1457.0, + 798.0, + 1493.0, + 354.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 1404.0, + 884.0, + 1404.0, + 928.0, + 295.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 920.0, + 1014.0, + 920.0, + 1014.0, + 952.0, + 356.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 486.0, + 1404.0, + 486.0, + 1404.0, + 522.0, + 294.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 516.0, + 704.0, + 516.0, + 704.0, + 552.0, + 353.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 573.0, + 1405.0, + 573.0, + 1405.0, + 607.0, + 297.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 602.0, + 1406.0, + 602.0, + 1406.0, + 640.0, + 352.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 632.0, + 1261.0, + 632.0, + 1261.0, + 673.0, + 354.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1406.0, + 1510.0, + 1406.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1545.0, + 675.0, + 1545.0, + 675.0, + 1577.0, + 353.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 803.0, + 1405.0, + 803.0, + 1405.0, + 839.0, + 297.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 834.0, + 1408.0, + 834.0, + 1408.0, + 870.0, + 355.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 288.0, + 1405.0, + 288.0, + 1405.0, + 322.0, + 296.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 316.0, + 1407.0, + 316.0, + 1407.0, + 354.0, + 354.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 346.0, + 709.0, + 346.0, + 709.0, + 384.0, + 354.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 686.0, + 1405.0, + 686.0, + 1405.0, + 724.0, + 295.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 720.0, + 1404.0, + 720.0, + 1404.0, + 754.0, + 355.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 750.0, + 667.0, + 750.0, + 667.0, + 781.0, + 355.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 403.0, + 1404.0, + 403.0, + 1404.0, + 439.0, + 296.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 432.0, + 1247.0, + 432.0, + 1247.0, + 467.0, + 354.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1407.0, + 1742.0, + 1407.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1775.0, + 1405.0, + 1775.0, + 1405.0, + 1810.0, + 353.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1805.0, + 698.0, + 1805.0, + 698.0, + 1839.0, + 354.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 1412.0, + 1596.0, + 1412.0, + 1636.0, + 294.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1628.0, + 1408.0, + 1628.0, + 1408.0, + 1665.0, + 353.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1658.0, + 1409.0, + 1658.0, + 1409.0, + 1697.0, + 352.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1687.0, + 510.0, + 1687.0, + 510.0, + 1725.0, + 354.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1896.0, + 295.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1925.0, + 354.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1921.0, + 642.0, + 1921.0, + 642.0, + 1951.0, + 356.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1374.0, + 1970.0, + 1374.0, + 2013.0, + 293.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 835, + 2061, + 865, + 2061, + 865, + 2086, + 835, + 2086 + ], + "score": 0.812 + }, + { + "category_id": 1, + "poly": [ + 293, + 118, + 1438, + 118, + 1438, + 2019, + 293, + 2019 + ], + "score": 0.648 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1404.0, + 203.0, + 1404.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 233.0, + 1115.0, + 233.0, + 1115.0, + 266.0, + 354.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 287.0, + 1406.0, + 287.0, + 1406.0, + 320.0, + 296.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 314.0, + 1406.0, + 314.0, + 1406.0, + 354.0, + 354.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 345.0, + 1140.0, + 345.0, + 1140.0, + 385.0, + 354.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 397.0, + 1410.0, + 397.0, + 1410.0, + 437.0, + 296.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 429.0, + 1382.0, + 429.0, + 1382.0, + 468.0, + 354.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 481.0, + 1410.0, + 481.0, + 1410.0, + 520.0, + 294.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 514.0, + 564.0, + 514.0, + 564.0, + 547.0, + 356.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 564.0, + 1410.0, + 564.0, + 1410.0, + 604.0, + 296.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 595.0, + 1402.0, + 595.0, + 1402.0, + 629.0, + 356.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 629.0, + 1267.0, + 629.0, + 1267.0, + 662.0, + 356.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 675.0, + 1410.0, + 675.0, + 1410.0, + 720.0, + 292.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 710.0, + 1322.0, + 710.0, + 1322.0, + 750.0, + 352.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 760.0, + 1410.0, + 760.0, + 1410.0, + 800.0, + 296.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 793.0, + 1408.0, + 793.0, + 1408.0, + 827.0, + 354.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 823.0, + 466.0, + 823.0, + 466.0, + 858.0, + 354.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 875.0, + 1408.0, + 875.0, + 1408.0, + 914.0, + 294.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 906.0, + 1197.0, + 906.0, + 1197.0, + 946.0, + 352.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 958.0, + 1410.0, + 958.0, + 1410.0, + 998.0, + 294.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 987.0, + 724.0, + 987.0, + 724.0, + 1025.0, + 347.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1041.0, + 1408.0, + 1041.0, + 1408.0, + 1081.0, + 294.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1073.0, + 1017.0, + 1073.0, + 1017.0, + 1112.0, + 354.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 1406.0, + 1125.0, + 1406.0, + 1164.0, + 294.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1154.0, + 792.0, + 1154.0, + 792.0, + 1194.0, + 352.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 1410.0, + 1208.0, + 1410.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1235.0, + 890.0, + 1235.0, + 890.0, + 1275.0, + 352.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1294.0, + 1406.0, + 1294.0, + 1406.0, + 1327.0, + 298.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1323.0, + 1410.0, + 1323.0, + 1410.0, + 1362.0, + 354.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1408.0, + 1375.0, + 1408.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1400.0, + 1410.0, + 1400.0, + 1410.0, + 1448.0, + 350.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1437.0, + 992.0, + 1437.0, + 992.0, + 1471.0, + 356.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1408.0, + 1487.0, + 1408.0, + 1527.0, + 294.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1519.0, + 1408.0, + 1519.0, + 1408.0, + 1558.0, + 356.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1552.0, + 1361.0, + 1552.0, + 1361.0, + 1585.0, + 356.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 1410.0, + 1602.0, + 1410.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1667.0, + 356.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1665.0, + 650.0, + 1665.0, + 650.0, + 1698.0, + 356.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 1404.0, + 1715.0, + 1404.0, + 1754.0, + 296.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1746.0, + 1171.0, + 1746.0, + 1171.0, + 1786.0, + 354.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1798.0, + 1408.0, + 1798.0, + 1408.0, + 1838.0, + 296.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1831.0, + 675.0, + 1831.0, + 675.0, + 1865.0, + 354.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 597.0, + 1881.0, + 597.0, + 1921.0, + 294.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1875.0, + 1412.0, + 1875.0, + 1412.0, + 1923.0, + 667.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1909.0, + 738.0, + 1909.0, + 738.0, + 1952.0, + 347.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1911.0, + 990.0, + 1911.0, + 990.0, + 1952.0, + 767.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1915.0, + 1404.0, + 1915.0, + 1404.0, + 1948.0, + 1046.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1944.0, + 1441.0, + 1944.0, + 1441.0, + 1984.0, + 354.0, + 1984.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 291, + 198, + 1410, + 198, + 1410, + 942, + 291, + 942 + ], + "score": 0.696 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.215 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 201.0, + 1405.0, + 201.0, + 1405.0, + 242.0, + 294.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 234.0, + 690.0, + 234.0, + 690.0, + 271.0, + 353.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 285.0, + 1408.0, + 285.0, + 1408.0, + 324.0, + 294.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 316.0, + 1409.0, + 316.0, + 1409.0, + 355.0, + 353.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 346.0, + 452.0, + 346.0, + 452.0, + 380.0, + 351.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 395.0, + 1408.0, + 395.0, + 1408.0, + 438.0, + 293.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 468.0, + 353.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 458.0, + 1060.0, + 458.0, + 1060.0, + 497.0, + 353.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 512.0, + 1407.0, + 512.0, + 1407.0, + 551.0, + 294.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 542.0, + 1144.0, + 542.0, + 1144.0, + 581.0, + 353.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 1405.0, + 593.0, + 1405.0, + 635.0, + 294.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 627.0, + 1013.0, + 627.0, + 1013.0, + 662.0, + 354.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 679.0, + 1404.0, + 679.0, + 1404.0, + 714.0, + 297.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 706.0, + 1409.0, + 706.0, + 1409.0, + 747.0, + 352.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 740.0, + 1087.0, + 740.0, + 1087.0, + 775.0, + 351.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1405.0, + 789.0, + 1405.0, + 831.0, + 294.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 822.0, + 895.0, + 822.0, + 895.0, + 856.0, + 353.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 873.0, + 1405.0, + 873.0, + 1405.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 907.0, + 805.0, + 907.0, + 805.0, + 939.0, + 354.0, + 939.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rJeU_1SFvr/rJeU_1SFvr.md b/parse/train/rJeU_1SFvr/rJeU_1SFvr.md new file mode 100644 index 0000000000000000000000000000000000000000..d6304df1207a359bf69132f1d2fcc0b3b3b25f30 --- /dev/null +++ b/parse/train/rJeU_1SFvr/rJeU_1SFvr.md @@ -0,0 +1,518 @@ +# LOGAN: LATENT OPTIMISATION FOR GENERATIVEADVERSARIAL NETWORKS + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Training generative adversarial networks requires balancing of delicate adversarial dynamics. Even with careful tuning, training may diverge or end up in a bad equilibrium with dropped modes. In this work, we introduce a new form of latent optimisation inspired by the CS-GAN and show that it improves adversarial dynamics by enhancing interactions between the discriminator and the generator. We develop supporting theoretical analysis from the perspectives of differentiable games and stochastic approximation. Our experiments demonstrate that latent optimisation can significantly improve GAN training, obtaining state-of-the-art performance for the ImageNet $1 2 8 \times 1 2 8 )$ dataset. Our model achieves an Inception Score (IS) of 148 and an Frechet Inception Distance (FID) of ´ 3.4, an improvement of $1 7 \%$ and $3 2 \%$ in IS and FID respectively, compared with the baseline BigGAN-deep model with the same architecture and number of parameters. + +# 1 INTRODUCTION + +Generative Adversarial Nets (GANs) are implicit generative models that can be trained to match a given data distribution. GANs were originally proposed and demonstrated for images by Goodfellow et al. (2014). As the field of generative modelling has advanced, GANs have remained at the frontier, generating high-fidelity images at large scale (Brock et al., 2018). However, despite growing insights into the dynamics of GAN training, most recent advances in large-scale image generation come from architectural improvements (Radford et al., 2015; Zhang et al., 2019), or regularisation focusing on particular parts of the model (Miyato et al., 2018; Miyato & Koyama, 2018). Inspired by the compressed sensing GAN (CS-GAN; Wu et al., 2019), we further exploit the benefit of latent optimisation in adversarial games using natural gradient descent to optimise the latent variable $z$ at each step of training, presenting a scalable and easy to implement approach to improve the dynamical interaction between the discriminator and the generator. For clarity, we unify these approaches as latent optimised GANs (LOGAN). + +To summarise our contributions: + +1. We present a novel analysis of latent optimisation in GANs from the perspective of differentiable games and stochastic approximation (Balduzzi et al., 2018; Heusel et al., 2017), arguing that latent optimisation can improve the dynamics of adversarial training. 2. Motivated by this analysis, we improve latent optimisation by taking advantage of efficient second-order updates. 3. Our algorithm improves the state-of-the-art BigGAN-deep model (Brock et al., 2018) by a significant margin, without introducing any architectural change or additional parameters, resulting in higher quality images and more diverse samples (Figure 1 and 2). + +# 2 BACKGROUND + +# 2.1 NOTATION + +We use $\theta _ { D }$ and $\theta _ { G }$ to denote the vectors representing parameters of the generator and discriminator. We use $x$ for images, and $z$ for the latent source generating an image. The prime 0 is used to denote + +![](images/940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg) +Figure 1: Samples from BigGAN-deep (a) and LOGAN (b) with similarly high IS. Samples from the two panels were drawn from truncation levels corresponding to points C and D in figure $^ { 3 \mathrm { ~ b ~ } }$ respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9) + +![](images/86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg) +Figure 2: Samples from BigGAN-deep (a) and LOGAN (b) with similarly low FID. Samples from the two panels were drawn from truncation levels corresponding to points A and $\mathbf { B }$ in figure $^ { 3 \mathrm { ~ b ~ } }$ respectively. (FID/IS: (a) 5.04/126.8, (b) 5.09/217.0) + +a variable after one update step, e.g., $\begin{array} { r } { \theta _ { D } ^ { \prime } = \theta _ { D } - \alpha \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } } \end{array}$ . $p ( x )$ and $p ( z )$ denote the data distribution and source distribution respectively. $\mathbb { E } _ { p ( x ) } \left[ f ( x ) \right]$ indicates taking the expectation of function $f ( x )$ over the distribution $p ( x )$ . + +# 2.2 GENERATIVE ADVERSARIAL NETS + +A GAN consists of a generator that generates image $x = G ( z ; \theta _ { G } )$ from a latent source $z \sim p ( z )$ , and a discriminator that scores the generated images as $D ( x ; \theta _ { D } )$ (Goodfellow et al., 2014). Training GANs involves an adversarial game: while the discriminator tries to distinguish generated samples $x = G \left( z ; \theta _ { G } \right)$ from data $x \sim p ( x )$ , the generator tries to fool the discriminator. This procedure can be summarised as the following min-max game: + +$$ +\operatorname* { m i n } _ { \theta _ { D } } \operatorname* { m a x } _ { \theta _ { G } } \mathbb { E } _ { z \sim p ( x ) } [ h _ { D } ( D ( x ; \theta _ { D } ) ) ] + \mathbb { E } _ { z \sim p ( z ) } [ h _ { G } ( D ( G ( z ; \theta _ { G } ) ; \theta _ { D } ) ) ] +$$ + +Table 1: Comparison of model scores. BigGAN-deep results are reproduced from Brock et al. (2018). “baseline” indicates our reproduced BigGAN-deep with small modifications. The 3rd and 4th columns are from the gradient descent (GD, ablated) and natural gradient descent (NGD) versions of LOGAN respectively. We report the Inception Score (IS, higher is better, Salimans et al. 2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´ + +
BigGAN-DeepbaselineLOGAN (GD)LOGAN (NGD)
FID5.7 ± 0.34.92±0.054.86±0.093.36± 0.14
IS124.5 ± 2.0126.6 ± 1.3127.7 ± 3.5148.2 ±3.1
+ +The exact form of $h ( \cdot )$ depends on the choice of loss function (Goodfellow et al., 2014; Arjovsky et al., 2017; Nowozin et al., 2016). To simplify our presentation and analysis, we use the Wasserstein loss (Arjovsky et al., 2017), so that $h _ { D } ( t ) = - t$ and $h _ { G } ( t ) = t$ . Our experiments with BigGANdeep uses the hinge loss (Lim & Ye, 2017; Tran et al., 2017), which is identical to this form in its linear regime. Our analysis can be generalised to other losses as in previous theoretical work (e.g., Arora et al. 2017). To simplify notation, we abbreviate $f ( z ; \theta _ { D } , \bar { \theta _ { G } } ) = D \left( G \left( z ; \theta _ { G } \right) ; \theta _ { D } \right)$ , which may be further simplified as $f ( z )$ when the explicit dependency on $\theta _ { D }$ and $\theta _ { G }$ can be omitted. + +Training GANs requires carefully balancing updates to $D$ and $G$ , and is sensitive to both architecture and algorithm choices (Salimans et al., 2016; Radford et al., 2015). A recent milestone is BigGAN (and BigGAN-deep, Brock et al. 2018), which pushed the boundary of high fidelity image generation by scaling up GANs to an unprecedented level. BigGANs use an architecture based on residual blocks (He et al., 2016), in combination with regularisation mechanisms and self-attention (Saxe et al., 2014; Miyato et al., 2018; Zhang et al., 2019). + +Here we aim to improve the adversarial dynamics during training. We focus on the second term in eq. 1 which is at the heart of the min-max game, with adversarial losses for $D$ and $G$ , which can be written as + +$$ +L ( z ) = \left[ L _ { D } ( z ) , L _ { G } ( z ) \right] ^ { T } = \left[ f ( z ) , - f ( z ) \right] ^ { T } +$$ + +Computing the gradients with respect to $\theta _ { D }$ and $\theta _ { G }$ obtains the following gradient, which cannot be expressed as the gradient of any single function (Balduzzi et al., 2018): + +$$ +g = \left[ \frac { \partial L _ { D } ( z ) } { \partial \theta _ { D } } , \frac { \partial L _ { G } ( z ) } { \partial \theta _ { G } } \right] ^ { T } = \left[ \frac { \partial f ( z ) } { \partial \theta _ { D } } , - \frac { \partial f ( z ) } { \partial \theta _ { G } } \right] ^ { T } +$$ + +The fact that $g$ is not the gradient of a function implies that gradient updates in GANs can exhibit cycling behaviour which can slow down or prevent convergence. In Balduzzi et al. (2018), vector fields of this form are referred to as the simultaneous gradient. Although many GAN models use alternating update rules (e.g., Goodfellow et al. 2014; Brock et al. 2018), following the gradient with respect to $\theta _ { D }$ and $\theta _ { G }$ alternatively in each step, they can still suffer from cycling, so we use the simpler simultaneous gradient (eq. 3) for our analysis. + +# 2.3 LATENT OPTIMISED GANS + +Inspired by compressed sensing (Candes et al., 2006; Donoho, 2006), Wu et al. (2019) introduced latent optimisation for GANs. We call this type of model latent-optimised GANs (LOGAN). Latent optimization has been shown to improve the stability of training as well as the final performance for medium-sized models such as DCGANs and Spectral Normalised GANs (Radford et al., 2015; Miyato et al., 2018). Latent optimisation exploits knowledge from $D$ to guide updates of $z$ . Intuitively, the gradient $\begin{array} { r } { \nabla _ { z } f ( z ) = \frac { \partial f ( z ) } { \partial z } } \end{array}$ points in the direction that satisfies the discriminator $D$ , which implies better samples. Therefore, instead of using the randomly sampled $z \sim p ( z )$ , Wu et al. (2019) uses the optimised latent + +$$ +\Delta z = \alpha \frac { \partial f ( z ) } { \partial z } \qquad z ^ { \prime } = z + \Delta z +$$ + +in eq. 1 for training 1. The general algorithm is summarised in Algorithm 1 and illustrated in Figure 3 a. We develop the natural gradient descent form of latent update in Section 4. + +![](images/c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg) +Figure 3: (a) Schematic of LOGAN. We first compute a forward pass through $G$ and $D$ with a sampled latent $z$ . Then, gradients from the generator loss (dashed red arrow) are used to compute an improved latent, $z ^ { \prime }$ . After this optimised latent code is used in a second forward pass, we compute gradients of the discriminator back through the latent optimisation into the model parameters $\theta _ { D }$ , $\theta _ { G }$ . These gradients are used to update the model. (b) Truncation curves illustrate the FID/IS tradeoff for each model by altering the range of the noise source $p ( z )$ . GD: gradient descent. NGD: natural gradient descent. Points A, B, C, D correspond to samples shown in Figure 1 and 2. + +Algorithm 1 Latent Optimised GANs with Automatic Differentiation + +
Input: data distribution p(x),latent distribution p(z),D(:; 0D), G(-; 0g),learning rate α, batch size N repeat
Initialise discriminator and generator parameters 0D,0G fori=1 to Ndo
Sample z ~ p(z),x~p(x)
Compute the gradient D(G(z)) and use it to obtain △z from eq. 4 (GD) or eq. 12 (NGD) dz
Optimise the latent z' ← [+ △z],[:] indicates clipping the value between -1 and 1
= -D(G(z))
D(G(z'))-D(x) end for
Compute batch losses LG =N∑i=11 JN (i) and LD=∑=1 N L(i) LD
aLD aLG Update 0D and 0G with the gradients
0D, G
until reaches the maximum training steps
+ +# 3 ANALYSIS OF THE ALGORITHM + +To understand how latent optimisation improves GAN training, we analyse LOGAN as a 2-player differentiable game following Balduzzi et al. (2018); Gemp & Mahadevan (2018); Letcher et al. (2019). The appendix provides a complementary analysis that relates LOGAN to unrolled GANs (Metz et al., 2016) and stochastic approximation (Heusel et al., 2017; Borkar, 1997). + +# 3.1 THE SYMPLECTIC GRADIENT ADJUSTMENT (SGA) + +An important problem with gradient-based optimization in GANs is that the vector-field generated by the losses of the discriminator and generator is not a gradient vector field. It follows that gradient descent is not guaranteed to find a local optimum and can cycle, which can slow down convergence or lead to phenomena like mode collapse and mode hopping. Balduzzi et al. (2018); Gemp & + +Mahadevan (2018) proposed Symplectic Gradient Adjustment (SGA) to improve the dynamics of gradient-based methods in adversarial games. For a game with gradient $g$ (eq. 3), define the Hessian as the second order derivatives with respect to the parameters, $H = \nabla _ { \theta } g$ . SGA uses the adjusted gradient + +$$ +g ^ { * } = g + \lambda A ^ { T } g \quad { \mathrm { w h e r e ~ } } \lambda { \mathrm { ~ i s ~ a ~ p o s i t i v e ~ c o n s t a n t } } +$$ + +and $\begin{array} { r } { A = \frac 1 2 ( H - H ^ { T } ) } \end{array}$ is the anti-symmetric component of the Hessian. Applying SGA to GANs yields the adjusted updates (see Appendix B.1 for details): + +$$ +g ^ { \ast } = \left[ \frac { \partial f ( z ) } { \partial \theta _ { D } } + \lambda \left( \frac { \partial ^ { 2 } f ( z ) } { \partial \theta _ { G } \partial \theta _ { D } } \right) ^ { T } \frac { \partial f ( z ) } { \partial \theta _ { G } } , - \frac { \partial f ( z ) } { \partial \theta _ { G } } + \lambda \left( \frac { \partial ^ { 2 } f ( z ) } { \partial \theta _ { D } \partial \theta _ { G } } \right) ^ { T } \frac { \partial f ( z ) } { \partial \theta _ { D } } \right] ^ { T } +$$ + +Compared with $g$ in eq. 3, the adjusted gradient $g ^ { * }$ has second-order terms reflecting the interactions between $D$ and $G$ . SGA has been shown to significantly improve GAN training in basic examples (Balduzzi et al., 2018), allowing faster and more robust convergence to stable fixed points (local Nash equilibria). Unfortunately, SGA is expensive to scale because computing the second-order derivatives with respect to all parameters is expensive. + +Explicitly computing the gradients for the discriminator and generator at $z ^ { \prime }$ after one step of latent optimisation (eq. 4) obtains + +$$ +\begin{array} { r l r } & { } & { \left[ \frac { d L _ { D } } { d \theta _ { D } } , \frac { d L _ { G } } { d \theta _ { G } } \right] } ^ { T } = { { \left[ \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial \theta _ { D } } + \left( \frac { \partial \Delta { \boldsymbol { z } } } { \partial \theta _ { D } } \right) ^ { T } \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial \Delta { \boldsymbol { z } } } , - \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial \theta _ { G } } - \left( \frac { \partial \Delta { \boldsymbol { z } } } { \partial \theta _ { G } } \right) ^ { T } \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial \Delta { \boldsymbol { z } } } \right] } ^ { T } { \left( \boldsymbol { \hat { z } } ^ { \prime } \right) } } \\ & { } & { = { { \left[ \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial \theta _ { D } } + \alpha \left( \frac { \partial ^ { 2 } f ( { \boldsymbol { z } } ) } { \partial \boldsymbol { z } \partial \theta _ { D } } \right) ^ { T } \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial { \boldsymbol { z } } ^ { \prime } } , - \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial \theta _ { G } } - \alpha \left( \frac { \partial ^ { 2 } f ( { \boldsymbol { z } } ) } { \partial \boldsymbol { z } \partial \theta _ { G } } \right) ^ { T } \frac { \partial f ( { \boldsymbol { z } } ^ { \prime } ) } { \partial { \boldsymbol { z } } ^ { \prime } } \right] } ^ { T } } } \end{array} +$$ + +In both equations, the first terms represent how $f ( z ^ { \prime } )$ depends on the parameters directly and the second terms represent how $f ( z ^ { \prime } )$ depends on the parameters via the optimised latent source. For the second equality, we substitute $\begin{array} { r } { \Delta z = \alpha \frac { \partial f ( z ) } { \partial z } } \end{array}$ as the gradient-based update of $z$ and use $\begin{array} { r } { \frac { \partial f ( z ^ { \prime } ) } { \partial \Delta z } = } \end{array}$ ∂f(z0)∂z0 . The original GAN’s gradient (eq. 3) does not include any second-order term, since ∆z = 0 without latent optimisation. In LOGAN, these extra terms are computed by automatic differentiation when back-propagating through the latent optimisation process (see Algorithm 1). + +The SGA updates in eq. 6 and the LOGAN updates in eq. 8 are strikingly similar, suggesting that the latent step used by LOGAN reduces the negative effects of cycling by introducing a symplectic gradient adjustment into the optimization procedure. The role of the latent step can be formalized in terms of a third player, whose goal is to help the generator, see appendix B for details. + +Crucially, latent optimisation approximates SGA using only second-order derivatives with respect to the latent $z$ and parameters of the discriminator and generator separately. The second order terms involving parameters of both the discriminator and the generator – which are extremely expensive to compute – are not used. For latent $z$ ’s with dimensions typically used in GANs (e.g., 128–256, orders of magnitude less than the number of parameters), these can be computed efficiently. In short, latent optimisation efficiently couples the gradients of the discriminator and generator, as prescribed by SGA, but using the much lower-dimensional latent source $z$ which makes the adjustment scalable. + +An important consequence of reducing the rotational aspect of GAN dynamics is that it is possible to use larger step sizes during training which suggests using stronger optimisers to fully take advantage of latent optimisation. Latent optimisation can improve GAN training dynamics further by allowing larger single steps $\Delta z$ towards the direction of $\frac { \partial f ( z ) } { \partial z }$ ) without overshooting. + +# 3.2 UNROLLING AND STOCHASTIC APPROXIMATION + +Appendix B further explains how LOGAN relates to unrolled GANs (Metz et al., 2016) and stochastic approximation. Our main finding is that latent optimisation accelerates the speed of updating $D$ relative to that of $G$ , facilitating convergence according to Heusel et al. (2017) (see also Figure ${ } 4 \mathbf { b }$ ). In particular, the generator requires less update compared with $D$ to achieve the same reduction of loss, because latent optimisation “helps” $G$ . + +![](images/a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg) +Figure 4: (a) Scaling of gradients in natural gradient descent. We use $\beta = 5$ in BigGAN-Deep experiments. (b) The update speed of the discriminator relative to the generator shown as the difference $\lVert \Delta \boldsymbol { \theta } _ { D } \rVert - \lVert \Delta \boldsymbol { \theta } _ { G } \rVert$ after each update step. Lines are smoothed with moving average using window size 20 (in total, there are 3007, 1659 and 1768 data points for each curve). For all curves oscillation strongly after training collapsed. + +# 4 LOGAN WITH NATURAL GRADIENT DESCENT + +Although our analysis suggests using strong optimisers for optimising $z$ , Wu et al. (2019) only used basic gradient descent (GD) with a fixed step-size. This choice limits the size $\Delta z$ can take: in order not to overshoot when the curvature is large, the step size would be too conservative when the curvature is small. We hypothesis that GD is more detrimental for larger models, which have complex loss surfaces with highly varying curvatures. Consistent with this hypothesis, we observed only marginal improvement over the baseline using GD (section 5.3, Table 1, Figure $3 \mathbf { b }$ ). + +In this work, we instead use natural gradient descent (NGD, Amari 1998) for latent optimisation. NGD can be seen as an approximate second-order optimisation method (Pascanu & Bengio, 2013; Martens, 2014), and has been applied successfully in many domains. By using the positive semidefinite (PSD) Gauss-Newton matrix to approximate the (possibly negative definite) Hessian, NGD often works even better than exact second-order methods. NGD is expensive in high dimensional parameter spaces, even with approximations (Martens, 2014). However, we demonstrate it is efficient for latent optimisation, even in very large models. + +Given the gradient of $z$ , $\begin{array} { r } { g = \frac { \partial f ( z ) } { \partial z } } \end{array}$ ∂f(z)∂z , NGD computes the update as + +$$ +\Delta z = \alpha { \cal F } ^ { - 1 } g +$$ + +where the Fisher information matrix $F$ is defined as + +$$ +F = \mathbb { E } _ { p ( t \mid z ) } \left[ \nabla \ln p ( t | z ) \nabla \ln p ( t | z ) ^ { T } \right] +$$ + +The log-likelihood function $\ln { p ( t | z ) }$ typically corresponds to commonly used error functions such as cross entropy loss. This correspondence is not necessary when NGD is interpreted as an approximate second-order method, as has long been used in practice (Martens, 2014). Nevertheless, Appendix C provides a Poisson log-likelihood interpretation for the hinge loss commonly used in GANs (Lim & Ye, 2017; Tran et al., 2017). An important difference between latent optimisation and commonly seen senarios using NGD is that the expectation over the condition $( z )$ is absent. Since each $z$ is only responsible for generating one image, it only minimises the loss $L _ { G } ( z )$ for this particular instance. Computing per-sample Fisher this way is necessary to approximate SGA (see Appendix B.1 for details). + +More specifically, we use the empirical Fisher $F ^ { \prime }$ with Tikhonov damping, as in TONGA (Roux et al., 2008) + +$$ +F ^ { \prime } = g \cdot g ^ { T } + \beta I +$$ + +$F ^ { \prime }$ is cheaper to compute compared with the full Fisher, since $g$ is already available. The damping factor $\beta$ regularises the step size, which is important when $F ^ { \prime }$ only poorly approximates the Hessian + +![](images/2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg) +Figure 5: (a) The change from $\Delta z$ across training, in $D$ ’s output space and $z$ ’s Euclidean space. The distances are normalised by their standard derivations computed from a moving window of size 20 (1007 data points in total). (b) Training curves from models with different “stop gradient” operations. For reference, the training curve from an unablated model is plotted as the dashed line. All instances with stop gradient collapsed (FID went up) early in training. + +or when the Hessian changes too much across the step. Using the Sherman-Morrison formula, the NGD update can be simplified into the following closed form: + +$$ +\Delta z = \alpha \left( \frac { I } { \beta } - \frac { g g ^ { T } } { \beta ^ { 2 } + \beta g ^ { T } g } \right) g = \frac { \alpha } { \beta } \left( 1 - \frac { \| g \| ^ { 2 } } { \beta + \| g \| ^ { 2 } } \right) g +$$ + +which does not involve any matrix inversion. Thus, NGD adapts the step size according to the curvature estimate $\begin{array} { r } { c = \frac { 1 } { \beta } \left( 1 - \frac { \| g \| ^ { 2 } } { \beta + \| g \| ^ { 2 } } \right) } \end{array}$ . Figure ${ \textbf { 4 a } }$ illustrates the scaling for different values of $\beta$ . NGD automatically smooths the scale of updates by down-scaling the gradients as their norm grows, which also contributes to the smoothed norms of updates (Figure $4 \ \mathbf { b }$ ). Since the NGD update remains proportional to $g$ , our analysis based on gradient descent in section 3 still holds. + +# 5 EXPERIMENTS AND ANALYSIS + +We focus on large scale GANs based on BigGAN-deep (Brock et al., 2018) trained on $1 2 8 \times 1 2 8$ size images from the ImageNet dataset (Deng et al., 2009). In Appendix E, we present results from applying our algorithm on Spectral Normalised GANs trained with CIFAR dataset (Krizhevsky et al., 2009), which obtains state-of-the-art scores on this model. + +# 5.1 MODEL CONFIGURATION + +We used the standard BigGAN-deep architecture with three minor modifications: 1. We increased the size of the latent source from 128 to 256, to compensate the randomness of the source lost when optimising $z$ . 2. We use the uniform distribution $\mathcal { U } ( - 1 , 1 )$ instead of the standard normal distribution $\mathcal { N } ( 0 , 1 )$ for $p ( z )$ , to be consistent with the clipping operation (Algorithm 1). 3. We use leaky ReLU instead of ReLU as the non-linearity for smoother gradient flow for $\frac { \partial f ( z ) } { \partial z }$ . + +Consistent with detailed findings in Brock et al. (2018) that these changes have limited effect, our experiment with this baseline model obtains only slightly better scores compared with those in Brock et al. (2018) (Table 1, see also Figure 8). The FID and IS are computed as in Brock et al. (2018), and IS values are computed from checkpoints with the lowest FIDs. The means and standard deviations are computed from 5 models with different random seeds. + +To apply latent optimisation, we use a damping factor $\beta = 5 . 0$ combined with a large step size of $\alpha = 0 . 9$ . As an additional way of damping, we only optimise $5 0 \%$ of $z$ ’s dimensions. Optimising the entire population of $z$ was unstable in our experiments. Similar to $\mathbf { W } \mathbf { u }$ et al. (2019), we found it was helpful to regularise the Euclidean norm of weight-change $\Delta z$ , with a regulariser weight of + +300.0. All other hyper-parameters, including learning rates and a large batch size of 2048, remain the same as in BigGAN-deep; we did not optimise these hyper-parameters. We call this model LOGAN (NGD). + +# 5.2 BASIC RESULTS + +Employing the same architecture and number of parameters as the BigGAN-deep baseline, LOGAN (NGD) achieved better FID and IS (Table 1). As observed by Brock et al. (2018), BigGAN training always eventually collapsed. Training with LOGAN also collapsed, perhaps due to higher-order dynamics beyond the scope we have analysed, but took significantly longer (600k steps versus $3 0 0 \mathrm { k }$ steps with BigGAN-deep). + +During training, LOGAN was $2 - 3$ times slower per step compared with BigGAN-deep because of the additional forward and backward pass. We found that optimising $z$ during evaluation did not improve sample scores (even up to 10 steps), so we do not optimise $z$ for evaluation. Therefore, LOGAN has the same evaluation cost as original BigGAN-deep. To help understand this behaviour, we plot the change from $\Delta z$ during training in Figure 5 a. Although the movement in Euclidean space $| | \Delta z | |$ grew until training collapsed, the movement in $D$ ’s output space, measured as $\| f ( z + \Delta z ) - f ( z ) \|$ , remained unchanged (see Appendix $\mathrm { D }$ for details). As shown in our analysis, optimising $z$ improves the training dynamics, so LOGANs work well after training without requiring latent optimisation. + +# 5.3 ABLATION STUDIES + +We verify our theoretical analysis in section 3 by examining key components of Algorithm 1 via ablation studies. First, we experimented with using basic GD to optimising $z$ , as in Wu et al. (2019), and call this model LOGAN (GD). A smaller step size of $\alpha = 0 . 0 0 0 1$ was required; larger values were unstable and led to premature collapse of training. As shown in Table 1, the scores from LOGAN (GD) were worse than LOGAN (NGD) and similar to the baseline model. + +We then evaluate the effects of removing those terms depending on the ordinary gradient (eq. 3). Since these terms were computed $\frac { \partial f ( z ) } { \partial z }$ in eq. 8, which are not inback-propagating through the latent optimisation procedure, we removed them by selectively blocking back-propagation with “stop gradient” operations (e.g., in TensorFlow Abadi et al. 2016). Figure ${ \bf 5 \ B }$ shows the change of FIDs for the three models corresponding to removing $\left( \frac { \partial \Delta z } { \partial \theta _ { G } } \right) ^ { T } \ \frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } }$ , removing $\begin{array} { r } { \left( \frac { \partial \Delta z } { \partial \theta _ { D } } \right) ^ { T } \frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } } } \end{array}$ and removing both terms. As predicted by our analysis (section 3), both terms help stabilise training; training diverged early for all three ablations. + +# 5.4 TRUNCATION AND SAMPLES + +Truncation is a technique introduced by Brock et al. (2018) to illustrate the trade-off between the FID and IS in a trained model. For a model trained with $z \sim p ( z )$ from a source distribution symmetric around 0, such as the standard normal distribution $\mathcal { N } ( 0 , 1 )$ and the uniform distribution $\mathcal { U } ( - 1 , 1 )$ , down-scaling (truncating) the source $\bar { z } = s \cdot z$ with $0 \leq s \leq 1$ gives samples with higher visual quality but reduced diversity. This observation is quantified as higher IS and lower FID when evaluating samples from truncated distributions. + +Figure $^ { 3 \mathrm { ~ b ~ } }$ plots the truncation curves for the baseline BigGAN-deep model, LOGAN (GD) and LOGAN (NGD), obtained by varying the truncation (value of $s$ ) from 1.0 (no truncation, upper-left ends of the curves) to 0.02 (extreme truncation, bottom-right ends). Each curve shows the trade-off between FID and IS for an individual model; curves towards the upper-right corner indicate better overall sample quality. The relative positions of curves in Figure 3 (b) shows LOGAN (NGD) has the best sample quality. Interestingly, although LOGAN (GD) and the baseline model have similar scores without truncation (upper-left ends of the curves, see also Table 1), LOGAN (GD) was better behaved with increasing truncation, suggesting LOGAN (GD) still converged to a better equilibrium. For further reference, we plot truncation curves from additional baseline models in Figure 8. + +Figure 1 and Figure 2 show samples from chosen points on the truncation curves. In the high IS domain, C and D on the truncation curves both have similarly high IS of near 260. Samples from batches with such high IS have almost photo-realistic image quality. Figure 1 show that while the baseline model produced nearly uniform samples, LOGAN (NGD) could still generate highly diverse samples. On the other hand, A and B from Figure $^ { 3 \mathrm { ~ b ~ } }$ have similarly low FID of near 5, indicating high sample diversity. Samples in Figure $^ { 2 \mathbf { b } }$ show higher quality compared with those in a (e.g., the interfaces between the elephants and ground, the contours around the pandas). + +# 6 CONCLUSION + +In this work we present the LOGAN model which significantly improves the state-of-the-art on large scale GAN training for image generation by online optimising the latent source $z$ . Our results illustrate improvements in quantitative evaluation and samples with higher quality and diversity. Moreover, our analysis suggests that LOGAN fundamentally improves adversarial training dynamics. We therefore expect our method to be useful in other tasks that involve adversarial training, including representation learning and inference (Donahue et al., 2017; Dumoulin et al., 2017), text generation (Zhang et al., 2019), style learning (Zhu et al., 2017; Karras et al., 2019), audio generation (Donahue et al., 2018) and video generation (Vondrick et al., 2016; Clark et al., 2019). + +# REFERENCES + +Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for largescale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and Implementation $\left( \left\{ O S D I \right\} \ I \bar { \ 6 } \right)$ , pp. 265–283, 2016. +Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251– 276, 1998. +Martin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein GAN. ´ arXiv preprint arXiv:1701.07875, 2017. +Sanjeev Arora, Rong Ge, Yingyu Liang, Tengyu Ma, and Yi Zhang. Generalization and equilibrium in generative adversarial nets. In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 224–232. JMLR. org, 2017. +David Balduzzi, Sebastien Racaniere, James Martens, Jakob Foerster, Karl Tuyls, and Thore Graepel. The mechanics of n-player differentiable games. arXiv preprint arXiv:1802.05642, 2018. +Vivek S Borkar. Stochastic approximation with two time scales. Systems & Control Letters, 29(5): 291–294, 1997. +Andrew Brock, Jeff Donahue, and Karen Simonyan. Large scale GAN training for high fidelity natural image synthesis. arXiv preprint arXiv:1809.11096, 2018. +Emmanuel J Candes, Justin K Romberg, and Terence Tao. Stable signal recovery from incomplete and inaccurate measurements. Communications on Pure and Applied Mathematics: A Journal Issued by the Courant Institute of Mathematical Sciences, 59(8):1207–1223, 2006. +Aidan Clark, Jeff Donahue, and Karen Simonyan. Efficient video generation on complex datasets. arXiv preprint arXiv:1907.06571, 2019. +J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical Image Database. In CVPR09, 2009. +Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. arXiv preprint arXiv:1802.04208, 2018. +Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. In ¨ ICLR, 2017. +David L Donoho. Compressed sensing. IEEE Transactions on information theory, 52(4):1289– 1306, 2006. + +Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Olivier Mastropietro, Alex Lamb, Martin Arjovsky, and Aaron Courville. Advesarially learned inference. In ICLR, 2017. + +Ian Gemp and Sridhar Mahadevan. Global Convergence to the Equilibrium of GANs using Variational Inequalities. In Arxiv:1808.01531, 2018. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. + +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. + +Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilibrium. In Advances in Neural Information Processing Systems, pp. 6626–6637, 2017. + +Morris W Hirsch. Convergent activation dynamics in continuous time networks. Neural networks, 2(5):331–349, 1989. + +Tero Karras, Samuli Laine, and Timo Aila. A style-based generator architecture for generative adversarial networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 4401–4410, 2019. + +Vijaymohan R Konda and Vivek S Borkar. Actor-critic–type learning algorithms for markov decision processes. SIAM Journal on control and Optimization, 38(1):94–123, 1999. + +Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. Technical report, Citeseer, 2009. + +Alistair Letcher, David Balduzzi, Sebastien Racani ´ ere, James Martens, Jakob N Foerster, Karl Tuyls, \` and Thore Graepel. Differentiable game mechanics. Journal of Machine Learning Research, 20 (84):1–40, 2019. + +Jae Hyun Lim and Jong Chul Ye. Geometric GAN. arXiv preprint arXiv:1705.02894, 2017. + +James Martens. New insights and perspectives on the natural gradient method. arXiv preprint arXiv:1412.1193, 2014. + +Luke Metz, Ben Poole, David Pfau, and Jascha Sohl-Dickstein. Unrolled generative adversarial networks. CoRR, abs/1611.02163, 2016. URL http://arxiv.org/abs/1611.02163. + +Takeru Miyato and Masanori Koyama. cGANs with projection discriminator. arXiv preprint arXiv:1802.05637, 2018. + +Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative adversarial networks. arXiv preprint arXiv:1802.05957, 2018. + +Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. $f$ -GAN: Training generative neural samplers using variational divergence minimization. In Advances in neural information processing systems, pp. 271–279, 2016. + +Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint arXiv:1301.3584, 2013. + +Barak A Pearlmutter. Fast exact multiplication by the hessian. Neural computation, 6(1):147–160, 1994. + +Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015. + +Nicolas L Roux, Pierre-Antoine Manzagol, and Yoshua Bengio. Topmoumoute online natural gradient algorithm. In Advances in neural information processing systems, pp. 849–856, 2008. + +Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In Advances in neural information processing systems, pp. 2234–2242, 2016. +Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. ICLR, 2014. +Dustin Tran, Rajesh Ranganath, and David Blei. Hierarchical implicit models and likelihood-free variational inference. In Advances in Neural Information Processing Systems, pp. 5523–5533, 2017. +Carl Vondrick, Hamed Pirsiavash, and Antonio Torralba. Generating videos with scene dynamics. In Advances In Neural Information Processing Systems, pp. 613–621, 2016. +Yan Wu, Mihaela Rosca, and Timothy Lillicrap. Deep compressed sensing. In International Conference on Machine Learning, pp. 6850–6860, 2019. +Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative adversarial networks. In International Conference on Machine Learning, pp. 7354–7363, 2019. +Jun-Yan Zhu, Taesung Park, Phillip Isola, and Alexei A Efros. Unpaired image-to-image translation using cycle-consistent adversarial networks. In Proceedings of the IEEE international conference on computer vision, pp. 2223–2232, 2017. + +# A ADDITIONAL SAMPLES AND RESULTS + +Figure 6 and 7 provide additional samples, organised similarly as in Figure 1 and 2. Figure 8 shows additional truncation curves. + +# B DETAILED ANALYSIS OF LATENT OPTIMISATION + +In this section we present three complementary analyses of LOGAN. In particular, we show how the algorithm brings together ideas from symplectic gradient adjustment, unrolled GANs and stochastic approximation with two time scales. + +# B.1 APPROXIMATE SYMPLECTIC GRADIENT ADJUSTMENT + +To analyse LOGAN as a differentiable game we treat the latent step $\Delta z$ as adding a third player to the original game played by the discriminator and generator. The third player’s parameter, $\Delta z$ , is optimised online for each $z \sim p ( z )$ . Together the three players (latent player, discriminator, and generator) have losses averaged over a batch of samples: + +$$ +L = [ \eta L _ { G } , L _ { D } , L _ { G } ] ^ { T } +$$ + +where $\begin{array} { r } { \eta \ : = \ : \frac { 1 } { N } } \end{array}$ ( $N$ is the batch size) reflects the fact that each $\Delta z$ is only optimised for a single sample $z$ , so its contribution to the total loss across a batch is small compared with $\theta _ { D }$ and $\theta _ { G }$ which are directly optimised for batch losses. This choice of $\eta$ is essential for the following derivation, and has important practical implication. It means that the per-sample loss $L _ { G } ( z ^ { \prime } )$ , instead of the loss summed over a batch Therefore, when usin $\textstyle \sum _ { n = 1 } ^ { N } L _ { G } ( z _ { n } ^ { \prime } )$ , should be the only loss function guiding latent optimisation.ent descent (Section 4), the Fisher information matrix should only be computed using the current sample $z$ . + +The resulting simultaneous gradient is + +$$ +\begin{array} { r } { g = \left[ \eta \frac { \partial L _ { G } ( z ^ { \prime } ) } { \partial \Delta z } , \frac { \partial L _ { D } ( z ^ { \prime } ) } { \partial \theta _ { D } } , \frac { \partial L _ { G } ( z ^ { \prime } ) } { \partial \theta _ { G } } \right] ^ { T } = \left[ - \eta \frac { \partial f ( z ^ { \prime } ) } { \partial \Delta z } , \frac { \partial f ( z ^ { \prime } ) } { \partial \theta _ { D } } , - \frac { \partial f ( z ^ { \prime } ) } { \partial \theta _ { G } } \right] ^ { T } } \end{array} +$$ + +Following Balduzzi et al. (2018), we can write the Hessian of the game as: + +$$ +H = \left[ \begin{array} { c c c } { - \eta \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \Delta z ^ { 2 } } } & { - \eta \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \Delta z \partial \theta _ { D } } } & { - \eta \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \Delta z \partial \theta _ { G } } } \\ { \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { D } \partial \Delta z } } & { \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { D } ^ { 2 } } } & { \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { D } \partial \theta _ { G } } } \\ { - \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { G } \partial \Delta z } } & { - \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { G } \partial \theta _ { D } } } & { - \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { G } ^ { 2 } } } \end{array} \right] +$$ + +The presence of a non-zero anti-symmetric component in the Hessian + +$$ +A = \frac { 1 } { 2 } ( H - H ^ { T } ) = \left[ \begin{array} { c c c } { 0 } & { - \frac { 1 + \eta } { 2 } \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \Delta z \partial \theta _ { D } } } & { \frac { 1 - \eta } { 2 } \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \Delta z \partial \theta _ { G } } } \\ { \frac { 1 + \eta } { 2 } \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { D } \partial \Delta z } } & { 0 } & { \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { D } \partial \theta _ { G } } } \\ { - \frac { 1 - \eta } { 2 } \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { G } \partial \Delta z } } & { - \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial \theta _ { G } \partial \theta _ { D } } } & { 0 } \end{array} \right] +$$ + +implies the dynamics have a rotational component which can cause cycling or slow down convergence. Since $\eta \ll 1$ for typical batch sizes (e.g., $\frac { 1 } { 6 4 }$ for DCGAN and $\scriptstyle { \frac { 1 } { 2 0 4 8 } }$ for BigGAN-deep), we abbreviate $\begin{array} { r } { \gamma = \frac { 1 + \eta } { 2 } \approx \frac { 1 - \eta } { 2 } } \end{array}$ 1−η2 to simplify notations. + +Symplectic gradient adjustment (SGA) counteracts the rotational force by adding an adjustment term to the gradient to obtain $g ^ { * } g + \lambda A ^ { T } g$ , which for the discriminator and generator has the form: + +$$ +\begin{array} { r l } & { g _ { D } ^ { * } = \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \theta _ { D } } + \lambda \gamma \left( \cfrac { \partial ^ { 2 } f ( \boldsymbol { z } ^ { \prime } ) } { \partial \Delta \boldsymbol { z } \partial \theta _ { D } } \right) ^ { T } \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \Delta \boldsymbol { z } } + \lambda \left( \cfrac { \partial ^ { 2 } f ( \boldsymbol { z } ^ { \prime } ) } { \partial \theta _ { G } \partial \theta _ { D } } \right) ^ { T } \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \theta _ { G } } } \\ & { g _ { G } ^ { * } = - \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \theta _ { G } } - \lambda \gamma \left( \cfrac { \partial ^ { 2 } f ( \boldsymbol { z } ^ { \prime } ) } { \partial \Delta \boldsymbol { z } \partial \theta _ { G } } \right) ^ { T } \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \Delta \boldsymbol { z } } + \lambda \left( \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \theta _ { D } \partial \theta _ { G } } \right) ^ { T } \cfrac { \partial f ( \boldsymbol { z } ^ { \prime } ) } { \partial \theta _ { D } } } \end{array} +$$ + +The gradient with respect to $\Delta z$ is ignored since the convergence of training only depends on $\theta _ { D }$ and $\theta _ { G }$ . + +If we drop the last terms in eq.17 and 18, which are expensive to compute for large models with high-dimensional $\theta _ { D }$ and $\theta _ { G }$ , and use $\begin{array} { r } { \frac { \partial f ( z ^ { \prime } ) } { \partial \Delta z } = \frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } } } \end{array}$ , the adjusted updates can be rewritten as + +$$ +\begin{array} { l } { { g _ { D } ^ { * } \approx { \displaystyle \frac { \partial f ( z ^ { \prime } ) } { \partial \theta _ { D } } } + \lambda \gamma ~ \left( { \displaystyle \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial z ^ { \prime } \partial \theta _ { D } } } \right) ^ { T } ~ { \displaystyle \frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } } } } } \\ { { g _ { G } ^ { * } \approx - { \displaystyle \frac { \partial f ( z ^ { \prime } ) } { \partial \theta _ { G } } } - \lambda \gamma ~ \left( { \displaystyle \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial z ^ { \prime } \partial \theta _ { G } } } \right) ^ { T } ~ { \displaystyle \frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } } } } } \end{array} +$$ + +Because of the thiciently computing r, thand still the terms depend on is non-trivial (e.g., Pearl $\frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } }$ to adjust the gradients. Effi- 1994). However, if we intro$\frac { \partial ^ { 2 } f ( \boldsymbol { z } ^ { \prime } ) } { \partial \boldsymbol { z } ^ { \prime } \partial \theta _ { D } }$ +duce the local approximation + +$$ +\frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial z ^ { \prime } \partial \theta _ { D } } \approx \frac { \partial ^ { 2 } f ( z ) } { \partial z \partial \theta _ { D } } \qquad \frac { \partial ^ { 2 } f ( z ^ { \prime } ) } { \partial z ^ { \prime } \partial \theta _ { D } } \approx \frac { \partial ^ { 2 } f ( z ) } { \partial z \partial \theta _ { D } } +$$ + +hen the adjusted gradient becomes identical to 8 from latent optimisation. + +In other words, automatic differentiation by commonly used machine learning packages can compute the adjusted gradient for $\theta _ { D }$ and $\theta _ { G }$ when back-propagating through the latent optimisation process. Despite the approximation involved in this analysis, both our experiments in section 5 and the results from Wu et al. (2019) verified that latent optimisation can significantly improve GAN training. + +# B.2 RELATION WITH UNROLLED GANS + +Latent optimisation can be seen as unrolling GANs (Metz et al., 2016) in the space of the latent, rather than the parameters. Unrolling in the latent space has the advantages that: + +1. LOGAN is more scalable than Unrolled GANs because it avoids second-order derivatives over a potentially very large number of parameters. +2. While unrolling the update of $D$ only affects the parameters of $G$ (as in Metz et al. 2016), latent optimisation effects both $D$ and $G$ as shown in eq. 8. + +We next formally present this connection by showing that SGA can be seen as approximating Unrolled GANs (Metz et al., 2016). For the update $\theta _ { D } ^ { \prime } = \theta _ { D } + \Delta \theta _ { D }$ , we have the Taylor expansion approximation at $\theta _ { D }$ : + +$$ +f ( z ; \theta _ { D } + \Delta \theta _ { D } , \theta _ { G } ) \approx f ( z ; \theta _ { D } , \theta _ { G } ) + \left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } \right) ^ { T } \Delta \theta _ { D } +$$ + +Substitute $\begin{array} { r } { \Delta \theta _ { D } = - \alpha \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } } \end{array}$ α ∂f(z;θD,θG) , and take the derivatives with respect to θG on both sides: + +$$ +\frac { \partial f ( z ; \theta _ { D } + \Delta \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \approx \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } - 2 \alpha \left( \frac { \partial ^ { 2 } f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } \partial \theta _ { G } } \right) ^ { T } \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } +$$ + +which is the same as eq. 18 (taking the negative sign). Compared with the exact gradient from the unroll: + +$$ +\frac { \partial f ( z ; \theta _ { D } + \Delta \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } = \frac { \partial f ( z ; \theta _ { D } ^ { \prime } , \theta _ { G } ) } { \partial \theta _ { G } } - 2 \alpha \left( \frac { \partial ^ { 2 } f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } \partial \theta _ { G } } \right) ^ { T } \frac { \partial f ( z ; \theta _ { D } ^ { \prime } , \theta _ { G } ) } { \partial ( \theta _ { D } ^ { \prime } ) } +$$ + +The approximation in eq. 23 comes from using $\begin{array} { r l r } { \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } } & { { } \approx } & { \frac { \partial f ( z ; \theta _ { D } ^ { \prime } , \theta _ { G } ) } { \partial \theta _ { D } ^ { \prime } } } \end{array}$ and $\begin{array} { r } { \frac { \partial f ( \boldsymbol { z } ; \boldsymbol { \theta } _ { D } , \boldsymbol { \theta } _ { G } ) } { \partial \boldsymbol { \theta } _ { G } } \approx } \end{array}$ $\frac { \partial f ( \boldsymbol { z } ; \boldsymbol { \theta } _ { D } ^ { \prime } , \boldsymbol { \theta } _ { G } ) } { \partial \boldsymbol { \theta } _ { G } }$ as a result of the linear approximation. + +At this point, unrolling $D$ update only affects $\theta _ { D }$ . Although it is expensive to unroll both $D$ and $G$ , in principle, we can unroll $G$ update and compute the gradient of $\theta _ { D }$ similarly using $\Delta \theta _ { G } =$ $\alpha \frac { \partial f ( z ; \mathbf { \bar { \theta } } _ { D } , \theta _ { G } ) } { \partial \theta _ { G } }$ : + +$$ +\frac { \partial f ( z ; \theta _ { D } , \theta _ { G } + \Delta \theta _ { G } ) } { \partial \theta _ { D } } \approx \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } + 2 \alpha \left( \frac { \partial ^ { 2 } f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } \partial \theta _ { D } } \right) ^ { T } \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } +$$ + +which gives us the same update rule as SGA (eq. 17). This correspondence based on first order Taylor expansion is unsurprising, as SGA is based on linearising the adversarial dynamics (Balduzzi et al., 2018). + +# B.3 STOCHASTIC APPROXIMATION WITH TWO TIME SCALES + +Heusel et al. (2017) used the theory of stochastic approximation to analyse GAN training. Viewing the training process as stochastic approximation with two time scales (Borkar, 1997; Konda & Borkar, 1999), they suggest that the update of $D$ should be fast enough compared with that of $G$ . Under mild assumptions, Heusel et al. (2017) proved that such two time-scale update converges to local Nash equilibrium. Their analysis follows the idea of $( \tau , \delta )$ perturbation (Hirsch, 1989), where the slow updates $( G )$ is interpreted as a small perturbation over the ODE describing the fast update $( D )$ . Importantly, the size of perturbation $\delta$ is measured in the magnitude of parameter change, which is affected by both the learning rate and gradients. + +Here we show that LOGAN accelerates discriminator updates and slows down generator updates, thus helping the convergence of discriminator according to Heusel et al. (2017). We start from analysing the change of $\theta _ { G }$ . We assume that, without LO, it takes $\Delta \theta _ { G } = \theta _ { G } ^ { \prime } - \theta _ { G }$ to make a small constant amount of reduction in loss $L _ { G }$ : + +$$ +\rho = - f ( z ; \theta _ { D } , \theta _ { G } + \Delta \theta _ { G } ) + f ( z ; \theta _ { D } , \theta _ { G } ) +$$ + +Now using the optimised $z ^ { \prime } = z + \Delta z$ , we assess the change $\delta \theta _ { G }$ required to achieve the same amount of reduction: + +$$ +\rho = - f ( z + \Delta z ; \theta _ { D } , \theta _ { G } + \delta \theta _ { G } ) + f ( z ; \theta _ { D } , \theta _ { G } ) +$$ + +Intuitively, when $z$ “helps” $\theta _ { G }$ to achieve the same goal of increasing $f ( z ; \theta _ { D } , \theta _ { G } )$ by $\rho$ , the responsible of $\theta _ { G }$ becomes smaller, so it does not need to change as much as $\Delta \theta _ { G }$ , thus $\lVert \delta \theta _ { G } \rVert < \lVert \Delta \theta _ { G } \rVert$ . + +Formally, $f ( z ; \theta _ { D } , \theta _ { G } )$ and $f ( z + \Delta ; \theta _ { D } , \theta _ { G } + \delta \theta _ { G } )$ have the following Taylor expansions around $z$ and $\theta _ { G }$ : + +$$ +\begin{array} { c } { { f ( z ; \theta _ { d } , \theta _ { G } + \delta \theta _ { G } ) = f ( z ; \theta _ { D } , \theta _ { G } ) + \displaystyle \left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \right) ^ { T } \Delta \theta _ { G } + \epsilon ( \Delta \theta _ { G } ) } } \\ { { f ( z + \Delta z ; \theta _ { d } , \theta _ { G } + \delta \theta _ { G } ) = f ( z ; \theta _ { D } , \theta _ { G } ) + \displaystyle \left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial z } \right) ^ { T } } } \\ { { \Delta z + \displaystyle \left( \frac { \partial f ( z + \Delta z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \right) ^ { T } \delta \theta _ { G } + \epsilon ( \Delta z , \delta \theta _ { G } ) } } \end{array} +$$ + +Where $\epsilon ( \cdot )$ ’s are higher order terms of the increments. Using the assumption of eq. 26 and 27, we can combine eq. 28 and 29: + +$$ +\left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \right) ^ { T } \Delta \theta _ { G } = \left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial z } \right) ^ { T } \Delta z + \left( \frac { \partial f ( z + \Delta z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \right) ^ { T } \delta \theta _ { G } + \epsilon +$$ + +where $\epsilon = \epsilon ( \Delta z , \delta \theta _ { G } ) - \epsilon ( \Delta \theta _ { G } )$ . Since ∂f(z;θD,θG)∂z in gradient descent (eq. 3), + +$$ +\frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial z } \Delta z > 0 +$$ + +Therefore, we have the inequality + +$$ +\left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \right) ^ { T } \Delta \theta _ { G } < \left( \frac { \partial f ( z + \Delta z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \right) ^ { T } \delta \theta _ { G } + \epsilon +$$ + +If we further assume $\Delta \theta _ { G }$ and $\delta \theta _ { G }$ are obtained from stochastic gradient descent with identical learning rate, + +$$ +\Delta \theta _ { G } = \alpha \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } \qquad \delta \theta _ { G } = \alpha \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { G } } +$$ + +substituting eq. 33 into eq. 32 gives + +$$ +\lVert \Delta \theta _ { G } \rVert < \lVert \delta \theta _ { G } \rVert + \epsilon +$$ + +The same analysis applies to the discriminator. The similar intuition is that it takes the discriminator additional effort to compensate the exploitation from the optimised $z ^ { \prime }$ . We then obtain + +$$ +\left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } \right) ^ { T } \Delta \theta _ { D } = \left( \frac { \partial f ( z ; \theta _ { D } , \theta _ { G } ) } { \partial z } \right) ^ { T } \Delta z + \left( \frac { \partial f ( z + \Delta z ; \theta _ { D } , \theta _ { G } ) } { \partial \theta _ { D } } \right) ^ { T } \delta \theta _ { D } + \epsilon +$$ + +However, since the adversarial loss $L _ { D } = - L _ { G }$ , we have $\begin{array} { r } { \Delta \theta _ { D } = - \alpha \frac { \partial f ( \boldsymbol { z } ; \boldsymbol { \theta } _ { D } , \boldsymbol { \theta } _ { G } ) } { \partial \boldsymbol { \theta } _ { D } } } \end{array}$ and $\delta \theta _ { D } =$ $\begin{array} { r } { - \alpha \frac { \partial f ( \boldsymbol { z } ; \boldsymbol { \theta } _ { D } , \boldsymbol { \theta } _ { G } ) } { \partial \boldsymbol { \theta } _ { D } } } \end{array}$ taking the opposite signs of eq.33. For sufficiently small $\Delta z$ , $\Delta \theta _ { G }$ and $\delta \theta _ { G }$ , $\epsilon$ is close to zero, so $\lVert \Delta \theta _ { D } \rVert < \lVert \delta \theta _ { D } \rVert$ under our assumptions of small $\Delta z , \Delta \theta _ { G }$ and $\delta \theta _ { G }$ . + +mportantly, the bigger the product . Moreover, bigger step increases $\frac { \partial f ( z ) } { \partial z } \Delta z$ is, the more robust the id gap between updating qual and is to the error from, further facilitating $\epsilon$ $\mathbf { D }$ $\mathbf { G }$ convergence according to Heusel et al. (2017). Overall, our analysis suggests: + +1. More than one gradient descent step may not be helpful, since $\Delta z$ from multiple GD steps may deviate from the direction of $\frac { \partial f ( z ) } { \partial z }$ . +2. Large step of $\Delta z$ is more helpful in facilitating convergence by widening the gap between $\mathbf { D }$ and $\mathbf { G }$ updates (Heusel et al., 2017). +3. However, the step of $\Delta z$ cannot be too large. In addition to the linear approximation we used throughout our analysis, the approximate SGA breaks down when eq.21 is strongly violated when “overshoot” brings the gradients at $\frac { \partial f ( z ^ { \prime } ) } { \partial z ^ { \prime } }$ to the opposite sign of $\frac { \partial f ( z ) } { \partial z }$ . + +# C POISSON LIKELIHOOD FROM HINGE LOSS + +Here we provide a probabilistic interpretation of the hinge loss for the generator, which leads naturally to the scenario of a family of discriminators. Although this interpretation is not necessary for our current algorithm, it may provides useful guidance for incorporating multiple discriminators. + +We introduce the label $t = 1$ for real data and $t = 0$ fake samples. This section shows that the generator hinge loss + +$$ +L _ { G } = - D \left( G ( z ) \right) +$$ + +can be interpreted as a negative log-likelihood function: + +$$ +L _ { G } = - \ln p ( t = 1 ; D , G ( z ) ) +$$ + +Here $p ( t = 1 ; z , D , G )$ is the probability that the generated image $G ( z )$ can fool the discriminator $D$ . + +The original GAN’s discriminator can be interpreted as outputting a Bernoulli distribution $p ( t ; \beta _ { G } ) \mathbf { \bar { \alpha } } = \mathbf { \alpha } \beta _ { G } ^ { t } \cdot ( 1 - \beta _ { G } ) ^ { 1 - t }$ . In this case, if we parameterise $\beta _ { G } \ \bar { = } \ D \left( G ( z ) \right)$ , the generator loss is the negative log-likelihood + +$$ +- \ln P \big ( t = 1 ; D , G ( z ) \big ) = - \ln p ( t = 1 ; \beta _ { G } ) = - \ln \beta _ { G } = - \ln D \left( G ( z ) \right) +$$ + +Bernoulli, however, is not the only valid choice as the discriminator’s output distribution. Instead of sampling “1” or $ { { } ^ { 6 } } { 0 ^ { 9 } }$ , we assume that there are many identical discriminators that can independently vote to reject an input sample as fake. The number of votes $k$ in a given interval can be described by a Poisson distribution with parameter $\lambda$ with the following PMF: + +$$ +p ( k ; \lambda ) = \frac { \lambda ^ { k } e ^ { - \lambda } } { k ! } +$$ + +The probability that a generated image can fool all the discriminators is the probability of $G ( z )$ receiving no vote for rejection + +$$ +p ( k = 0 ; \lambda ) = e ^ { - \lambda } +$$ + +Therefore, we have the following negative log-likelihood as the generator loss if we parameterise $\lambda = - D \left( G ( z ) \right)$ : + +$$ +- \ln p \big ( k = 0 ; D , G ( z ) \big ) = - \ln p ( k = 0 ; \lambda ) = - D \left( G ( z ) \right) +$$ + +This interpretation has a caveat that when $D \left( G ( z ) \right) > 0$ the Poisson distribution is not well defined. However, in general the discriminator’s hinge loss + +$$ +{ \cal L } _ { D } = - \operatorname * { m i n } \left( 0 , - 1 + D ( x ) \right) - \operatorname * { m i n } \left( 0 , - 1 - D ( G ( z ) ) \right) +$$ + +pushes $D \left( G ( z ) \right) < 0$ via training. + +# D DETAILS IN COMPUTING DISTANCES IN FIGURE 5 A + +For a temporal sequence $x _ { 1 } , x _ { 2 } , \ldots , x _ { T }$ (changes of $z$ or $f ( z )$ at each training step in this paper), to normalise its variance while accounting for the non-stationarity, we process it as follows. We first compute the moving average and standard deviation over a window of size $N$ : + +$$ +\begin{array} { l } { \displaystyle \mu _ { t } = \frac { 1 } { N } \sum _ { u = t } ^ { t + N - 1 } x _ { u } } \\ { \displaystyle \sigma _ { t } = \sqrt { \frac { 1 } { N - 1 } \sum _ { u = t } ^ { t + N - 1 } ( x _ { u } - \mu _ { u } ) ^ { 2 } } } \end{array} +$$ + +Then normalise the sequence as: + +$$ +\bar { x } _ { t } = \frac { x _ { t } } { \sigma _ { t } } +$$ + +The result in Figure ${ \bf 5 a }$ is robust to the choice of window size. Our experiments with $N$ from 10 to 50 yielded visually similar plots. + +# E EXPERIMENTS WITH DCGAN AND CIFAR + +To test if latent optimisation works with models at more moderate scales, we applied it on SN-GANs (Miyato et al., 2018). Although our experiments on this model are less thorough than in the main paper with BigGAN-deep, we hope to provide basic guidelines for researchers interested in applying latent optimisation on smaller models. + +The experiments follows the same basic setup and hyper-parameter settings as the CS-GAN in Wu et al. (2019). There is no class conditioning in this model. For NGD, we found a smaller damping factor $\beta = 0 . 1$ , a $\| z \|$ regulariser weight of 3.0 (the same as in $\mathbf { W } \mathbf { u }$ et al. 2019), combined with optimising $7 0 \%$ of the latent source (instead of $5 0 \%$ for BigGAN-deep) worked best for SN-GANs. + +In addition, we found running extra latent optimisation steps benefited evaluation, so we use ten steps of latent optimisation in evaluation for results in this section, although the models were still trained with a single optimisation step. We reckon that smaller models might not be “over-parametrised” enough to fully amortise the computation from optimising $z$ , which can then further exploit the architecture in evaluation time. On the other hand, the overhead from running multiple iterations of latent optimisation is relatively small at this scale. We aim to further investigate this difference in future studies. + +Table 2 shows the FID and IS alongside SN-GAN and CS-CAN which used the same architecture. Here we observe similarly significant improvement over the baseline SN-GAN model, with an improvement of $1 6 . 8 \%$ in IS and $3 9 . 6 \%$ in FID. Figure 9 shows random samples from these two models. Overall, samples from LOGAN (NGD) have higher contrasts and sharper contours. + +Table 2: Comparison of Scores. The first and second columns are reproduced from Miyato et al. (2018) and Wu et al. (2019) respectively. We report the Inception Score (IS, higher is better, Salimans et al. 2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´ + +
SN-GANCS-GANLOGAN (NGD)
FID29.323.1 ± 0.517.7 ± 0.4
IS7.42 ± 0.087.80 ± 0.058.67 ± 0.05
+ +![](images/08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg) +Figure 6: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly high inception scores. Samples from the two panels were draw from truncations correspond to points C, D in figure $^ { 3 \mathrm { ~ b ~ } }$ respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9) + +![](images/85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg) +Figure 7: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly low FID. Samples from the two panels were draw from truncations correspond to points A, B in figure $^ { 3 } \mathbf { b }$ respectively. (FID/IS: (a) 5.04/126.8, (b) 5.09/217.0) + +![](images/a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg) +Figure 8: Truncation curves with additional baselines. In addition to the truncation curves reported in Figure $^ { 3 \mathrm { ~ b ~ } }$ , here we also include the Spectral-Normalised GAN (Miyato et al., 2018), SelfAttention GAN (Zhang et al., 2019), original BigGAN and BigGAN-deep as presented in Brock et al. (2018). + +![](images/da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg) +Figure 9: (a) Samples from SN-GAN. (b) Samples from LOGAN. \ No newline at end of file diff --git a/parse/train/rJeU_1SFvr/rJeU_1SFvr_content_list.json b/parse/train/rJeU_1SFvr/rJeU_1SFvr_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..569c3936fff7c47d2c5cf69aafba0e0012e45aa8 --- /dev/null +++ b/parse/train/rJeU_1SFvr/rJeU_1SFvr_content_list.json @@ -0,0 +1,2381 @@ +[ + { + "type": "text", + "text": "LOGAN: LATENT OPTIMISATION FOR GENERATIVEADVERSARIAL NETWORKS", + "text_level": 1, + "bbox": [ + 176, + 98, + 823, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 236, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Training generative adversarial networks requires balancing of delicate adversarial dynamics. Even with careful tuning, training may diverge or end up in a bad equilibrium with dropped modes. In this work, we introduce a new form of latent optimisation inspired by the CS-GAN and show that it improves adversarial dynamics by enhancing interactions between the discriminator and the generator. We develop supporting theoretical analysis from the perspectives of differentiable games and stochastic approximation. Our experiments demonstrate that latent optimisation can significantly improve GAN training, obtaining state-of-the-art performance for the ImageNet $1 2 8 \\times 1 2 8 )$ dataset. Our model achieves an Inception Score (IS) of 148 and an Frechet Inception Distance (FID) of ´ 3.4, an improvement of $1 7 \\%$ and $3 2 \\%$ in IS and FID respectively, compared with the baseline BigGAN-deep model with the same architecture and number of parameters. ", + "bbox": [ + 233, + 266, + 764, + 433 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 459, + 336, + 476 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Generative Adversarial Nets (GANs) are implicit generative models that can be trained to match a given data distribution. GANs were originally proposed and demonstrated for images by Goodfellow et al. (2014). As the field of generative modelling has advanced, GANs have remained at the frontier, generating high-fidelity images at large scale (Brock et al., 2018). However, despite growing insights into the dynamics of GAN training, most recent advances in large-scale image generation come from architectural improvements (Radford et al., 2015; Zhang et al., 2019), or regularisation focusing on particular parts of the model (Miyato et al., 2018; Miyato & Koyama, 2018). Inspired by the compressed sensing GAN (CS-GAN; Wu et al., 2019), we further exploit the benefit of latent optimisation in adversarial games using natural gradient descent to optimise the latent variable $z$ at each step of training, presenting a scalable and easy to implement approach to improve the dynamical interaction between the discriminator and the generator. For clarity, we unify these approaches as latent optimised GANs (LOGAN). ", + "bbox": [ + 174, + 491, + 825, + 657 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To summarise our contributions: ", + "bbox": [ + 176, + 665, + 387, + 679 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1. We present a novel analysis of latent optimisation in GANs from the perspective of differentiable games and stochastic approximation (Balduzzi et al., 2018; Heusel et al., 2017), arguing that latent optimisation can improve the dynamics of adversarial training. 2. Motivated by this analysis, we improve latent optimisation by taking advantage of efficient second-order updates. 3. Our algorithm improves the state-of-the-art BigGAN-deep model (Brock et al., 2018) by a significant margin, without introducing any architectural change or additional parameters, resulting in higher quality images and more diverse samples (Figure 1 and 2). ", + "bbox": [ + 212, + 690, + 825, + 814 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 174, + 837, + 326, + 854 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "2.1 NOTATION ", + "text_level": 1, + "bbox": [ + 174, + 869, + 287, + 883 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We use $\\theta _ { D }$ and $\\theta _ { G }$ to denote the vectors representing parameters of the generator and discriminator. We use $x$ for images, and $z$ for the latent source generating an image. The prime 0 is used to denote ", + "bbox": [ + 176, + 895, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg", + "image_caption": [ + "Figure 1: Samples from BigGAN-deep (a) and LOGAN (b) with similarly high IS. Samples from the two panels were drawn from truncation levels corresponding to points C and D in figure $^ { 3 \\mathrm { ~ b ~ } }$ respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9) " + ], + "image_footnote": [], + "bbox": [ + 187, + 101, + 805, + 311 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg", + "image_caption": [ + "Figure 2: Samples from BigGAN-deep (a) and LOGAN (b) with similarly low FID. Samples from the two panels were drawn from truncation levels corresponding to points A and $\\mathbf { B }$ in figure $^ { 3 \\mathrm { ~ b ~ } }$ respectively. (FID/IS: (a) 5.04/126.8, (b) 5.09/217.0) " + ], + "image_footnote": [], + "bbox": [ + 183, + 382, + 813, + 637 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "a variable after one update step, e.g., $\\begin{array} { r } { \\theta _ { D } ^ { \\prime } = \\theta _ { D } - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}$ . $p ( x )$ and $p ( z )$ denote the data distribution and source distribution respectively. $\\mathbb { E } _ { p ( x ) } \\left[ f ( x ) \\right]$ indicates taking the expectation of function $f ( x )$ over the distribution $p ( x )$ . ", + "bbox": [ + 173, + 723, + 826, + 773 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 GENERATIVE ADVERSARIAL NETS ", + "text_level": 1, + "bbox": [ + 176, + 795, + 455, + 809 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A GAN consists of a generator that generates image $x = G ( z ; \\theta _ { G } )$ from a latent source $z \\sim p ( z )$ , and a discriminator that scores the generated images as $D ( x ; \\theta _ { D } )$ (Goodfellow et al., 2014). Training GANs involves an adversarial game: while the discriminator tries to distinguish generated samples $x = G \\left( z ; \\theta _ { G } \\right)$ from data $x \\sim p ( x )$ , the generator tries to fool the discriminator. This procedure can be summarised as the following min-max game: ", + "bbox": [ + 173, + 821, + 825, + 893 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/49ef6ac3aa97a2050826c51eaedc2251718eabbf84d8767c066a07fb39e16ce6.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\theta _ { D } } \\operatorname* { m a x } _ { \\theta _ { G } } \\mathbb { E } _ { z \\sim p ( x ) } [ h _ { D } ( D ( x ; \\theta _ { D } ) ) ] + \\mathbb { E } _ { z \\sim p ( z ) } [ h _ { G } ( D ( G ( z ; \\theta _ { G } ) ; \\theta _ { D } ) ) ]\n$$", + "text_format": "latex", + "bbox": [ + 264, + 904, + 735, + 928 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/b0a285d0b11e1f95e3558f73431b445e8ae14eb47fc99bd1352d736e2370866f.jpg", + "table_caption": [ + "Table 1: Comparison of model scores. BigGAN-deep results are reproduced from Brock et al. (2018). “baseline” indicates our reproduced BigGAN-deep with small modifications. The 3rd and 4th columns are from the gradient descent (GD, ablated) and natural gradient descent (NGD) versions of LOGAN respectively. We report the Inception Score (IS, higher is better, Salimans et al. 2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´ " + ], + "table_footnote": [], + "table_body": "
BigGAN-DeepbaselineLOGAN (GD)LOGAN (NGD)
FID5.7 ± 0.34.92±0.054.86±0.093.36± 0.14
IS124.5 ± 2.0126.6 ± 1.3127.7 ± 3.5148.2 ±3.1
", + "bbox": [ + 245, + 186, + 746, + 232 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The exact form of $h ( \\cdot )$ depends on the choice of loss function (Goodfellow et al., 2014; Arjovsky et al., 2017; Nowozin et al., 2016). To simplify our presentation and analysis, we use the Wasserstein loss (Arjovsky et al., 2017), so that $h _ { D } ( t ) = - t$ and $h _ { G } ( t ) = t$ . Our experiments with BigGANdeep uses the hinge loss (Lim & Ye, 2017; Tran et al., 2017), which is identical to this form in its linear regime. Our analysis can be generalised to other losses as in previous theoretical work (e.g., Arora et al. 2017). To simplify notation, we abbreviate $f ( z ; \\theta _ { D } , \\bar { \\theta _ { G } } ) = D \\left( G \\left( z ; \\theta _ { G } \\right) ; \\theta _ { D } \\right)$ , which may be further simplified as $f ( z )$ when the explicit dependency on $\\theta _ { D }$ and $\\theta _ { G }$ can be omitted. ", + "bbox": [ + 173, + 260, + 825, + 359 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Training GANs requires carefully balancing updates to $D$ and $G$ , and is sensitive to both architecture and algorithm choices (Salimans et al., 2016; Radford et al., 2015). A recent milestone is BigGAN (and BigGAN-deep, Brock et al. 2018), which pushed the boundary of high fidelity image generation by scaling up GANs to an unprecedented level. BigGANs use an architecture based on residual blocks (He et al., 2016), in combination with regularisation mechanisms and self-attention (Saxe et al., 2014; Miyato et al., 2018; Zhang et al., 2019). ", + "bbox": [ + 173, + 364, + 825, + 449 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here we aim to improve the adversarial dynamics during training. We focus on the second term in eq. 1 which is at the heart of the min-max game, with adversarial losses for $D$ and $G$ , which can be written as ", + "bbox": [ + 173, + 455, + 823, + 494 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d9798381816ebb13030f282630c2560b31a3f074b0b634f6a5b39ac9d25df4d5.jpg", + "text": "$$\nL ( z ) = \\left[ L _ { D } ( z ) , L _ { G } ( z ) \\right] ^ { T } = \\left[ f ( z ) , - f ( z ) \\right] ^ { T }\n$$", + "text_format": "latex", + "bbox": [ + 352, + 492, + 647, + 513 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Computing the gradients with respect to $\\theta _ { D }$ and $\\theta _ { G }$ obtains the following gradient, which cannot be expressed as the gradient of any single function (Balduzzi et al., 2018): ", + "bbox": [ + 174, + 520, + 825, + 549 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ba041598a8041667fbb96c46986d1a22e659d254c76784899c8f385f41c5eb9e.jpg", + "text": "$$\ng = \\left[ \\frac { \\partial L _ { D } ( z ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T }\n$$", + "text_format": "latex", + "bbox": [ + 328, + 565, + 668, + 603 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The fact that $g$ is not the gradient of a function implies that gradient updates in GANs can exhibit cycling behaviour which can slow down or prevent convergence. In Balduzzi et al. (2018), vector fields of this form are referred to as the simultaneous gradient. Although many GAN models use alternating update rules (e.g., Goodfellow et al. 2014; Brock et al. 2018), following the gradient with respect to $\\theta _ { D }$ and $\\theta _ { G }$ alternatively in each step, they can still suffer from cycling, so we use the simpler simultaneous gradient (eq. 3) for our analysis. ", + "bbox": [ + 174, + 603, + 825, + 686 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 LATENT OPTIMISED GANS ", + "text_level": 1, + "bbox": [ + 176, + 702, + 403, + 717 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Inspired by compressed sensing (Candes et al., 2006; Donoho, 2006), Wu et al. (2019) introduced latent optimisation for GANs. We call this type of model latent-optimised GANs (LOGAN). Latent optimization has been shown to improve the stability of training as well as the final performance for medium-sized models such as DCGANs and Spectral Normalised GANs (Radford et al., 2015; Miyato et al., 2018). Latent optimisation exploits knowledge from $D$ to guide updates of $z$ . Intuitively, the gradient $\\begin{array} { r } { \\nabla _ { z } f ( z ) = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}$ points in the direction that satisfies the discriminator $D$ , which implies better samples. Therefore, instead of using the randomly sampled $z \\sim p ( z )$ , Wu et al. (2019) uses the optimised latent ", + "bbox": [ + 173, + 727, + 825, + 842 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/688128d9a5c94b3de1956cd3f8bdcb92f13470f5607bb114da55974e7e2c77ce.jpg", + "text": "$$\n\\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } \\qquad z ^ { \\prime } = z + \\Delta z\n$$", + "text_format": "latex", + "bbox": [ + 388, + 840, + 611, + 871 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "in eq. 1 for training 1. The general algorithm is summarised in Algorithm 1 and illustrated in Figure 3 a. We develop the natural gradient descent form of latent update in Section 4. ", + "bbox": [ + 176, + 873, + 823, + 901 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg", + "image_caption": [ + "Figure 3: (a) Schematic of LOGAN. We first compute a forward pass through $G$ and $D$ with a sampled latent $z$ . Then, gradients from the generator loss (dashed red arrow) are used to compute an improved latent, $z ^ { \\prime }$ . After this optimised latent code is used in a second forward pass, we compute gradients of the discriminator back through the latent optimisation into the model parameters $\\theta _ { D }$ , $\\theta _ { G }$ . These gradients are used to update the model. (b) Truncation curves illustrate the FID/IS tradeoff for each model by altering the range of the noise source $p ( z )$ . GD: gradient descent. NGD: natural gradient descent. Points A, B, C, D correspond to samples shown in Figure 1 and 2. " + ], + "image_footnote": [], + "bbox": [ + 186, + 103, + 805, + 351 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/7621bc68cbafac60b0d64ace1b03ec6acb5884420b7f0434eb4545e4cce8ef75.jpg", + "table_caption": [ + "Algorithm 1 Latent Optimised GANs with Automatic Differentiation " + ], + "table_footnote": [], + "table_body": "
Input: data distribution p(x),latent distribution p(z),D(:; 0D), G(-; 0g),learning rate α, batch size N repeat
Initialise discriminator and generator parameters 0D,0G fori=1 to Ndo
Sample z ~ p(z),x~p(x)
Compute the gradient D(G(z)) and use it to obtain △z from eq. 4 (GD) or eq. 12 (NGD) dz
Optimise the latent z' ← [+ △z],[:] indicates clipping the value between -1 and 1
= -D(G(z))
D(G(z'))-D(x) end for
Compute batch losses LG =N∑i=11 JN (i) and LD=∑=1 N L(i) LD
aLD aLG Update 0D and 0G with the gradients
0D, G
until reaches the maximum training steps
", + "bbox": [ + 178, + 493, + 820, + 708 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 ANALYSIS OF THE ALGORITHM ", + "text_level": 1, + "bbox": [ + 176, + 734, + 467, + 751 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To understand how latent optimisation improves GAN training, we analyse LOGAN as a 2-player differentiable game following Balduzzi et al. (2018); Gemp & Mahadevan (2018); Letcher et al. (2019). The appendix provides a complementary analysis that relates LOGAN to unrolled GANs (Metz et al., 2016) and stochastic approximation (Heusel et al., 2017; Borkar, 1997). ", + "bbox": [ + 173, + 767, + 825, + 823 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 THE SYMPLECTIC GRADIENT ADJUSTMENT (SGA) ", + "text_level": 1, + "bbox": [ + 173, + 840, + 571, + 856 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "An important problem with gradient-based optimization in GANs is that the vector-field generated by the losses of the discriminator and generator is not a gradient vector field. It follows that gradient descent is not guaranteed to find a local optimum and can cycle, which can slow down convergence or lead to phenomena like mode collapse and mode hopping. Balduzzi et al. (2018); Gemp & ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Mahadevan (2018) proposed Symplectic Gradient Adjustment (SGA) to improve the dynamics of gradient-based methods in adversarial games. For a game with gradient $g$ (eq. 3), define the Hessian as the second order derivatives with respect to the parameters, $H = \\nabla _ { \\theta } g$ . SGA uses the adjusted gradient ", + "bbox": [ + 173, + 103, + 825, + 159 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2f712f91570b8cabf50bafb2c9192f40a2b4dd9910cc127fcc455f6eab5db2b9.jpg", + "text": "$$\ng ^ { * } = g + \\lambda A ^ { T } g \\quad { \\mathrm { w h e r e ~ } } \\lambda { \\mathrm { ~ i s ~ a ~ p o s i t i v e ~ c o n s t a n t } }\n$$", + "text_format": "latex", + "bbox": [ + 334, + 157, + 665, + 176 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "and $\\begin{array} { r } { A = \\frac 1 2 ( H - H ^ { T } ) } \\end{array}$ is the anti-symmetric component of the Hessian. Applying SGA to GANs yields the adjusted updates (see Appendix B.1 for details): ", + "bbox": [ + 173, + 179, + 823, + 208 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/67e0d1e919fcd9d52a6a4d1e8c4bf0b6635f27b2e19aa29369320e597bd75929.jpg", + "text": "$$\ng ^ { \\ast } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } \\right] ^ { T }\n$$", + "text_format": "latex", + "bbox": [ + 217, + 213, + 779, + 257 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Compared with $g$ in eq. 3, the adjusted gradient $g ^ { * }$ has second-order terms reflecting the interactions between $D$ and $G$ . SGA has been shown to significantly improve GAN training in basic examples (Balduzzi et al., 2018), allowing faster and more robust convergence to stable fixed points (local Nash equilibria). Unfortunately, SGA is expensive to scale because computing the second-order derivatives with respect to all parameters is expensive. ", + "bbox": [ + 173, + 262, + 825, + 333 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Explicitly computing the gradients for the discriminator and generator at $z ^ { \\prime }$ after one step of latent optimisation (eq. 4) obtains ", + "bbox": [ + 173, + 339, + 823, + 367 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/ae331ab67c9eb164e4a2a09e560c8a52fe1b2f6fc9dfda3a2ea49271b13a8f6d.jpg", + "text": "$$\n\\begin{array} { r l r } & { } & { \\left[ \\frac { d L _ { D } } { d \\theta _ { D } } , \\frac { d L _ { G } } { d \\theta _ { G } } \\right] } ^ { T } = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } \\right] } ^ { T } { \\left( \\boldsymbol { \\hat { z } } ^ { \\prime } \\right) } } \\\\ & { } & { = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } \\right] } ^ { T } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 183, + 372, + 812, + 467 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In both equations, the first terms represent how $f ( z ^ { \\prime } )$ depends on the parameters directly and the second terms represent how $f ( z ^ { \\prime } )$ depends on the parameters via the optimised latent source. For the second equality, we substitute $\\begin{array} { r } { \\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}$ as the gradient-based update of $z$ and use $\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = } \\end{array}$ ∂f(z0)∂z0 . The original GAN’s gradient (eq. 3) does not include any second-order term, since ∆z = 0 without latent optimisation. In LOGAN, these extra terms are computed by automatic differentiation when back-propagating through the latent optimisation process (see Algorithm 1). ", + "bbox": [ + 173, + 484, + 825, + 579 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The SGA updates in eq. 6 and the LOGAN updates in eq. 8 are strikingly similar, suggesting that the latent step used by LOGAN reduces the negative effects of cycling by introducing a symplectic gradient adjustment into the optimization procedure. The role of the latent step can be formalized in terms of a third player, whose goal is to help the generator, see appendix B for details. ", + "bbox": [ + 174, + 584, + 825, + 641 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Crucially, latent optimisation approximates SGA using only second-order derivatives with respect to the latent $z$ and parameters of the discriminator and generator separately. The second order terms involving parameters of both the discriminator and the generator – which are extremely expensive to compute – are not used. For latent $z$ ’s with dimensions typically used in GANs (e.g., 128–256, orders of magnitude less than the number of parameters), these can be computed efficiently. In short, latent optimisation efficiently couples the gradients of the discriminator and generator, as prescribed by SGA, but using the much lower-dimensional latent source $z$ which makes the adjustment scalable. ", + "bbox": [ + 173, + 647, + 825, + 746 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "An important consequence of reducing the rotational aspect of GAN dynamics is that it is possible to use larger step sizes during training which suggests using stronger optimisers to fully take advantage of latent optimisation. Latent optimisation can improve GAN training dynamics further by allowing larger single steps $\\Delta z$ towards the direction of $\\frac { \\partial f ( z ) } { \\partial z }$ ) without overshooting. ", + "bbox": [ + 174, + 752, + 825, + 813 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 UNROLLING AND STOCHASTIC APPROXIMATION ", + "text_level": 1, + "bbox": [ + 174, + 828, + 547, + 843 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Appendix B further explains how LOGAN relates to unrolled GANs (Metz et al., 2016) and stochastic approximation. Our main finding is that latent optimisation accelerates the speed of updating $D$ relative to that of $G$ , facilitating convergence according to Heusel et al. (2017) (see also Figure ${ } 4 \\mathbf { b }$ ). In particular, the generator requires less update compared with $D$ to achieve the same reduction of loss, because latent optimisation “helps” $G$ . ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg", + "image_caption": [ + "Figure 4: (a) Scaling of gradients in natural gradient descent. We use $\\beta = 5$ in BigGAN-Deep experiments. (b) The update speed of the discriminator relative to the generator shown as the difference $\\lVert \\Delta \\boldsymbol { \\theta } _ { D } \\rVert - \\lVert \\Delta \\boldsymbol { \\theta } _ { G } \\rVert$ after each update step. Lines are smoothed with moving average using window size 20 (in total, there are 3007, 1659 and 1768 data points for each curve). For all curves oscillation strongly after training collapsed. " + ], + "image_footnote": [], + "bbox": [ + 191, + 101, + 803, + 297 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 LOGAN WITH NATURAL GRADIENT DESCENT ", + "text_level": 1, + "bbox": [ + 173, + 401, + 596, + 417 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Although our analysis suggests using strong optimisers for optimising $z$ , Wu et al. (2019) only used basic gradient descent (GD) with a fixed step-size. This choice limits the size $\\Delta z$ can take: in order not to overshoot when the curvature is large, the step size would be too conservative when the curvature is small. We hypothesis that GD is more detrimental for larger models, which have complex loss surfaces with highly varying curvatures. Consistent with this hypothesis, we observed only marginal improvement over the baseline using GD (section 5.3, Table 1, Figure $3 \\mathbf { b }$ ). ", + "bbox": [ + 174, + 433, + 825, + 517 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this work, we instead use natural gradient descent (NGD, Amari 1998) for latent optimisation. NGD can be seen as an approximate second-order optimisation method (Pascanu & Bengio, 2013; Martens, 2014), and has been applied successfully in many domains. By using the positive semidefinite (PSD) Gauss-Newton matrix to approximate the (possibly negative definite) Hessian, NGD often works even better than exact second-order methods. NGD is expensive in high dimensional parameter spaces, even with approximations (Martens, 2014). However, we demonstrate it is efficient for latent optimisation, even in very large models. ", + "bbox": [ + 173, + 522, + 825, + 622 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Given the gradient of $z$ , $\\begin{array} { r } { g = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}$ ∂f(z)∂z , NGD computes the update as ", + "bbox": [ + 173, + 627, + 602, + 647 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2c49f0b8b0f04b55a506116dd240c53aa29cbd4b6cfc4d69b7f74cd067ac65be.jpg", + "text": "$$\n\\Delta z = \\alpha { \\cal F } ^ { - 1 } g\n$$", + "text_format": "latex", + "bbox": [ + 447, + 651, + 550, + 670 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where the Fisher information matrix $F$ is defined as ", + "bbox": [ + 173, + 674, + 514, + 689 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/e0d8ff335b0f8f2887e74bbcf6734a13504dff62a18761803152f89d2faa4905.jpg", + "text": "$$\nF = \\mathbb { E } _ { p ( t \\mid z ) } \\left[ \\nabla \\ln p ( t | z ) \\nabla \\ln p ( t | z ) ^ { T } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 370, + 693, + 625, + 713 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The log-likelihood function $\\ln { p ( t | z ) }$ typically corresponds to commonly used error functions such as cross entropy loss. This correspondence is not necessary when NGD is interpreted as an approximate second-order method, as has long been used in practice (Martens, 2014). Nevertheless, Appendix C provides a Poisson log-likelihood interpretation for the hinge loss commonly used in GANs (Lim & Ye, 2017; Tran et al., 2017). An important difference between latent optimisation and commonly seen senarios using NGD is that the expectation over the condition $( z )$ is absent. Since each $z$ is only responsible for generating one image, it only minimises the loss $L _ { G } ( z )$ for this particular instance. Computing per-sample Fisher this way is necessary to approximate SGA (see Appendix B.1 for details). ", + "bbox": [ + 173, + 717, + 825, + 843 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "More specifically, we use the empirical Fisher $F ^ { \\prime }$ with Tikhonov damping, as in TONGA (Roux et al., 2008) ", + "bbox": [ + 173, + 849, + 825, + 877 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/fe2012b5a63efe20a298e3446b3edb39108a3712d4a798b9d3788fd8fd48eb92.jpg", + "text": "$$\nF ^ { \\prime } = g \\cdot g ^ { T } + \\beta I\n$$", + "text_format": "latex", + "bbox": [ + 437, + 875, + 560, + 893 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "$F ^ { \\prime }$ is cheaper to compute compared with the full Fisher, since $g$ is already available. The damping factor $\\beta$ regularises the step size, which is important when $F ^ { \\prime }$ only poorly approximates the Hessian ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg", + "image_caption": [ + "Figure 5: (a) The change from $\\Delta z$ across training, in $D$ ’s output space and $z$ ’s Euclidean space. The distances are normalised by their standard derivations computed from a moving window of size 20 (1007 data points in total). (b) Training curves from models with different “stop gradient” operations. For reference, the training curve from an unablated model is plotted as the dashed line. All instances with stop gradient collapsed (FID went up) early in training. " + ], + "image_footnote": [], + "bbox": [ + 189, + 99, + 807, + 300 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "or when the Hessian changes too much across the step. Using the Sherman-Morrison formula, the NGD update can be simplified into the following closed form: ", + "bbox": [ + 173, + 407, + 821, + 435 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/85b1b200778700525fac67da4661c56a14ab82cd6d2e008688bb1863b8a5e21a.jpg", + "text": "$$\n\\Delta z = \\alpha \\left( \\frac { I } { \\beta } - \\frac { g g ^ { T } } { \\beta ^ { 2 } + \\beta g ^ { T } g } \\right) g = \\frac { \\alpha } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) g\n$$", + "text_format": "latex", + "bbox": [ + 303, + 440, + 694, + 477 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "which does not involve any matrix inversion. Thus, NGD adapts the step size according to the curvature estimate $\\begin{array} { r } { c = \\frac { 1 } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) } \\end{array}$ . Figure ${ \\textbf { 4 a } }$ illustrates the scaling for different values of $\\beta$ . NGD automatically smooths the scale of updates by down-scaling the gradients as their norm grows, which also contributes to the smoothed norms of updates (Figure $4 \\ \\mathbf { b }$ ). Since the NGD update remains proportional to $g$ , our analysis based on gradient descent in section 3 still holds. ", + "bbox": [ + 174, + 481, + 825, + 561 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5 EXPERIMENTS AND ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 580, + 459, + 597 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We focus on large scale GANs based on BigGAN-deep (Brock et al., 2018) trained on $1 2 8 \\times 1 2 8$ size images from the ImageNet dataset (Deng et al., 2009). In Appendix E, we present results from applying our algorithm on Spectral Normalised GANs trained with CIFAR dataset (Krizhevsky et al., 2009), which obtains state-of-the-art scores on this model. ", + "bbox": [ + 174, + 611, + 825, + 667 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 MODEL CONFIGURATION ", + "text_level": 1, + "bbox": [ + 174, + 684, + 390, + 699 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We used the standard BigGAN-deep architecture with three minor modifications: 1. We increased the size of the latent source from 128 to 256, to compensate the randomness of the source lost when optimising $z$ . 2. We use the uniform distribution $\\mathcal { U } ( - 1 , 1 )$ instead of the standard normal distribution $\\mathcal { N } ( 0 , 1 )$ for $p ( z )$ , to be consistent with the clipping operation (Algorithm 1). 3. We use leaky ReLU instead of ReLU as the non-linearity for smoother gradient flow for $\\frac { \\partial f ( z ) } { \\partial z }$ . ", + "bbox": [ + 174, + 710, + 825, + 785 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Consistent with detailed findings in Brock et al. (2018) that these changes have limited effect, our experiment with this baseline model obtains only slightly better scores compared with those in Brock et al. (2018) (Table 1, see also Figure 8). The FID and IS are computed as in Brock et al. (2018), and IS values are computed from checkpoints with the lowest FIDs. The means and standard deviations are computed from 5 models with different random seeds. ", + "bbox": [ + 173, + 790, + 825, + 861 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To apply latent optimisation, we use a damping factor $\\beta = 5 . 0$ combined with a large step size of $\\alpha = 0 . 9$ . As an additional way of damping, we only optimise $5 0 \\%$ of $z$ ’s dimensions. Optimising the entire population of $z$ was unstable in our experiments. Similar to $\\mathbf { W } \\mathbf { u }$ et al. (2019), we found it was helpful to regularise the Euclidean norm of weight-change $\\Delta z$ , with a regulariser weight of ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "300.0. All other hyper-parameters, including learning rates and a large batch size of 2048, remain the same as in BigGAN-deep; we did not optimise these hyper-parameters. We call this model LOGAN (NGD). ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 BASIC RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 170, + 326, + 184 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Employing the same architecture and number of parameters as the BigGAN-deep baseline, LOGAN (NGD) achieved better FID and IS (Table 1). As observed by Brock et al. (2018), BigGAN training always eventually collapsed. Training with LOGAN also collapsed, perhaps due to higher-order dynamics beyond the scope we have analysed, but took significantly longer (600k steps versus $3 0 0 \\mathrm { k }$ steps with BigGAN-deep). ", + "bbox": [ + 174, + 198, + 825, + 268 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "During training, LOGAN was $2 - 3$ times slower per step compared with BigGAN-deep because of the additional forward and backward pass. We found that optimising $z$ during evaluation did not improve sample scores (even up to 10 steps), so we do not optimise $z$ for evaluation. Therefore, LOGAN has the same evaluation cost as original BigGAN-deep. To help understand this behaviour, we plot the change from $\\Delta z$ during training in Figure 5 a. Although the movement in Euclidean space $| | \\Delta z | |$ grew until training collapsed, the movement in $D$ ’s output space, measured as $\\| f ( z + \\Delta z ) - f ( z ) \\|$ , remained unchanged (see Appendix $\\mathrm { D }$ for details). As shown in our analysis, optimising $z$ improves the training dynamics, so LOGANs work well after training without requiring latent optimisation. ", + "bbox": [ + 173, + 275, + 825, + 401 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3 ABLATION STUDIES ", + "text_level": 1, + "bbox": [ + 176, + 424, + 352, + 439 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We verify our theoretical analysis in section 3 by examining key components of Algorithm 1 via ablation studies. First, we experimented with using basic GD to optimising $z$ , as in Wu et al. (2019), and call this model LOGAN (GD). A smaller step size of $\\alpha = 0 . 0 0 0 1$ was required; larger values were unstable and led to premature collapse of training. As shown in Table 1, the scores from LOGAN (GD) were worse than LOGAN (NGD) and similar to the baseline model. ", + "bbox": [ + 174, + 453, + 825, + 523 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We then evaluate the effects of removing those terms depending on the ordinary gradient (eq. 3). Since these terms were computed $\\frac { \\partial f ( z ) } { \\partial z }$ in eq. 8, which are not inback-propagating through the latent optimisation procedure, we removed them by selectively blocking back-propagation with “stop gradient” operations (e.g., in TensorFlow Abadi et al. 2016). Figure ${ \\bf 5 \\ B }$ shows the change of FIDs for the three models corresponding to removing $\\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { G } } \\right) ^ { T } \\ \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }$ , removing $\\begin{array} { r } { \\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}$ and removing both terms. As predicted by our analysis (section 3), both terms help stabilise training; training diverged early for all three ablations. ", + "bbox": [ + 173, + 530, + 825, + 656 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.4 TRUNCATION AND SAMPLES ", + "text_level": 1, + "bbox": [ + 176, + 679, + 411, + 693 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Truncation is a technique introduced by Brock et al. (2018) to illustrate the trade-off between the FID and IS in a trained model. For a model trained with $z \\sim p ( z )$ from a source distribution symmetric around 0, such as the standard normal distribution $\\mathcal { N } ( 0 , 1 )$ and the uniform distribution $\\mathcal { U } ( - 1 , 1 )$ , down-scaling (truncating) the source $\\bar { z } = s \\cdot z$ with $0 \\leq s \\leq 1$ gives samples with higher visual quality but reduced diversity. This observation is quantified as higher IS and lower FID when evaluating samples from truncated distributions. ", + "bbox": [ + 174, + 708, + 825, + 791 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure $^ { 3 \\mathrm { ~ b ~ } }$ plots the truncation curves for the baseline BigGAN-deep model, LOGAN (GD) and LOGAN (NGD), obtained by varying the truncation (value of $s$ ) from 1.0 (no truncation, upper-left ends of the curves) to 0.02 (extreme truncation, bottom-right ends). Each curve shows the trade-off between FID and IS for an individual model; curves towards the upper-right corner indicate better overall sample quality. The relative positions of curves in Figure 3 (b) shows LOGAN (NGD) has the best sample quality. Interestingly, although LOGAN (GD) and the baseline model have similar scores without truncation (upper-left ends of the curves, see also Table 1), LOGAN (GD) was better behaved with increasing truncation, suggesting LOGAN (GD) still converged to a better equilibrium. For further reference, we plot truncation curves from additional baseline models in Figure 8. ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 1 and Figure 2 show samples from chosen points on the truncation curves. In the high IS domain, C and D on the truncation curves both have similarly high IS of near 260. Samples from batches with such high IS have almost photo-realistic image quality. Figure 1 show that while the baseline model produced nearly uniform samples, LOGAN (NGD) could still generate highly diverse samples. On the other hand, A and B from Figure $^ { 3 \\mathrm { ~ b ~ } }$ have similarly low FID of near 5, indicating high sample diversity. Samples in Figure $^ { 2 \\mathbf { b } }$ show higher quality compared with those in a (e.g., the interfaces between the elephants and ground, the contours around the pandas). ", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 220, + 318, + 237 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this work we present the LOGAN model which significantly improves the state-of-the-art on large scale GAN training for image generation by online optimising the latent source $z$ . Our results illustrate improvements in quantitative evaluation and samples with higher quality and diversity. Moreover, our analysis suggests that LOGAN fundamentally improves adversarial training dynamics. We therefore expect our method to be useful in other tasks that involve adversarial training, including representation learning and inference (Donahue et al., 2017; Dumoulin et al., 2017), text generation (Zhang et al., 2019), style learning (Zhu et al., 2017; Karras et al., 2019), audio generation (Donahue et al., 2018) and video generation (Vondrick et al., 2016; Clark et al., 2019). ", + "bbox": [ + 173, + 252, + 825, + 364 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 385, + 285, + 400 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for largescale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and Implementation $\\left( \\left\\{ O S D I \\right\\} \\ I \\bar { \\ 6 } \\right)$ , pp. 265–283, 2016. \nShun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251– 276, 1998. \nMartin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein GAN. ´ arXiv preprint arXiv:1701.07875, 2017. \nSanjeev Arora, Rong Ge, Yingyu Liang, Tengyu Ma, and Yi Zhang. Generalization and equilibrium in generative adversarial nets. In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 224–232. JMLR. org, 2017. \nDavid Balduzzi, Sebastien Racaniere, James Martens, Jakob Foerster, Karl Tuyls, and Thore Graepel. The mechanics of n-player differentiable games. arXiv preprint arXiv:1802.05642, 2018. \nVivek S Borkar. Stochastic approximation with two time scales. Systems & Control Letters, 29(5): 291–294, 1997. \nAndrew Brock, Jeff Donahue, and Karen Simonyan. Large scale GAN training for high fidelity natural image synthesis. arXiv preprint arXiv:1809.11096, 2018. \nEmmanuel J Candes, Justin K Romberg, and Terence Tao. Stable signal recovery from incomplete and inaccurate measurements. Communications on Pure and Applied Mathematics: A Journal Issued by the Courant Institute of Mathematical Sciences, 59(8):1207–1223, 2006. \nAidan Clark, Jeff Donahue, and Karen Simonyan. Efficient video generation on complex datasets. arXiv preprint arXiv:1907.06571, 2019. \nJ. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical Image Database. In CVPR09, 2009. \nChris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. arXiv preprint arXiv:1802.04208, 2018. \nJeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. In ¨ ICLR, 2017. \nDavid L Donoho. Compressed sensing. IEEE Transactions on information theory, 52(4):1289– 1306, 2006. ", + "bbox": [ + 171, + 406, + 826, + 928 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Olivier Mastropietro, Alex Lamb, Martin Arjovsky, and Aaron Courville. Advesarially learned inference. In ICLR, 2017. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Gemp and Sridhar Mahadevan. Global Convergence to the Equilibrium of GANs using Variational Inequalities. In Arxiv:1808.01531, 2018. ", + "bbox": [ + 171, + 141, + 823, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. ", + "bbox": [ + 174, + 179, + 821, + 222 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ", + "bbox": [ + 176, + 231, + 823, + 273 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilibrium. In Advances in Neural Information Processing Systems, pp. 6626–6637, 2017. ", + "bbox": [ + 173, + 284, + 826, + 327 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Morris W Hirsch. Convergent activation dynamics in continuous time networks. Neural networks, 2(5):331–349, 1989. ", + "bbox": [ + 173, + 334, + 825, + 364 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tero Karras, Samuli Laine, and Timo Aila. A style-based generator architecture for generative adversarial networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 4401–4410, 2019. ", + "bbox": [ + 173, + 372, + 826, + 416 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Vijaymohan R Konda and Vivek S Borkar. Actor-critic–type learning algorithms for markov decision processes. SIAM Journal on control and Optimization, 38(1):94–123, 1999. ", + "bbox": [ + 173, + 424, + 821, + 454 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. Technical report, Citeseer, 2009. ", + "bbox": [ + 173, + 462, + 821, + 492 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alistair Letcher, David Balduzzi, Sebastien Racani ´ ere, James Martens, Jakob N Foerster, Karl Tuyls, \\` and Thore Graepel. Differentiable game mechanics. Journal of Machine Learning Research, 20 (84):1–40, 2019. ", + "bbox": [ + 174, + 501, + 825, + 544 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jae Hyun Lim and Jong Chul Ye. Geometric GAN. arXiv preprint arXiv:1705.02894, 2017. ", + "bbox": [ + 166, + 551, + 777, + 569 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "James Martens. New insights and perspectives on the natural gradient method. arXiv preprint arXiv:1412.1193, 2014. ", + "bbox": [ + 171, + 577, + 823, + 606 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Luke Metz, Ben Poole, David Pfau, and Jascha Sohl-Dickstein. Unrolled generative adversarial networks. CoRR, abs/1611.02163, 2016. URL http://arxiv.org/abs/1611.02163. ", + "bbox": [ + 169, + 614, + 823, + 645 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Takeru Miyato and Masanori Koyama. cGANs with projection discriminator. arXiv preprint arXiv:1802.05637, 2018. ", + "bbox": [ + 171, + 652, + 823, + 683 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative adversarial networks. arXiv preprint arXiv:1802.05957, 2018. ", + "bbox": [ + 171, + 690, + 823, + 720 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. $f$ -GAN: Training generative neural samplers using variational divergence minimization. In Advances in neural information processing systems, pp. 271–279, 2016. ", + "bbox": [ + 174, + 728, + 823, + 772 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint arXiv:1301.3584, 2013. ", + "bbox": [ + 171, + 781, + 823, + 810 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Barak A Pearlmutter. Fast exact multiplication by the hessian. Neural computation, 6(1):147–160, 1994. ", + "bbox": [ + 173, + 819, + 823, + 848 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015. ", + "bbox": [ + 173, + 857, + 821, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicolas L Roux, Pierre-Antoine Manzagol, and Yoshua Bengio. Topmoumoute online natural gradient algorithm. In Advances in neural information processing systems, pp. 849–856, 2008. ", + "bbox": [ + 173, + 895, + 820, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In Advances in neural information processing systems, pp. 2234–2242, 2016. \nAndrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. ICLR, 2014. \nDustin Tran, Rajesh Ranganath, and David Blei. Hierarchical implicit models and likelihood-free variational inference. In Advances in Neural Information Processing Systems, pp. 5523–5533, 2017. \nCarl Vondrick, Hamed Pirsiavash, and Antonio Torralba. Generating videos with scene dynamics. In Advances In Neural Information Processing Systems, pp. 613–621, 2016. \nYan Wu, Mihaela Rosca, and Timothy Lillicrap. Deep compressed sensing. In International Conference on Machine Learning, pp. 6850–6860, 2019. \nHan Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative adversarial networks. In International Conference on Machine Learning, pp. 7354–7363, 2019. \nJun-Yan Zhu, Taesung Park, Phillip Isola, and Alexei A Efros. Unpaired image-to-image translation using cycle-consistent adversarial networks. In Proceedings of the IEEE international conference on computer vision, pp. 2223–2232, 2017. ", + "bbox": [ + 171, + 102, + 826, + 390 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A ADDITIONAL SAMPLES AND RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 414, + 526, + 430 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Figure 6 and 7 provide additional samples, organised similarly as in Figure 1 and 2. Figure 8 shows additional truncation curves. ", + "bbox": [ + 173, + 444, + 823, + 473 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B DETAILED ANALYSIS OF LATENT OPTIMISATION ", + "text_level": 1, + "bbox": [ + 174, + 492, + 614, + 510 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "In this section we present three complementary analyses of LOGAN. In particular, we show how the algorithm brings together ideas from symplectic gradient adjustment, unrolled GANs and stochastic approximation with two time scales. ", + "bbox": [ + 174, + 523, + 825, + 565 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B.1 APPROXIMATE SYMPLECTIC GRADIENT ADJUSTMENT ", + "text_level": 1, + "bbox": [ + 174, + 582, + 593, + 597 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "To analyse LOGAN as a differentiable game we treat the latent step $\\Delta z$ as adding a third player to the original game played by the discriminator and generator. The third player’s parameter, $\\Delta z$ , is optimised online for each $z \\sim p ( z )$ . Together the three players (latent player, discriminator, and generator) have losses averaged over a batch of samples: ", + "bbox": [ + 173, + 607, + 825, + 664 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/3f634eef99021f2ea1d703ef6a70a926be391935e383b212b017baee8ba7da96.jpg", + "text": "$$\nL = [ \\eta L _ { G } , L _ { D } , L _ { G } ] ^ { T }\n$$", + "text_format": "latex", + "bbox": [ + 424, + 666, + 573, + 685 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { \\eta \\ : = \\ : \\frac { 1 } { N } } \\end{array}$ ( $N$ is the batch size) reflects the fact that each $\\Delta z$ is only optimised for a single sample $z$ , so its contribution to the total loss across a batch is small compared with $\\theta _ { D }$ and $\\theta _ { G }$ which are directly optimised for batch losses. This choice of $\\eta$ is essential for the following derivation, and has important practical implication. It means that the per-sample loss $L _ { G } ( z ^ { \\prime } )$ , instead of the loss summed over a batch Therefore, when usin $\\textstyle \\sum _ { n = 1 } ^ { N } L _ { G } ( z _ { n } ^ { \\prime } )$ , should be the only loss function guiding latent optimisation.ent descent (Section 4), the Fisher information matrix should only be computed using the current sample $z$ . ", + "bbox": [ + 173, + 686, + 825, + 789 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The resulting simultaneous gradient is ", + "bbox": [ + 176, + 795, + 426, + 810 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/70e7fe009e5b1609bb818fa3772fc182835a16495fe562233928ba82814530ea.jpg", + "text": "$$\n\\begin{array} { r } { g = \\left[ \\eta \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial L _ { D } ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ - \\eta \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 267, + 813, + 727, + 842 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Following Balduzzi et al. (2018), we can write the Hessian of the game as: ", + "bbox": [ + 174, + 844, + 663, + 858 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/c1405e82f56815cd622ed4e0f107f458103a4d376f606efc461889292e473a2f.jpg", + "text": "$$\nH = \\left[ \\begin{array} { c c c } { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z ^ { 2 } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } ^ { 2 } } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } ^ { 2 } } } \\end{array} \\right]\n$$", + "text_format": "latex", + "bbox": [ + 338, + 861, + 656, + 929 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The presence of a non-zero anti-symmetric component in the Hessian ", + "bbox": [ + 174, + 103, + 630, + 118 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/06f68846debd7be03af0b8c45a25ad62e753ceedbbf6feeb7d863e75698a5519.jpg", + "text": "$$\nA = \\frac { 1 } { 2 } ( H - H ^ { T } ) = \\left[ \\begin{array} { c c c } { 0 } & { - \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { 0 } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { 0 } \\end{array} \\right]\n$$", + "text_format": "latex", + "bbox": [ + 261, + 121, + 736, + 186 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "implies the dynamics have a rotational component which can cause cycling or slow down convergence. Since $\\eta \\ll 1$ for typical batch sizes (e.g., $\\frac { 1 } { 6 4 }$ for DCGAN and $\\scriptstyle { \\frac { 1 } { 2 0 4 8 } }$ for BigGAN-deep), we abbreviate $\\begin{array} { r } { \\gamma = \\frac { 1 + \\eta } { 2 } \\approx \\frac { 1 - \\eta } { 2 } } \\end{array}$ 1−η2 to simplify notations. ", + "bbox": [ + 176, + 188, + 820, + 234 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Symplectic gradient adjustment (SGA) counteracts the rotational force by adding an adjustment term to the gradient to obtain $g ^ { * } g + \\lambda A ^ { T } g$ , which for the discriminator and generator has the form: ", + "bbox": [ + 176, + 239, + 823, + 281 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/f82a74d96af732845e2e2f6d32024d52311fa45b640f03a70427ce193a4974a0.jpg", + "text": "$$\n\\begin{array} { r l } & { g _ { D } ^ { * } = \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } } \\\\ & { g _ { G } ^ { * } = - \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 253, + 281, + 738, + 359 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The gradient with respect to $\\Delta z$ is ignored since the convergence of training only depends on $\\theta _ { D }$ and $\\theta _ { G }$ . ", + "bbox": [ + 174, + 361, + 823, + 390 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "If we drop the last terms in eq.17 and 18, which are expensive to compute for large models with high-dimensional $\\theta _ { D }$ and $\\theta _ { G }$ , and use $\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}$ , the adjusted updates can be rewritten as ", + "bbox": [ + 174, + 395, + 823, + 430 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/ddd060faa830066b423a9dba1bf2398d1116d935be8c7b4059ae1347eff153f6.jpg", + "text": "$$\n\\begin{array} { l } { { g _ { D } ^ { * } \\approx { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } } + \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\\\ { { g _ { G } ^ { * } \\approx - { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } } - \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { G } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 351, + 433, + 645, + 511 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Because of the thiciently computing r, thand still the terms depend on is non-trivial (e.g., Pearl $\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }$ to adjust the gradients. Effi- 1994). However, if we intro$\\frac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\boldsymbol { z } ^ { \\prime } \\partial \\theta _ { D } }$ \nduce the local approximation ", + "bbox": [ + 173, + 513, + 823, + 564 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/35cff76831eacae66e68db90fbb7ecc829f2cd7e044aab85a02fce6866b78817.jpg", + "text": "$$\n\\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } } \\qquad \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } }\n$$", + "text_format": "latex", + "bbox": [ + 351, + 568, + 647, + 602 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "hen the adjusted gradient becomes identical to 8 from latent optimisation. ", + "bbox": [ + 186, + 603, + 655, + 618 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In other words, automatic differentiation by commonly used machine learning packages can compute the adjusted gradient for $\\theta _ { D }$ and $\\theta _ { G }$ when back-propagating through the latent optimisation process. Despite the approximation involved in this analysis, both our experiments in section 5 and the results from Wu et al. (2019) verified that latent optimisation can significantly improve GAN training. ", + "bbox": [ + 173, + 625, + 825, + 694 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B.2 RELATION WITH UNROLLED GANS ", + "text_level": 1, + "bbox": [ + 176, + 710, + 464, + 726 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Latent optimisation can be seen as unrolling GANs (Metz et al., 2016) in the space of the latent, rather than the parameters. Unrolling in the latent space has the advantages that: ", + "bbox": [ + 173, + 736, + 823, + 765 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "1. LOGAN is more scalable than Unrolled GANs because it avoids second-order derivatives over a potentially very large number of parameters. \n2. While unrolling the update of $D$ only affects the parameters of $G$ (as in Metz et al. 2016), latent optimisation effects both $D$ and $G$ as shown in eq. 8. ", + "bbox": [ + 210, + 775, + 825, + 837 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We next formally present this connection by showing that SGA can be seen as approximating Unrolled GANs (Metz et al., 2016). For the update $\\theta _ { D } ^ { \\prime } = \\theta _ { D } + \\Delta \\theta _ { D }$ , we have the Taylor expansion approximation at $\\theta _ { D }$ : ", + "bbox": [ + 178, + 845, + 825, + 888 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/78317d9d47e2549c887d661c5307f48b600bca77663bca33a556d3df5e6d0547.jpg", + "text": "$$\nf ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) \\approx f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D }\n$$", + "text_format": "latex", + "bbox": [ + 281, + 890, + 717, + 929 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Substitute $\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}$ α ∂f(z;θD,θG) , and take the derivatives with respect to θG on both sides: ", + "bbox": [ + 171, + 99, + 774, + 121 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/5b4757c45da4bce2b3b273adb772fefb3404f5732f9ff9bdc418fbd210ff275f.jpg", + "text": "$$\n\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } }\n$$", + "text_format": "latex", + "bbox": [ + 205, + 127, + 763, + 165 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "which is the same as eq. 18 (taking the negative sign). Compared with the exact gradient from the unroll: ", + "bbox": [ + 173, + 170, + 826, + 198 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b9c16173498b9a199f8317feb4362c7cd47d0a484904c103e6548a649ef4f32c.jpg", + "text": "$$\n\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } = \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial ( \\theta _ { D } ^ { \\prime } ) }\n$$", + "text_format": "latex", + "bbox": [ + 207, + 202, + 764, + 241 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The approximation in eq. 23 comes from using $\\begin{array} { r l r } { \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } & { { } \\approx } & { \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { D } ^ { \\prime } } } \\end{array}$ and $\\begin{array} { r } { \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } } \\approx } \\end{array}$ $\\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } ^ { \\prime } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } }$ as a result of the linear approximation. ", + "bbox": [ + 173, + 247, + 825, + 289 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "At this point, unrolling $D$ update only affects $\\theta _ { D }$ . Although it is expensive to unroll both $D$ and $G$ , in principle, we can unroll $G$ update and compute the gradient of $\\theta _ { D }$ similarly using $\\Delta \\theta _ { G } =$ $\\alpha \\frac { \\partial f ( z ; \\mathbf { \\bar { \\theta } } _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }$ : ", + "bbox": [ + 173, + 295, + 825, + 344 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a13e4b99474e8adbcd85d8000d5b173696b338a4702f571b621bb4f994a41e82.jpg", + "text": "$$\n\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) } { \\partial \\theta _ { D } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } + 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }\n$$", + "text_format": "latex", + "bbox": [ + 209, + 349, + 763, + 388 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "which gives us the same update rule as SGA (eq. 17). This correspondence based on first order Taylor expansion is unsurprising, as SGA is based on linearising the adversarial dynamics (Balduzzi et al., 2018). ", + "bbox": [ + 173, + 393, + 823, + 435 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B.3 STOCHASTIC APPROXIMATION WITH TWO TIME SCALES ", + "text_level": 1, + "bbox": [ + 173, + 452, + 609, + 467 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Heusel et al. (2017) used the theory of stochastic approximation to analyse GAN training. Viewing the training process as stochastic approximation with two time scales (Borkar, 1997; Konda & Borkar, 1999), they suggest that the update of $D$ should be fast enough compared with that of $G$ . Under mild assumptions, Heusel et al. (2017) proved that such two time-scale update converges to local Nash equilibrium. Their analysis follows the idea of $( \\tau , \\delta )$ perturbation (Hirsch, 1989), where the slow updates $( G )$ is interpreted as a small perturbation over the ODE describing the fast update $( D )$ . Importantly, the size of perturbation $\\delta$ is measured in the magnitude of parameter change, which is affected by both the learning rate and gradients. ", + "bbox": [ + 173, + 477, + 825, + 590 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Here we show that LOGAN accelerates discriminator updates and slows down generator updates, thus helping the convergence of discriminator according to Heusel et al. (2017). We start from analysing the change of $\\theta _ { G }$ . We assume that, without LO, it takes $\\Delta \\theta _ { G } = \\theta _ { G } ^ { \\prime } - \\theta _ { G }$ to make a small constant amount of reduction in loss $L _ { G }$ : ", + "bbox": [ + 173, + 595, + 825, + 654 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/560dd7ea33fa2ab6bac3edd07f29bfea53b60fb73c0da37564cef24388f6b7a8.jpg", + "text": "$$\n\\rho = - f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )\n$$", + "text_format": "latex", + "bbox": [ + 356, + 659, + 642, + 676 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Now using the optimised $z ^ { \\prime } = z + \\Delta z$ , we assess the change $\\delta \\theta _ { G }$ required to achieve the same amount of reduction: ", + "bbox": [ + 174, + 681, + 823, + 710 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/33bfe519ea27fb3cc07953789e04f99bf10855a41a6814d2c03e24d712738a29.jpg", + "text": "$$\n\\rho = - f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )\n$$", + "text_format": "latex", + "bbox": [ + 338, + 717, + 660, + 734 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Intuitively, when $z$ “helps” $\\theta _ { G }$ to achieve the same goal of increasing $f ( z ; \\theta _ { D } , \\theta _ { G } )$ by $\\rho$ , the responsible of $\\theta _ { G }$ becomes smaller, so it does not need to change as much as $\\Delta \\theta _ { G }$ , thus $\\lVert \\delta \\theta _ { G } \\rVert < \\lVert \\Delta \\theta _ { G } \\rVert$ . ", + "bbox": [ + 176, + 739, + 823, + 768 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Formally, $f ( z ; \\theta _ { D } , \\theta _ { G } )$ and $f ( z + \\Delta ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } )$ have the following Taylor expansions around $z$ and $\\theta _ { G }$ : ", + "bbox": [ + 173, + 773, + 825, + 804 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b269fe998c4514bfe1f9b11591d16220b3c11dbcf589ae3d2036981f5c9a6899.jpg", + "text": "$$\n\\begin{array} { c } { { f ( z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } + \\epsilon ( \\Delta \\theta _ { G } ) } } \\\\ { { f ( z + \\Delta z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } } } \\\\ { { \\Delta z + \\displaystyle \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 808, + 766, + 925 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Where $\\epsilon ( \\cdot )$ ’s are higher order terms of the increments. Using the assumption of eq. 26 and 27, we can combine eq. 28 and 29: ", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/eb0fbf8ff34caaf9e0785a7d90c0fe6e5c83db3aa8175fa714064e095a8226bd.jpg", + "text": "$$\n\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon\n$$", + "text_format": "latex", + "bbox": [ + 184, + 138, + 790, + 176 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $\\epsilon = \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) - \\epsilon ( \\Delta \\theta _ { G } )$ . Since ∂f(z;θD,θG)∂z in gradient descent (eq. 3), ", + "bbox": [ + 171, + 183, + 743, + 204 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/858f0c65d77db71a418a03d70c5e0606399c15898887cbb3f48e18b293dd0b98.jpg", + "text": "$$\n\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\Delta z > 0\n$$", + "text_format": "latex", + "bbox": [ + 421, + 209, + 578, + 242 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Therefore, we have the inequality ", + "bbox": [ + 174, + 247, + 397, + 262 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/db5b604b7ec94cc6f59305cd5b5265121dd0c73f8e9d8c2c1896d27ffa48cca5.jpg", + "text": "$$\n\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } < \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon\n$$", + "text_format": "latex", + "bbox": [ + 287, + 268, + 715, + 308 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "If we further assume $\\Delta \\theta _ { G }$ and $\\delta \\theta _ { G }$ are obtained from stochastic gradient descent with identical learning rate, ", + "bbox": [ + 173, + 313, + 823, + 340 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/5110787851e3c0737d7cb10dc05adb2764ab13cef0bde9dd05eedfdb6bf7ec2a.jpg", + "text": "$$\n\\Delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\qquad \\delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }\n$$", + "text_format": "latex", + "bbox": [ + 302, + 340, + 694, + 375 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "substituting eq. 33 into eq. 32 gives ", + "bbox": [ + 174, + 376, + 408, + 391 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/2756506a6e2ccfcb30acbeff91257cd388a2e6e75ab1615852a3ab6933c68f80.jpg", + "text": "$$\n\\lVert \\Delta \\theta _ { G } \\rVert < \\lVert \\delta \\theta _ { G } \\rVert + \\epsilon\n$$", + "text_format": "latex", + "bbox": [ + 428, + 397, + 573, + 416 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The same analysis applies to the discriminator. The similar intuition is that it takes the discriminator additional effort to compensate the exploitation from the optimised $z ^ { \\prime }$ . We then obtain ", + "bbox": [ + 173, + 422, + 825, + 452 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/28bbbaec800be633c323dbece41044abf5da91701bf2a0f3981a0c739ef49503.jpg", + "text": "$$\n\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\delta \\theta _ { D } + \\epsilon\n$$", + "text_format": "latex", + "bbox": [ + 183, + 457, + 794, + 496 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "However, since the adversarial loss $L _ { D } = - L _ { G }$ , we have $\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}$ and $\\delta \\theta _ { D } =$ $\\begin{array} { r } { - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}$ taking the opposite signs of eq.33. For sufficiently small $\\Delta z$ , $\\Delta \\theta _ { G }$ and $\\delta \\theta _ { G }$ , $\\epsilon$ is close to zero, so $\\lVert \\Delta \\theta _ { D } \\rVert < \\lVert \\delta \\theta _ { D } \\rVert$ under our assumptions of small $\\Delta z , \\Delta \\theta _ { G }$ and $\\delta \\theta _ { G }$ . ", + "bbox": [ + 174, + 503, + 826, + 558 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "mportantly, the bigger the product . Moreover, bigger step increases $\\frac { \\partial f ( z ) } { \\partial z } \\Delta z$ is, the more robust the id gap between updating qual and is to the error from, further facilitating $\\epsilon$ $\\mathbf { D }$ $\\mathbf { G }$ convergence according to Heusel et al. (2017). Overall, our analysis suggests: ", + "bbox": [ + 174, + 563, + 826, + 609 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "1. More than one gradient descent step may not be helpful, since $\\Delta z$ from multiple GD steps may deviate from the direction of $\\frac { \\partial f ( z ) } { \\partial z }$ . \n2. Large step of $\\Delta z$ is more helpful in facilitating convergence by widening the gap between $\\mathbf { D }$ and $\\mathbf { G }$ updates (Heusel et al., 2017). \n3. However, the step of $\\Delta z$ cannot be too large. In addition to the linear approximation we used throughout our analysis, the approximate SGA breaks down when eq.21 is strongly violated when “overshoot” brings the gradients at $\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }$ to the opposite sign of $\\frac { \\partial f ( z ) } { \\partial z }$ . ", + "bbox": [ + 210, + 619, + 825, + 738 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C POISSON LIKELIHOOD FROM HINGE LOSS ", + "text_level": 1, + "bbox": [ + 173, + 756, + 558, + 773 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here we provide a probabilistic interpretation of the hinge loss for the generator, which leads naturally to the scenario of a family of discriminators. Although this interpretation is not necessary for our current algorithm, it may provides useful guidance for incorporating multiple discriminators. ", + "bbox": [ + 173, + 789, + 825, + 832 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We introduce the label $t = 1$ for real data and $t = 0$ fake samples. This section shows that the generator hinge loss ", + "bbox": [ + 173, + 837, + 825, + 866 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/5e64840cde5a5c641e9934aeafb0830a37f1c284d9c281b4f67191fac2af05dc.jpg", + "text": "$$\nL _ { G } = - D \\left( G ( z ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 437, + 866, + 562, + 882 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "can be interpreted as a negative log-likelihood function: ", + "bbox": [ + 173, + 886, + 540, + 901 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/755e51838e95d4086e4f2d4e3f6d5584b88bafa3dac29a07a08babae1248718b.jpg", + "text": "$$\nL _ { G } = - \\ln p ( t = 1 ; D , G ( z ) )\n$$", + "text_format": "latex", + "bbox": [ + 400, + 909, + 598, + 925 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here $p ( t = 1 ; z , D , G )$ is the probability that the generated image $G ( z )$ can fool the discriminator $D$ . ", + "bbox": [ + 171, + 102, + 825, + 132 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The original GAN’s discriminator can be interpreted as outputting a Bernoulli distribution $p ( t ; \\beta _ { G } ) \\mathbf { \\bar { \\alpha } } = \\mathbf { \\alpha } \\beta _ { G } ^ { t } \\cdot ( 1 - \\beta _ { G } ) ^ { 1 - t }$ . In this case, if we parameterise $\\beta _ { G } \\ \\bar { = } \\ D \\left( G ( z ) \\right)$ , the generator loss is the negative log-likelihood ", + "bbox": [ + 173, + 138, + 826, + 181 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/ebe3d36a3729558f24b9cb6f44eeb628b0b67246301244d5f6ca76a9dfff6414.jpg", + "text": "$$\n- \\ln P \\big ( t = 1 ; D , G ( z ) \\big ) = - \\ln p ( t = 1 ; \\beta _ { G } ) = - \\ln \\beta _ { G } = - \\ln D \\left( G ( z ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 253, + 186, + 745, + 205 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Bernoulli, however, is not the only valid choice as the discriminator’s output distribution. Instead of sampling “1” or $ { { } ^ { 6 } } { 0 ^ { 9 } }$ , we assume that there are many identical discriminators that can independently vote to reject an input sample as fake. The number of votes $k$ in a given interval can be described by a Poisson distribution with parameter $\\lambda$ with the following PMF: ", + "bbox": [ + 173, + 218, + 825, + 275 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/573cd2159ad10fe7c4e31950d16db1c118bbf937fdb1deeca3c568b63402b823.jpg", + "text": "$$\np ( k ; \\lambda ) = \\frac { \\lambda ^ { k } e ^ { - \\lambda } } { k ! }\n$$", + "text_format": "latex", + "bbox": [ + 437, + 280, + 558, + 314 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The probability that a generated image can fool all the discriminators is the probability of $G ( z )$ receiving no vote for rejection ", + "bbox": [ + 173, + 327, + 825, + 354 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/a64e4aa0d35d4a74b8b0ce7c8219d18a532639a209e45b708027d63b0f26d3d9.jpg", + "text": "$$\np ( k = 0 ; \\lambda ) = e ^ { - \\lambda }\n$$", + "text_format": "latex", + "bbox": [ + 434, + 353, + 562, + 372 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Therefore, we have the following negative log-likelihood as the generator loss if we parameterise $\\lambda = - D \\left( G ( z ) \\right)$ : ", + "bbox": [ + 173, + 375, + 826, + 404 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/3d3841bcb9452892eb0bbfa152b70e2643e23e6889ec6905dd315b3e7dd4720c.jpg", + "text": "$$\n- \\ln p \\big ( k = 0 ; D , G ( z ) \\big ) = - \\ln p ( k = 0 ; \\lambda ) = - D \\left( G ( z ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 303, + 410, + 694, + 429 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This interpretation has a caveat that when $D \\left( G ( z ) \\right) > 0$ the Poisson distribution is not well defined. However, in general the discriminator’s hinge loss ", + "bbox": [ + 173, + 434, + 823, + 464 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f506e926681df9be3127dca9453aa7f63c40e5f7a47543976a043e5dd36fcbad.jpg", + "text": "$$\n{ \\cal L } _ { D } = - \\operatorname * { m i n } \\left( 0 , - 1 + D ( x ) \\right) - \\operatorname * { m i n } \\left( 0 , - 1 - D ( G ( z ) ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 307, + 468, + 691, + 488 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "pushes $D \\left( G ( z ) \\right) < 0$ via training. ", + "bbox": [ + 173, + 494, + 400, + 511 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D DETAILS IN COMPUTING DISTANCES IN FIGURE 5 A ", + "text_level": 1, + "bbox": [ + 174, + 529, + 642, + 546 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For a temporal sequence $x _ { 1 } , x _ { 2 } , \\ldots , x _ { T }$ (changes of $z$ or $f ( z )$ at each training step in this paper), to normalise its variance while accounting for the non-stationarity, we process it as follows. We first compute the moving average and standard deviation over a window of size $N$ : ", + "bbox": [ + 173, + 560, + 825, + 603 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/b0054f0e51f8d020f82fc7d0c8c600504cd099f7774e67ecc59e938693dca699.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\mu _ { t } = \\frac { 1 } { N } \\sum _ { u = t } ^ { t + N - 1 } x _ { u } } \\\\ { \\displaystyle \\sigma _ { t } = \\sqrt { \\frac { 1 } { N - 1 } \\sum _ { u = t } ^ { t + N - 1 } ( x _ { u } - \\mu _ { u } ) ^ { 2 } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 383, + 609, + 614, + 705 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Then normalise the sequence as: ", + "bbox": [ + 174, + 709, + 388, + 724 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e90cbb7d2f2f1acf6e5335ac6e4d56ab6f2452c87406e52e43ed256b920d562c.jpg", + "text": "$$\n\\bar { x } _ { t } = \\frac { x _ { t } } { \\sigma _ { t } }\n$$", + "text_format": "latex", + "bbox": [ + 468, + 722, + 529, + 751 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The result in Figure ${ \\bf 5 a }$ is robust to the choice of window size. Our experiments with $N$ from 10 to 50 yielded visually similar plots. ", + "bbox": [ + 173, + 752, + 825, + 781 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "E EXPERIMENTS WITH DCGAN AND CIFAR", + "text_level": 1, + "bbox": [ + 173, + 800, + 565, + 818 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "To test if latent optimisation works with models at more moderate scales, we applied it on SN-GANs (Miyato et al., 2018). Although our experiments on this model are less thorough than in the main paper with BigGAN-deep, we hope to provide basic guidelines for researchers interested in applying latent optimisation on smaller models. ", + "bbox": [ + 174, + 832, + 825, + 888 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The experiments follows the same basic setup and hyper-parameter settings as the CS-GAN in Wu et al. (2019). There is no class conditioning in this model. For NGD, we found a smaller damping factor $\\beta = 0 . 1$ , a $\\| z \\|$ regulariser weight of 3.0 (the same as in $\\mathbf { W } \\mathbf { u }$ et al. 2019), combined with optimising $7 0 \\%$ of the latent source (instead of $5 0 \\%$ for BigGAN-deep) worked best for SN-GANs. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In addition, we found running extra latent optimisation steps benefited evaluation, so we use ten steps of latent optimisation in evaluation for results in this section, although the models were still trained with a single optimisation step. We reckon that smaller models might not be “over-parametrised” enough to fully amortise the computation from optimising $z$ , which can then further exploit the architecture in evaluation time. On the other hand, the overhead from running multiple iterations of latent optimisation is relatively small at this scale. We aim to further investigate this difference in future studies. ", + "bbox": [ + 174, + 138, + 825, + 236 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Table 2 shows the FID and IS alongside SN-GAN and CS-CAN which used the same architecture. Here we observe similarly significant improvement over the baseline SN-GAN model, with an improvement of $1 6 . 8 \\%$ in IS and $3 9 . 6 \\%$ in FID. Figure 9 shows random samples from these two models. Overall, samples from LOGAN (NGD) have higher contrasts and sharper contours. ", + "bbox": [ + 174, + 242, + 825, + 300 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/8252bfa40a1cf81e7dfcd6a4941fb2e9cf65565f39901908143bf6a503a07345.jpg", + "table_caption": [ + "Table 2: Comparison of Scores. The first and second columns are reproduced from Miyato et al. (2018) and Wu et al. (2019) respectively. We report the Inception Score (IS, higher is better, Salimans et al. 2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´ " + ], + "table_footnote": [], + "table_body": "
SN-GANCS-GANLOGAN (NGD)
FID29.323.1 ± 0.517.7 ± 0.4
IS7.42 ± 0.087.80 ± 0.058.67 ± 0.05
", + "bbox": [ + 313, + 371, + 681, + 416 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg", + "image_caption": [ + "Figure 6: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly high inception scores. Samples from the two panels were draw from truncations correspond to points C, D in figure $^ { 3 \\mathrm { ~ b ~ } }$ respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9) " + ], + "image_footnote": [], + "bbox": [ + 196, + 106, + 799, + 886 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg", + "image_caption": [ + "Figure 7: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly low FID. Samples from the two panels were draw from truncations correspond to points A, B in figure $^ { 3 } \\mathbf { b }$ respectively. (FID/IS: (a) 5.04/126.8, (b) 5.09/217.0) " + ], + "image_footnote": [], + "bbox": [ + 184, + 111, + 813, + 857 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg", + "image_caption": [ + "Figure 8: Truncation curves with additional baselines. In addition to the truncation curves reported in Figure $^ { 3 \\mathrm { ~ b ~ } }$ , here we also include the Spectral-Normalised GAN (Miyato et al., 2018), SelfAttention GAN (Zhang et al., 2019), original BigGAN and BigGAN-deep as presented in Brock et al. (2018). " + ], + "image_footnote": [], + "bbox": [ + 238, + 121, + 758, + 515 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg", + "image_caption": [ + "Figure 9: (a) Samples from SN-GAN. (b) Samples from LOGAN. " + ], + "image_footnote": [], + "bbox": [ + 194, + 632, + 800, + 876 + ], + "page_idx": 18 + } +] \ No newline at end of file diff --git a/parse/train/rJeU_1SFvr/rJeU_1SFvr_middle.json b/parse/train/rJeU_1SFvr/rJeU_1SFvr_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..98718c1bc82dce029458b3539924d6e5a2b1702d --- /dev/null +++ b/parse/train/rJeU_1SFvr/rJeU_1SFvr_middle.json @@ -0,0 +1,47292 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 506, + 98 + ], + "score": 1.0, + "content": "LOGAN: LATENT OPTIMISATION FOR GENERATIVE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 308, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 308, + 118 + ], + "score": 1.0, + "content": "ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 468, + 343 + ], + "lines": [ + { + "bbox": [ + 141, + 212, + 469, + 224 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 469, + 224 + ], + "score": 1.0, + "content": "Training generative adversarial networks requires balancing of delicate adversar-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "score": 1.0, + "content": "ial dynamics. Even with careful tuning, training may diverge or end up in a bad", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "equilibrium with dropped modes. In this work, we introduce a new form of la-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "tent optimisation inspired by the CS-GAN and show that it improves adversarial", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "score": 1.0, + "content": "dynamics by enhancing interactions between the discriminator and the generator.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "score": 1.0, + "content": "We develop supporting theoretical analysis from the perspectives of differentiable", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "score": 1.0, + "content": "games and stochastic approximation. Our experiments demonstrate that latent op-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "score": 1.0, + "content": "timisation can significantly improve GAN training, obtaining state-of-the-art per-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 298, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 255, + 312 + ], + "score": 1.0, + "content": "formance for the ImageNet", + "type": "text" + }, + { + "bbox": [ + 255, + 299, + 301, + 310 + ], + "score": 0.87, + "content": "1 2 8 \\times 1 2 8 )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 298, + 469, + 312 + ], + "score": 1.0, + "content": "dataset. Our model achieves an Inception", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "score": 1.0, + "content": "Score (IS) of 148 and an Frechet Inception Distance (FID) of ´ 3.4, an improve-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 177, + 334 + ], + "score": 1.0, + "content": "ment of", + "type": "text" + }, + { + "bbox": [ + 178, + 321, + 198, + 332 + ], + "score": 0.88, + "content": "1 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 321, + 217, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 218, + 321, + 237, + 332 + ], + "score": 0.88, + "content": "3 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "in IS and FID respectively, compared with the baseline", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 447, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 447, + 345 + ], + "score": 1.0, + "content": "BigGAN-deep model with the same architecture and number of parameters.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 364, + 206, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 208, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 208, + 380 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 521 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "Generative Adversarial Nets (GANs) are implicit generative models that can be trained to match", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "a given data distribution. GANs were originally proposed and demonstrated for images by Good-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "fellow et al. (2014). As the field of generative modelling has advanced, GANs have remained at", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "the frontier, generating high-fidelity images at large scale (Brock et al., 2018). However, despite", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "score": 1.0, + "content": "growing insights into the dynamics of GAN training, most recent advances in large-scale image", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "generation come from architectural improvements (Radford et al., 2015; Zhang et al., 2019), or reg-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "ularisation focusing on particular parts of the model (Miyato et al., 2018; Miyato & Koyama, 2018).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "Inspired by the compressed sensing GAN (CS-GAN; Wu et al., 2019), we further exploit the ben-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "efit of latent optimisation in adversarial games using natural gradient descent to optimise the latent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 140, + 501 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 490, + 147, + 498 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "at each step of training, presenting a scalable and easy to implement approach to improve", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "score": 1.0, + "content": "the dynamical interaction between the discriminator and the generator. For clarity, we unify these", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 306, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 306, + 523 + ], + "score": 1.0, + "content": "approaches as latent optimised GANs (LOGAN).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 108, + 527, + 237, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 238, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 238, + 539 + ], + "score": 1.0, + "content": "To summarise our contributions:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 130, + 547, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 129, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 129, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "1. We present a novel analysis of latent optimisation in GANs from the perspective of differ-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 141, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "entiable games and stochastic approximation (Balduzzi et al., 2018; Heusel et al., 2017),", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 570, + 469, + 583 + ], + "spans": [ + { + "bbox": [ + 141, + 570, + 469, + 583 + ], + "score": 1.0, + "content": "arguing that latent optimisation can improve the dynamics of adversarial training.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 130, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 130, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "2. Motivated by this analysis, we improve latent optimisation by taking advantage of efficient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 596, + 232, + 608 + ], + "spans": [ + { + "bbox": [ + 141, + 596, + 232, + 608 + ], + "score": 1.0, + "content": "second-order updates.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 130, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 130, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "3. Our algorithm improves the state-of-the-art BigGAN-deep model (Brock et al., 2018) by a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 141, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "significant margin, without introducing any architectural change or additional parameters,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 633, + 454, + 646 + ], + "spans": [ + { + "bbox": [ + 141, + 633, + 454, + 646 + ], + "score": 1.0, + "content": "resulting in higher quality images and more diverse samples (Figure 1 and 2).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 663, + 200, + 677 + ], + "lines": [ + { + "bbox": [ + 104, + 662, + 201, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 201, + 679 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 176, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 178, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 178, + 702 + ], + "score": 1.0, + "content": "2.1 NOTATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 137, + 722 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 138, + 710, + 151, + 721 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 709, + 168, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 710, + 181, + 721 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "to denote the vectors representing parameters of the generator and discriminator.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 137, + 733 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 138, + 723, + 145, + 730 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 720, + 210, + 733 + ], + "score": 1.0, + "content": "for images, and", + "type": "text" + }, + { + "bbox": [ + 210, + 722, + 217, + 730 + ], + "score": 0.78, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "for the latent source generating an image. The prime 0 is used to denote", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 506, + 98 + ], + "score": 1.0, + "content": "LOGAN: LATENT OPTIMISATION FOR GENERATIVE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 308, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 308, + 118 + ], + "score": 1.0, + "content": "ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 159 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 468, + 343 + ], + "lines": [ + { + "bbox": [ + 141, + 212, + 469, + 224 + ], + "spans": [ + { + "bbox": [ + 141, + 212, + 469, + 224 + ], + "score": 1.0, + "content": "Training generative adversarial networks requires balancing of delicate adversar-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "score": 1.0, + "content": "ial dynamics. Even with careful tuning, training may diverge or end up in a bad", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "equilibrium with dropped modes. In this work, we introduce a new form of la-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "tent optimisation inspired by the CS-GAN and show that it improves adversarial", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "score": 1.0, + "content": "dynamics by enhancing interactions between the discriminator and the generator.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 279 + ], + "score": 1.0, + "content": "We develop supporting theoretical analysis from the perspectives of differentiable", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "score": 1.0, + "content": "games and stochastic approximation. Our experiments demonstrate that latent op-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 302 + ], + "score": 1.0, + "content": "timisation can significantly improve GAN training, obtaining state-of-the-art per-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 298, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 255, + 312 + ], + "score": 1.0, + "content": "formance for the ImageNet", + "type": "text" + }, + { + "bbox": [ + 255, + 299, + 301, + 310 + ], + "score": 0.87, + "content": "1 2 8 \\times 1 2 8 )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 298, + 469, + 312 + ], + "score": 1.0, + "content": "dataset. Our model achieves an Inception", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "score": 1.0, + "content": "Score (IS) of 148 and an Frechet Inception Distance (FID) of ´ 3.4, an improve-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 177, + 334 + ], + "score": 1.0, + "content": "ment of", + "type": "text" + }, + { + "bbox": [ + 178, + 321, + 198, + 332 + ], + "score": 0.88, + "content": "1 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 321, + 217, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 218, + 321, + 237, + 332 + ], + "score": 0.88, + "content": "3 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "in IS and FID respectively, compared with the baseline", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 447, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 447, + 345 + ], + "score": 1.0, + "content": "BigGAN-deep model with the same architecture and number of parameters.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5, + "bbox_fs": [ + 141, + 212, + 470, + 345 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 364, + 206, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 208, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 208, + 380 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 521 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "Generative Adversarial Nets (GANs) are implicit generative models that can be trained to match", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "a given data distribution. GANs were originally proposed and demonstrated for images by Good-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "fellow et al. (2014). As the field of generative modelling has advanced, GANs have remained at", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "the frontier, generating high-fidelity images at large scale (Brock et al., 2018). However, despite", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 448 + ], + "score": 1.0, + "content": "growing insights into the dynamics of GAN training, most recent advances in large-scale image", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "generation come from architectural improvements (Radford et al., 2015; Zhang et al., 2019), or reg-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "ularisation focusing on particular parts of the model (Miyato et al., 2018; Miyato & Koyama, 2018).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "Inspired by the compressed sensing GAN (CS-GAN; Wu et al., 2019), we further exploit the ben-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "efit of latent optimisation in adversarial games using natural gradient descent to optimise the latent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 140, + 501 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 490, + 147, + 498 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "at each step of training, presenting a scalable and easy to implement approach to improve", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 511 + ], + "score": 1.0, + "content": "the dynamical interaction between the discriminator and the generator. For clarity, we unify these", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 306, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 306, + 523 + ], + "score": 1.0, + "content": "approaches as latent optimised GANs (LOGAN).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 389, + 506, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 527, + 237, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 238, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 238, + 539 + ], + "score": 1.0, + "content": "To summarise our contributions:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 527, + 238, + 539 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 547, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 129, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 129, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "1. We present a novel analysis of latent optimisation in GANs from the perspective of differ-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 141, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "entiable games and stochastic approximation (Balduzzi et al., 2018; Heusel et al., 2017),", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 570, + 469, + 583 + ], + "spans": [ + { + "bbox": [ + 141, + 570, + 469, + 583 + ], + "score": 1.0, + "content": "arguing that latent optimisation can improve the dynamics of adversarial training.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 130, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 130, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "2. Motivated by this analysis, we improve latent optimisation by taking advantage of efficient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 596, + 232, + 608 + ], + "spans": [ + { + "bbox": [ + 141, + 596, + 232, + 608 + ], + "score": 1.0, + "content": "second-order updates.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 130, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 130, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "3. Our algorithm improves the state-of-the-art BigGAN-deep model (Brock et al., 2018) by a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 141, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "significant margin, without introducing any architectural change or additional parameters,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 633, + 454, + 646 + ], + "spans": [ + { + "bbox": [ + 141, + 633, + 454, + 646 + ], + "score": 1.0, + "content": "resulting in higher quality images and more diverse samples (Figure 1 and 2).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 129, + 548, + 506, + 646 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 663, + 200, + 677 + ], + "lines": [ + { + "bbox": [ + 104, + 662, + 201, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 201, + 679 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 176, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 178, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 178, + 702 + ], + "score": 1.0, + "content": "2.1 NOTATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 137, + 722 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 138, + 710, + 151, + 721 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 709, + 168, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 710, + 181, + 721 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "to denote the vectors representing parameters of the generator and discriminator.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 137, + 733 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 138, + 723, + 145, + 730 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 720, + 210, + 733 + ], + "score": 1.0, + "content": "for images, and", + "type": "text" + }, + { + "bbox": [ + 210, + 722, + 217, + 730 + ], + "score": 0.78, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "for the latent source generating an image. The prime 0 is used to denote", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 80, + 493, + 247 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 80, + 493, + 247 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 80, + 493, + 247 + ], + "spans": [ + { + "bbox": [ + 115, + 80, + 493, + 247 + ], + "score": 0.974, + "type": "image", + "image_path": "940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 80, + 493, + 135.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 135.66666666666666, + 493, + 191.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 191.33333333333331, + 493, + 246.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 506, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "Figure 1: Samples from BigGAN-deep (a) and LOGAN (b) with similarly high IS. Samples from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 268, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 488, + 280 + ], + "score": 1.0, + "content": "the two panels were drawn from truncation levels corresponding to points C and D in figure", + "type": "text" + }, + { + "bbox": [ + 488, + 268, + 504, + 278 + ], + "score": 0.54, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 278, + 326, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 326, + 291 + ], + "score": 1.0, + "content": "respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 112, + 303, + 498, + 505 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 303, + 498, + 505 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 303, + 498, + 505 + ], + "spans": [ + { + "bbox": [ + 112, + 303, + 498, + 505 + ], + "score": 0.975, + "type": "image", + "image_path": "86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 112, + 303, + 498, + 370.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 112, + 370.3333333333333, + 498, + 437.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 112, + 437.66666666666663, + 498, + 504.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 518, + 504, + 552 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "Figure 2: Samples from BigGAN-deep (a) and LOGAN (b) with similarly low FID. Samples from", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 530, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 440, + 543 + ], + "score": 1.0, + "content": "the two panels were drawn from truncation levels corresponding to points A and", + "type": "text" + }, + { + "bbox": [ + 441, + 531, + 449, + 540 + ], + "score": 0.29, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 530, + 488, + 543 + ], + "score": 1.0, + "content": "in figure", + "type": "text" + }, + { + "bbox": [ + 488, + 530, + 504, + 541 + ], + "score": 0.57, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 541, + 321, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 321, + 554 + ], + "score": 1.0, + "content": "respectively. (FID/IS: (a) 5.04/126.8, (b) 5.09/217.0)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 263, + 592 + ], + "score": 1.0, + "content": "a variable after one update step, e.g.,", + "type": "text" + }, + { + "bbox": [ + 263, + 574, + 371, + 590 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\theta _ { D } ^ { \\prime } = \\theta _ { D } - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 572, + 373, + 592 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 378, + 576, + 398, + 588 + ], + "score": 0.89, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 574, + 418, + 590 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 576, + 438, + 588 + ], + "score": 0.92, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 574, + 505, + 590 + ], + "score": 1.0, + "content": "denote the data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 588, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 308, + 604 + ], + "score": 1.0, + "content": "distribution and source distribution respectively.", + "type": "text" + }, + { + "bbox": [ + 309, + 590, + 359, + 603 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { p ( x ) } \\left[ f ( x ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 588, + 506, + 604 + ], + "score": 1.0, + "content": "indicates taking the expectation of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 600, + 271, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 142, + 614 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 601, + 163, + 613 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 600, + 246, + 614 + ], + "score": 1.0, + "content": "over the distribution", + "type": "text" + }, + { + "bbox": [ + 247, + 601, + 266, + 613 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 600, + 271, + 614 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 630, + 279, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 280, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 280, + 642 + ], + "score": 1.0, + "content": "2.2 GENERATIVE ADVERSARIAL NETS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 505, + 708 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 320, + 665 + ], + "score": 1.0, + "content": "A GAN consists of a generator that generates image", + "type": "text" + }, + { + "bbox": [ + 320, + 652, + 377, + 664 + ], + "score": 0.91, + "content": "x = G ( z ; \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 651, + 462, + 665 + ], + "score": 1.0, + "content": "from a latent source", + "type": "text" + }, + { + "bbox": [ + 463, + 652, + 501, + 664 + ], + "score": 0.91, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 651, + 505, + 665 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 661, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 324, + 677 + ], + "score": 1.0, + "content": "and a discriminator that scores the generated images as", + "type": "text" + }, + { + "bbox": [ + 324, + 663, + 363, + 675 + ], + "score": 0.91, + "content": "D ( x ; \\theta _ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 661, + 506, + 677 + ], + "score": 1.0, + "content": "(Goodfellow et al., 2014). Training", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "score": 1.0, + "content": "GANs involves an adversarial game: while the discriminator tries to distinguish generated samples", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 684, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 685, + 165, + 697 + ], + "score": 0.93, + "content": "x = G \\left( z ; \\theta _ { G } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 684, + 207, + 698 + ], + "score": 1.0, + "content": "from data", + "type": "text" + }, + { + "bbox": [ + 208, + 685, + 245, + 697 + ], + "score": 0.92, + "content": "x \\sim p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 684, + 505, + 698 + ], + "score": 1.0, + "content": ", the generator tries to fool the discriminator. This procedure can", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 695, + 300, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 300, + 708 + ], + "score": 1.0, + "content": "be summarised as the following min-max game:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 716, + 450, + 735 + ], + "lines": [ + { + "bbox": [ + 162, + 716, + 450, + 735 + ], + "spans": [ + { + "bbox": [ + 162, + 716, + 450, + 735 + ], + "score": 0.89, + "content": "\\operatorname* { m i n } _ { \\theta _ { D } } \\operatorname* { m a x } _ { \\theta _ { G } } \\mathbb { E } _ { z \\sim p ( x ) } [ h _ { D } ( D ( x ; \\theta _ { D } ) ) ] + \\mathbb { E } _ { z \\sim p ( z ) } [ h _ { G } ( D ( G ( z ; \\theta _ { G } ) ; \\theta _ { D } ) ) ]", + "type": "interline_equation", + "image_path": "49ef6ac3aa97a2050826c51eaedc2251718eabbf84d8767c066a07fb39e16ce6.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 162, + 716, + 450, + 735 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": [ + 115, + 80, + 493, + 247 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 80, + 493, + 247 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 80, + 493, + 247 + ], + "spans": [ + { + "bbox": [ + 115, + 80, + 493, + 247 + ], + "score": 0.974, + "type": "image", + "image_path": "940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 80, + 493, + 135.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 135.66666666666666, + 493, + 191.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 191.33333333333331, + 493, + 246.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 506, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "Figure 1: Samples from BigGAN-deep (a) and LOGAN (b) with similarly high IS. Samples from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 268, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 488, + 280 + ], + "score": 1.0, + "content": "the two panels were drawn from truncation levels corresponding to points C and D in figure", + "type": "text" + }, + { + "bbox": [ + 488, + 268, + 504, + 278 + ], + "score": 0.54, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 278, + 326, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 326, + 291 + ], + "score": 1.0, + "content": "respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 112, + 303, + 498, + 505 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 303, + 498, + 505 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 303, + 498, + 505 + ], + "spans": [ + { + "bbox": [ + 112, + 303, + 498, + 505 + ], + "score": 0.975, + "type": "image", + "image_path": "86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 112, + 303, + 498, + 370.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 112, + 370.3333333333333, + 498, + 437.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 112, + 437.66666666666663, + 498, + 504.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 518, + 504, + 552 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "Figure 2: Samples from BigGAN-deep (a) and LOGAN (b) with similarly low FID. Samples from", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 530, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 440, + 543 + ], + "score": 1.0, + "content": "the two panels were drawn from truncation levels corresponding to points A and", + "type": "text" + }, + { + "bbox": [ + 441, + 531, + 449, + 540 + ], + "score": 0.29, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 530, + 488, + 543 + ], + "score": 1.0, + "content": "in figure", + "type": "text" + }, + { + "bbox": [ + 488, + 530, + 504, + 541 + ], + "score": 0.57, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 541, + 321, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 321, + 554 + ], + "score": 1.0, + "content": "respectively. (FID/IS: (a) 5.04/126.8, (b) 5.09/217.0)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 263, + 592 + ], + "score": 1.0, + "content": "a variable after one update step, e.g.,", + "type": "text" + }, + { + "bbox": [ + 263, + 574, + 371, + 590 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\theta _ { D } ^ { \\prime } = \\theta _ { D } - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 572, + 373, + 592 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 378, + 576, + 398, + 588 + ], + "score": 0.89, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 574, + 418, + 590 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 576, + 438, + 588 + ], + "score": 0.92, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 574, + 505, + 590 + ], + "score": 1.0, + "content": "denote the data", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 588, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 308, + 604 + ], + "score": 1.0, + "content": "distribution and source distribution respectively.", + "type": "text" + }, + { + "bbox": [ + 309, + 590, + 359, + 603 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { p ( x ) } \\left[ f ( x ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 588, + 506, + 604 + ], + "score": 1.0, + "content": "indicates taking the expectation of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 600, + 271, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 142, + 614 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 601, + 163, + 613 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 600, + 246, + 614 + ], + "score": 1.0, + "content": "over the distribution", + "type": "text" + }, + { + "bbox": [ + 247, + 601, + 266, + 613 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 600, + 271, + 614 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 572, + 506, + 614 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 630, + 279, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 280, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 280, + 642 + ], + "score": 1.0, + "content": "2.2 GENERATIVE ADVERSARIAL NETS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 505, + 708 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 320, + 665 + ], + "score": 1.0, + "content": "A GAN consists of a generator that generates image", + "type": "text" + }, + { + "bbox": [ + 320, + 652, + 377, + 664 + ], + "score": 0.91, + "content": "x = G ( z ; \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 651, + 462, + 665 + ], + "score": 1.0, + "content": "from a latent source", + "type": "text" + }, + { + "bbox": [ + 463, + 652, + 501, + 664 + ], + "score": 0.91, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 651, + 505, + 665 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 661, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 324, + 677 + ], + "score": 1.0, + "content": "and a discriminator that scores the generated images as", + "type": "text" + }, + { + "bbox": [ + 324, + 663, + 363, + 675 + ], + "score": 0.91, + "content": "D ( x ; \\theta _ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 661, + 506, + 677 + ], + "score": 1.0, + "content": "(Goodfellow et al., 2014). Training", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "score": 1.0, + "content": "GANs involves an adversarial game: while the discriminator tries to distinguish generated samples", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 684, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 685, + 165, + 697 + ], + "score": 0.93, + "content": "x = G \\left( z ; \\theta _ { G } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 684, + 207, + 698 + ], + "score": 1.0, + "content": "from data", + "type": "text" + }, + { + "bbox": [ + 208, + 685, + 245, + 697 + ], + "score": 0.92, + "content": "x \\sim p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 684, + 505, + 698 + ], + "score": 1.0, + "content": ", the generator tries to fool the discriminator. This procedure can", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 695, + 300, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 300, + 708 + ], + "score": 1.0, + "content": "be summarised as the following min-max game:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 651, + 506, + 708 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 716, + 450, + 735 + ], + "lines": [ + { + "bbox": [ + 162, + 716, + 450, + 735 + ], + "spans": [ + { + "bbox": [ + 162, + 716, + 450, + 735 + ], + "score": 0.89, + "content": "\\operatorname* { m i n } _ { \\theta _ { D } } \\operatorname* { m a x } _ { \\theta _ { G } } \\mathbb { E } _ { z \\sim p ( x ) } [ h _ { D } ( D ( x ; \\theta _ { D } ) ) ] + \\mathbb { E } _ { z \\sim p ( z ) } [ h _ { G } ( D ( G ( z ; \\theta _ { G } ) ; \\theta _ { D } ) ) ]", + "type": "interline_equation", + "image_path": "49ef6ac3aa97a2050826c51eaedc2251718eabbf84d8767c066a07fb39e16ce6.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 162, + 716, + 450, + 735 + ], + "spans": [], + "index": 21 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 150, + 148, + 457, + 184 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 505, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "score": 1.0, + "content": "Table 1: Comparison of model scores. BigGAN-deep results are reproduced from Brock et al.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "(2018). “baseline” indicates our reproduced BigGAN-deep with small modifications. The 3rd and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "4th columns are from the gradient descent (GD, ablated) and natural gradient descent (NGD) ver-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "sions of LOGAN respectively. We report the Inception Score (IS, higher is better, Salimans et al.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 424, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 424, + 146 + ], + "score": 1.0, + "content": "2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 150, + 148, + 457, + 184 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 148, + 457, + 184 + ], + "spans": [ + { + "bbox": [ + 150, + 148, + 457, + 184 + ], + "score": 0.959, + "html": "
BigGAN-DeepbaselineLOGAN (GD)LOGAN (NGD)
FID5.7 ± 0.34.92±0.054.86±0.093.36± 0.14
IS124.5 ± 2.0126.6 ± 1.3127.7 ± 3.5148.2 ±3.1
", + "type": "table", + "image_path": "b0a285d0b11e1f95e3558f73431b445e8ae14eb47fc99bd1352d736e2370866f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 150, + 148, + 457, + 160.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 150, + 160.0, + 457, + 172.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 150, + 172.0, + 457, + 184.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 505, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 182, + 219 + ], + "score": 1.0, + "content": "The exact form of", + "type": "text" + }, + { + "bbox": [ + 183, + 207, + 200, + 219 + ], + "score": 0.9, + "content": "h ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 205, + 505, + 219 + ], + "score": 1.0, + "content": "depends on the choice of loss function (Goodfellow et al., 2014; Arjovsky", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "et al., 2017; Nowozin et al., 2016). To simplify our presentation and analysis, we use the Wasserstein", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 252, + 241 + ], + "score": 1.0, + "content": "loss (Arjovsky et al., 2017), so that", + "type": "text" + }, + { + "bbox": [ + 252, + 228, + 304, + 240 + ], + "score": 0.91, + "content": "h _ { D } ( t ) = - t", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 228, + 323, + 241 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 228, + 367, + 240 + ], + "score": 0.92, + "content": "h _ { G } ( t ) = t", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 228, + 505, + 241 + ], + "score": 1.0, + "content": ". Our experiments with BigGAN-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "deep uses the hinge loss (Lim & Ye, 2017; Tran et al., 2017), which is identical to this form in its", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "score": 1.0, + "content": "linear regime. Our analysis can be generalised to other losses as in previous theoretical work (e.g.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 333, + 274 + ], + "score": 1.0, + "content": "Arora et al. 2017). To simplify notation, we abbreviate", + "type": "text" + }, + { + "bbox": [ + 333, + 261, + 474, + 273 + ], + "score": 0.91, + "content": "f ( z ; \\theta _ { D } , \\bar { \\theta _ { G } } ) = D \\left( G \\left( z ; \\theta _ { G } \\right) ; \\theta _ { D } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 261, + 506, + 274 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 484, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 221, + 285 + ], + "score": 1.0, + "content": "may be further simplified as", + "type": "text" + }, + { + "bbox": [ + 221, + 273, + 241, + 285 + ], + "score": 0.92, + "content": "f ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 272, + 375, + 285 + ], + "score": 1.0, + "content": "when the explicit dependency on", + "type": "text" + }, + { + "bbox": [ + 375, + 273, + 388, + 284 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 272, + 406, + 285 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 407, + 273, + 419, + 284 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 272, + 484, + 285 + ], + "score": 1.0, + "content": "can be omitted.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 325, + 302 + ], + "score": 1.0, + "content": "Training GANs requires carefully balancing updates to", + "type": "text" + }, + { + "bbox": [ + 325, + 290, + 335, + 299 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 289, + 352, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 352, + 290, + 361, + 299 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 289, + 505, + 302 + ], + "score": 1.0, + "content": ", and is sensitive to both architecture", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "and algorithm choices (Salimans et al., 2016; Radford et al., 2015). A recent milestone is BigGAN", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "(and BigGAN-deep, Brock et al. 2018), which pushed the boundary of high fidelity image generation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "by scaling up GANs to an unprecedented level. BigGANs use an architecture based on residual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "score": 1.0, + "content": "blocks (He et al., 2016), in combination with regularisation mechanisms and self-attention (Saxe", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 344, + 317, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 317, + 357 + ], + "score": 1.0, + "content": "et al., 2014; Miyato et al., 2018; Zhang et al., 2019).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "Here we aim to improve the adversarial dynamics during training. We focus on the second term in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 409, + 384 + ], + "score": 1.0, + "content": "eq. 1 which is at the heart of the min-max game, with adversarial losses for", + "type": "text" + }, + { + "bbox": [ + 409, + 372, + 419, + 382 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 372, + 437, + 384 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 437, + 372, + 446, + 382 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 372, + 505, + 384 + ], + "score": 1.0, + "content": ", which can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 149, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 149, + 395 + ], + "score": 1.0, + "content": "written as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 390, + 396, + 407 + ], + "lines": [ + { + "bbox": [ + 216, + 390, + 396, + 407 + ], + "spans": [ + { + "bbox": [ + 216, + 390, + 396, + 407 + ], + "score": 0.93, + "content": "L ( z ) = \\left[ L _ { D } ( z ) , L _ { G } ( z ) \\right] ^ { T } = \\left[ f ( z ) , - f ( z ) \\right] ^ { T }", + "type": "interline_equation", + "image_path": "d9798381816ebb13030f282630c2560b31a3f074b0b634f6a5b39ac9d25df4d5.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 216, + 390, + 396, + 407 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 267, + 425 + ], + "score": 1.0, + "content": "Computing the gradients with respect to", + "type": "text" + }, + { + "bbox": [ + 268, + 413, + 281, + 424 + ], + "score": 0.9, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 412, + 299, + 425 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 299, + 413, + 311, + 424 + ], + "score": 0.91, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "obtains the following gradient, which cannot be", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 424, + 392, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 392, + 437 + ], + "score": 1.0, + "content": "expressed as the gradient of any single function (Balduzzi et al., 2018):", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 448, + 409, + 478 + ], + "lines": [ + { + "bbox": [ + 201, + 448, + 409, + 478 + ], + "spans": [ + { + "bbox": [ + 201, + 448, + 409, + 478 + ], + "score": 0.94, + "content": "g = \\left[ \\frac { \\partial L _ { D } ( z ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T }", + "type": "interline_equation", + "image_path": "ba041598a8041667fbb96c46986d1a22e659d254c76784899c8f385f41c5eb9e.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 201, + 448, + 409, + 463.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 201, + 463.0, + 409, + 478.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 160, + 490 + ], + "score": 1.0, + "content": "The fact that", + "type": "text" + }, + { + "bbox": [ + 161, + 480, + 167, + 489 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "is not the gradient of a function implies that gradient updates in GANs can exhibit", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "cycling behaviour which can slow down or prevent convergence. In Balduzzi et al. (2018), vector", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "fields of this form are referred to as the simultaneous gradient. Although many GAN models use", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "alternating update rules (e.g., Goodfellow et al. 2014; Brock et al. 2018), following the gradient", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 167, + 534 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 167, + 522, + 180, + 533 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 522, + 198, + 534 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 198, + 522, + 210, + 533 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "alternatively in each step, they can still suffer from cycling, so we use the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 325, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 325, + 545 + ], + "score": 1.0, + "content": "simpler simultaneous gradient (eq. 3) for our analysis.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 247, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 248, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 248, + 569 + ], + "score": 1.0, + "content": "2.3 LATENT OPTIMISED GANS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 589 + ], + "score": 1.0, + "content": "Inspired by compressed sensing (Candes et al., 2006; Donoho, 2006), Wu et al. (2019) introduced", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "latent optimisation for GANs. We call this type of model latent-optimised GANs (LOGAN). Latent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "score": 1.0, + "content": "optimization has been shown to improve the stability of training as well as the final performance for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "score": 1.0, + "content": "medium-sized models such as DCGANs and Spectral Normalised GANs (Radford et al., 2015; Miy-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 358, + 634 + ], + "score": 1.0, + "content": "ato et al., 2018). Latent optimisation exploits knowledge from", + "type": "text" + }, + { + "bbox": [ + 358, + 622, + 368, + 631 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 622, + 448, + 634 + ], + "score": 1.0, + "content": "to guide updates of", + "type": "text" + }, + { + "bbox": [ + 448, + 623, + 455, + 631 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 622, + 505, + 634 + ], + "score": 1.0, + "content": ". Intuitively,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 630, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 156, + 649 + ], + "score": 1.0, + "content": "the gradient", + "type": "text" + }, + { + "bbox": [ + 156, + 632, + 223, + 648 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\nabla _ { z } f ( z ) = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 630, + 433, + 649 + ], + "score": 1.0, + "content": "points in the direction that satisfies the discriminator", + "type": "text" + }, + { + "bbox": [ + 434, + 635, + 443, + 644 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 630, + 506, + 649 + ], + "score": 1.0, + "content": ", which implies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 374, + 658 + ], + "score": 1.0, + "content": "better samples. Therefore, instead of using the randomly sampled", + "type": "text" + }, + { + "bbox": [ + 374, + 645, + 412, + 658 + ], + "score": 0.92, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 645, + 505, + 658 + ], + "score": 1.0, + "content": ", Wu et al. (2019) uses", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 657, + 188, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 188, + 668 + ], + "score": 1.0, + "content": "the optimised latent", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 666, + 374, + 690 + ], + "lines": [ + { + "bbox": [ + 238, + 666, + 374, + 690 + ], + "spans": [ + { + "bbox": [ + 238, + 666, + 374, + 690 + ], + "score": 0.94, + "content": "\\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } \\qquad z ^ { \\prime } = z + \\Delta z", + "type": "interline_equation", + "image_path": "688128d9a5c94b3de1956cd3f8bdcb92f13470f5607bb114da55974e7e2c77ce.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 238, + 666, + 374, + 690 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 692, + 504, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "in eq. 1 for training 1. The general algorithm is summarised in Algorithm 1 and illustrated in Figure 3", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 703, + 417, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 417, + 716 + ], + "score": 1.0, + "content": "a. We develop the natural gradient descent form of latent update in Section 4.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 114, + 721, + 493, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 495, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 495, + 734 + ], + "score": 1.0, + "content": "1We use a single step of gradient-based optimisation during training, and justify this choice in section 3.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 150, + 148, + 457, + 184 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 505, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "score": 1.0, + "content": "Table 1: Comparison of model scores. BigGAN-deep results are reproduced from Brock et al.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "(2018). “baseline” indicates our reproduced BigGAN-deep with small modifications. The 3rd and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "4th columns are from the gradient descent (GD, ablated) and natural gradient descent (NGD) ver-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "sions of LOGAN respectively. We report the Inception Score (IS, higher is better, Salimans et al.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 424, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 424, + 146 + ], + "score": 1.0, + "content": "2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 150, + 148, + 457, + 184 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 148, + 457, + 184 + ], + "spans": [ + { + "bbox": [ + 150, + 148, + 457, + 184 + ], + "score": 0.959, + "html": "
BigGAN-DeepbaselineLOGAN (GD)LOGAN (NGD)
FID5.7 ± 0.34.92±0.054.86±0.093.36± 0.14
IS124.5 ± 2.0126.6 ± 1.3127.7 ± 3.5148.2 ±3.1
", + "type": "table", + "image_path": "b0a285d0b11e1f95e3558f73431b445e8ae14eb47fc99bd1352d736e2370866f.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 150, + 148, + 457, + 160.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 150, + 160.0, + 457, + 172.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 150, + 172.0, + 457, + 184.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 505, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 182, + 219 + ], + "score": 1.0, + "content": "The exact form of", + "type": "text" + }, + { + "bbox": [ + 183, + 207, + 200, + 219 + ], + "score": 0.9, + "content": "h ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 205, + 505, + 219 + ], + "score": 1.0, + "content": "depends on the choice of loss function (Goodfellow et al., 2014; Arjovsky", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "et al., 2017; Nowozin et al., 2016). To simplify our presentation and analysis, we use the Wasserstein", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 252, + 241 + ], + "score": 1.0, + "content": "loss (Arjovsky et al., 2017), so that", + "type": "text" + }, + { + "bbox": [ + 252, + 228, + 304, + 240 + ], + "score": 0.91, + "content": "h _ { D } ( t ) = - t", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 228, + 323, + 241 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 228, + 367, + 240 + ], + "score": 0.92, + "content": "h _ { G } ( t ) = t", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 228, + 505, + 241 + ], + "score": 1.0, + "content": ". Our experiments with BigGAN-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "deep uses the hinge loss (Lim & Ye, 2017; Tran et al., 2017), which is identical to this form in its", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 506, + 264 + ], + "score": 1.0, + "content": "linear regime. Our analysis can be generalised to other losses as in previous theoretical work (e.g.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 333, + 274 + ], + "score": 1.0, + "content": "Arora et al. 2017). To simplify notation, we abbreviate", + "type": "text" + }, + { + "bbox": [ + 333, + 261, + 474, + 273 + ], + "score": 0.91, + "content": "f ( z ; \\theta _ { D } , \\bar { \\theta _ { G } } ) = D \\left( G \\left( z ; \\theta _ { G } \\right) ; \\theta _ { D } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 261, + 506, + 274 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 484, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 221, + 285 + ], + "score": 1.0, + "content": "may be further simplified as", + "type": "text" + }, + { + "bbox": [ + 221, + 273, + 241, + 285 + ], + "score": 0.92, + "content": "f ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 272, + 375, + 285 + ], + "score": 1.0, + "content": "when the explicit dependency on", + "type": "text" + }, + { + "bbox": [ + 375, + 273, + 388, + 284 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 272, + 406, + 285 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 407, + 273, + 419, + 284 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 272, + 484, + 285 + ], + "score": 1.0, + "content": "can be omitted.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 205, + 506, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 325, + 302 + ], + "score": 1.0, + "content": "Training GANs requires carefully balancing updates to", + "type": "text" + }, + { + "bbox": [ + 325, + 290, + 335, + 299 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 289, + 352, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 352, + 290, + 361, + 299 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 289, + 505, + 302 + ], + "score": 1.0, + "content": ", and is sensitive to both architecture", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "and algorithm choices (Salimans et al., 2016; Radford et al., 2015). A recent milestone is BigGAN", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "(and BigGAN-deep, Brock et al. 2018), which pushed the boundary of high fidelity image generation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "by scaling up GANs to an unprecedented level. BigGANs use an architecture based on residual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "score": 1.0, + "content": "blocks (He et al., 2016), in combination with regularisation mechanisms and self-attention (Saxe", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 344, + 317, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 317, + 357 + ], + "score": 1.0, + "content": "et al., 2014; Miyato et al., 2018; Zhang et al., 2019).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 289, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "Here we aim to improve the adversarial dynamics during training. We focus on the second term in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 409, + 384 + ], + "score": 1.0, + "content": "eq. 1 which is at the heart of the min-max game, with adversarial losses for", + "type": "text" + }, + { + "bbox": [ + 409, + 372, + 419, + 382 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 372, + 437, + 384 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 437, + 372, + 446, + 382 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 372, + 505, + 384 + ], + "score": 1.0, + "content": ", which can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 149, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 149, + 395 + ], + "score": 1.0, + "content": "written as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 360, + 506, + 395 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 390, + 396, + 407 + ], + "lines": [ + { + "bbox": [ + 216, + 390, + 396, + 407 + ], + "spans": [ + { + "bbox": [ + 216, + 390, + 396, + 407 + ], + "score": 0.93, + "content": "L ( z ) = \\left[ L _ { D } ( z ) , L _ { G } ( z ) \\right] ^ { T } = \\left[ f ( z ) , - f ( z ) \\right] ^ { T }", + "type": "interline_equation", + "image_path": "d9798381816ebb13030f282630c2560b31a3f074b0b634f6a5b39ac9d25df4d5.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 216, + 390, + 396, + 407 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 267, + 425 + ], + "score": 1.0, + "content": "Computing the gradients with respect to", + "type": "text" + }, + { + "bbox": [ + 268, + 413, + 281, + 424 + ], + "score": 0.9, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 412, + 299, + 425 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 299, + 413, + 311, + 424 + ], + "score": 0.91, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "obtains the following gradient, which cannot be", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 424, + 392, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 392, + 437 + ], + "score": 1.0, + "content": "expressed as the gradient of any single function (Balduzzi et al., 2018):", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 412, + 505, + 437 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 448, + 409, + 478 + ], + "lines": [ + { + "bbox": [ + 201, + 448, + 409, + 478 + ], + "spans": [ + { + "bbox": [ + 201, + 448, + 409, + 478 + ], + "score": 0.94, + "content": "g = \\left[ \\frac { \\partial L _ { D } ( z ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T }", + "type": "interline_equation", + "image_path": "ba041598a8041667fbb96c46986d1a22e659d254c76784899c8f385f41c5eb9e.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 201, + 448, + 409, + 463.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 201, + 463.0, + 409, + 478.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 160, + 490 + ], + "score": 1.0, + "content": "The fact that", + "type": "text" + }, + { + "bbox": [ + 161, + 480, + 167, + 489 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "is not the gradient of a function implies that gradient updates in GANs can exhibit", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "cycling behaviour which can slow down or prevent convergence. In Balduzzi et al. (2018), vector", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "fields of this form are referred to as the simultaneous gradient. Although many GAN models use", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "alternating update rules (e.g., Goodfellow et al. 2014; Brock et al. 2018), following the gradient", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 167, + 534 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 167, + 522, + 180, + 533 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 522, + 198, + 534 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 198, + 522, + 210, + 533 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "alternatively in each step, they can still suffer from cycling, so we use the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 325, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 325, + 545 + ], + "score": 1.0, + "content": "simpler simultaneous gradient (eq. 3) for our analysis.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 477, + 506, + 545 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 247, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 248, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 248, + 569 + ], + "score": 1.0, + "content": "2.3 LATENT OPTIMISED GANS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 589 + ], + "score": 1.0, + "content": "Inspired by compressed sensing (Candes et al., 2006; Donoho, 2006), Wu et al. (2019) introduced", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "latent optimisation for GANs. We call this type of model latent-optimised GANs (LOGAN). Latent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 506, + 612 + ], + "score": 1.0, + "content": "optimization has been shown to improve the stability of training as well as the final performance for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "score": 1.0, + "content": "medium-sized models such as DCGANs and Spectral Normalised GANs (Radford et al., 2015; Miy-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 358, + 634 + ], + "score": 1.0, + "content": "ato et al., 2018). Latent optimisation exploits knowledge from", + "type": "text" + }, + { + "bbox": [ + 358, + 622, + 368, + 631 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 622, + 448, + 634 + ], + "score": 1.0, + "content": "to guide updates of", + "type": "text" + }, + { + "bbox": [ + 448, + 623, + 455, + 631 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 622, + 505, + 634 + ], + "score": 1.0, + "content": ". Intuitively,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 630, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 156, + 649 + ], + "score": 1.0, + "content": "the gradient", + "type": "text" + }, + { + "bbox": [ + 156, + 632, + 223, + 648 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\nabla _ { z } f ( z ) = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 630, + 433, + 649 + ], + "score": 1.0, + "content": "points in the direction that satisfies the discriminator", + "type": "text" + }, + { + "bbox": [ + 434, + 635, + 443, + 644 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 630, + 506, + 649 + ], + "score": 1.0, + "content": ", which implies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 374, + 658 + ], + "score": 1.0, + "content": "better samples. Therefore, instead of using the randomly sampled", + "type": "text" + }, + { + "bbox": [ + 374, + 645, + 412, + 658 + ], + "score": 0.92, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 645, + 505, + 658 + ], + "score": 1.0, + "content": ", Wu et al. (2019) uses", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 657, + 188, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 188, + 668 + ], + "score": 1.0, + "content": "the optimised latent", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 578, + 506, + 668 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 666, + 374, + 690 + ], + "lines": [ + { + "bbox": [ + 238, + 666, + 374, + 690 + ], + "spans": [ + { + "bbox": [ + 238, + 666, + 374, + 690 + ], + "score": 0.94, + "content": "\\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } \\qquad z ^ { \\prime } = z + \\Delta z", + "type": "interline_equation", + "image_path": "688128d9a5c94b3de1956cd3f8bdcb92f13470f5607bb114da55974e7e2c77ce.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 238, + 666, + 374, + 690 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 692, + 504, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "in eq. 1 for training 1. The general algorithm is summarised in Algorithm 1 and illustrated in Figure 3", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 703, + 417, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 417, + 716 + ], + "score": 1.0, + "content": "a. We develop the natural gradient descent form of latent update in Section 4.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 691, + 505, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 82, + 493, + 278 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 82, + 493, + 278 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 82, + 493, + 278 + ], + "spans": [ + { + "bbox": [ + 114, + 82, + 493, + 278 + ], + "score": 0.965, + "type": "image", + "image_path": "c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 82, + 493, + 147.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 147.33333333333331, + 493, + 212.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 212.66666666666663, + 493, + 277.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 287, + 506, + 365 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 435, + 300 + ], + "score": 1.0, + "content": "Figure 3: (a) Schematic of LOGAN. We first compute a forward pass through", + "type": "text" + }, + { + "bbox": [ + 435, + 288, + 444, + 298 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 286, + 464, + 300 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 288, + 474, + 297 + ], + "score": 0.79, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "with a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 299, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 166, + 311 + ], + "score": 1.0, + "content": "sampled latent", + "type": "text" + }, + { + "bbox": [ + 167, + 300, + 173, + 308 + ], + "score": 0.69, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 299, + 506, + 311 + ], + "score": 1.0, + "content": ". Then, gradients from the generator loss (dashed red arrow) are used to compute an", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 174, + 322 + ], + "score": 1.0, + "content": "improved latent,", + "type": "text" + }, + { + "bbox": [ + 174, + 309, + 184, + 320 + ], + "score": 0.85, + "content": "z ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 309, + 505, + 322 + ], + "score": 1.0, + "content": ". After this optimised latent code is used in a second forward pass, we compute", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 488, + 334 + ], + "score": 1.0, + "content": "gradients of the discriminator back through the latent optimisation into the model parameters", + "type": "text" + }, + { + "bbox": [ + 488, + 321, + 501, + 331 + ], + "score": 0.87, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 320, + 506, + 334 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 331, + 119, + 342 + ], + "score": 0.87, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 331, + 505, + 344 + ], + "score": 1.0, + "content": ". These gradients are used to update the model. (b) Truncation curves illustrate the FID/IS trade-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 356, + 354 + ], + "score": 1.0, + "content": "off for each model by altering the range of the noise source", + "type": "text" + }, + { + "bbox": [ + 356, + 342, + 375, + 354 + ], + "score": 0.91, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 342, + 505, + 354 + ], + "score": 1.0, + "content": ". GD: gradient descent. NGD:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 353, + 473, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 473, + 366 + ], + "score": 1.0, + "content": "natural gradient descent. Points A, B, C, D correspond to samples shown in Figure 1 and 2.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 109, + 391, + 502, + 561 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 377, + 386, + 389 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 377, + 387, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 387, + 391 + ], + "score": 1.0, + "content": "Algorithm 1 Latent Optimised GANs with Automatic Differentiation", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "table_body", + "bbox": [ + 109, + 391, + 502, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 391, + 502, + 561 + ], + "spans": [ + { + "bbox": [ + 109, + 391, + 502, + 561 + ], + "score": 0.752, + "html": "
Input: data distribution p(x),latent distribution p(z),D(:; 0D), G(-; 0g),learning rate α, batch size N repeat
Initialise discriminator and generator parameters 0D,0G fori=1 to Ndo
Sample z ~ p(z),x~p(x)
Compute the gradient D(G(z)) and use it to obtain △z from eq. 4 (GD) or eq. 12 (NGD) dz
Optimise the latent z' ← [+ △z],[:] indicates clipping the value between -1 and 1
= -D(G(z))
D(G(z'))-D(x) end for
Compute batch losses LG =N∑i=11 JN (i) and LD=∑=1 N L(i) LD
aLD aLG Update 0D and 0G with the gradients
0D, G
until reaches the maximum training steps
", + "type": "table", + "image_path": "7621bc68cbafac60b0d64ace1b03ec6acb5884420b7f0434eb4545e4cce8ef75.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 109, + 391, + 502, + 447.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 109, + 447.6666666666667, + 502, + 504.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 109, + 504.33333333333337, + 502, + 561.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 11.0 + }, + { + "type": "title", + "bbox": [ + 108, + 582, + 286, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 287, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 287, + 597 + ], + "score": 1.0, + "content": "3 ANALYSIS OF THE ALGORITHM", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 620 + ], + "score": 1.0, + "content": "To understand how latent optimisation improves GAN training, we analyse LOGAN as a 2-player", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "differentiable game following Balduzzi et al. (2018); Gemp & Mahadevan (2018); Letcher et al.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "score": 1.0, + "content": "(2019). The appendix provides a complementary analysis that relates LOGAN to unrolled GANs", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 641, + 446, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 446, + 653 + ], + "score": 1.0, + "content": "(Metz et al., 2016) and stochastic approximation (Heusel et al., 2017; Borkar, 1997).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 106, + 666, + 350, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 350, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 350, + 680 + ], + "score": 1.0, + "content": "3.1 THE SYMPLECTIC GRADIENT ADJUSTMENT (SGA)", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "An important problem with gradient-based optimization in GANs is that the vector-field generated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "by the losses of the discriminator and generator is not a gradient vector field. It follows that gradient", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "descent is not guaranteed to find a local optimum and can cycle, which can slow down convergence", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "or lead to phenomena like mode collapse and mode hopping. Balduzzi et al. (2018); Gemp &", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 82, + 493, + 278 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 82, + 493, + 278 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 82, + 493, + 278 + ], + "spans": [ + { + "bbox": [ + 114, + 82, + 493, + 278 + ], + "score": 0.965, + "type": "image", + "image_path": "c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 82, + 493, + 147.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 147.33333333333331, + 493, + 212.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 212.66666666666663, + 493, + 277.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 287, + 506, + 365 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 435, + 300 + ], + "score": 1.0, + "content": "Figure 3: (a) Schematic of LOGAN. We first compute a forward pass through", + "type": "text" + }, + { + "bbox": [ + 435, + 288, + 444, + 298 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 286, + 464, + 300 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 288, + 474, + 297 + ], + "score": 0.79, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "with a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 299, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 166, + 311 + ], + "score": 1.0, + "content": "sampled latent", + "type": "text" + }, + { + "bbox": [ + 167, + 300, + 173, + 308 + ], + "score": 0.69, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 299, + 506, + 311 + ], + "score": 1.0, + "content": ". Then, gradients from the generator loss (dashed red arrow) are used to compute an", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 174, + 322 + ], + "score": 1.0, + "content": "improved latent,", + "type": "text" + }, + { + "bbox": [ + 174, + 309, + 184, + 320 + ], + "score": 0.85, + "content": "z ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 309, + 505, + 322 + ], + "score": 1.0, + "content": ". After this optimised latent code is used in a second forward pass, we compute", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 488, + 334 + ], + "score": 1.0, + "content": "gradients of the discriminator back through the latent optimisation into the model parameters", + "type": "text" + }, + { + "bbox": [ + 488, + 321, + 501, + 331 + ], + "score": 0.87, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 320, + 506, + 334 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 331, + 119, + 342 + ], + "score": 0.87, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 331, + 505, + 344 + ], + "score": 1.0, + "content": ". These gradients are used to update the model. (b) Truncation curves illustrate the FID/IS trade-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 356, + 354 + ], + "score": 1.0, + "content": "off for each model by altering the range of the noise source", + "type": "text" + }, + { + "bbox": [ + 356, + 342, + 375, + 354 + ], + "score": 0.91, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 342, + 505, + 354 + ], + "score": 1.0, + "content": ". GD: gradient descent. NGD:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 353, + 473, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 473, + 366 + ], + "score": 1.0, + "content": "natural gradient descent. Points A, B, C, D correspond to samples shown in Figure 1 and 2.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 109, + 391, + 502, + 561 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 377, + 386, + 389 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 377, + 387, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 387, + 391 + ], + "score": 1.0, + "content": "Algorithm 1 Latent Optimised GANs with Automatic Differentiation", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "table_body", + "bbox": [ + 109, + 391, + 502, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 391, + 502, + 561 + ], + "spans": [ + { + "bbox": [ + 109, + 391, + 502, + 561 + ], + "score": 0.752, + "html": "
Input: data distribution p(x),latent distribution p(z),D(:; 0D), G(-; 0g),learning rate α, batch size N repeat
Initialise discriminator and generator parameters 0D,0G fori=1 to Ndo
Sample z ~ p(z),x~p(x)
Compute the gradient D(G(z)) and use it to obtain △z from eq. 4 (GD) or eq. 12 (NGD) dz
Optimise the latent z' ← [+ △z],[:] indicates clipping the value between -1 and 1
= -D(G(z))
D(G(z'))-D(x) end for
Compute batch losses LG =N∑i=11 JN (i) and LD=∑=1 N L(i) LD
aLD aLG Update 0D and 0G with the gradients
0D, G
until reaches the maximum training steps
", + "type": "table", + "image_path": "7621bc68cbafac60b0d64ace1b03ec6acb5884420b7f0434eb4545e4cce8ef75.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 109, + 391, + 502, + 447.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 109, + 447.6666666666667, + 502, + 504.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 109, + 504.33333333333337, + 502, + 561.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 11.0 + }, + { + "type": "title", + "bbox": [ + 108, + 582, + 286, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 287, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 287, + 597 + ], + "score": 1.0, + "content": "3 ANALYSIS OF THE ALGORITHM", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 620 + ], + "score": 1.0, + "content": "To understand how latent optimisation improves GAN training, we analyse LOGAN as a 2-player", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "differentiable game following Balduzzi et al. (2018); Gemp & Mahadevan (2018); Letcher et al.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "score": 1.0, + "content": "(2019). The appendix provides a complementary analysis that relates LOGAN to unrolled GANs", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 641, + 446, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 446, + 653 + ], + "score": 1.0, + "content": "(Metz et al., 2016) and stochastic approximation (Heusel et al., 2017; Borkar, 1997).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 608, + 506, + 653 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 666, + 350, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 350, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 350, + 680 + ], + "score": 1.0, + "content": "3.1 THE SYMPLECTIC GRADIENT ADJUSTMENT (SGA)", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "An important problem with gradient-based optimization in GANs is that the vector-field generated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "by the losses of the discriminator and generator is not a gradient vector field. It follows that gradient", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "descent is not guaranteed to find a local optimum and can cycle, which can slow down convergence", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "or lead to phenomena like mode collapse and mode hopping. Balduzzi et al. (2018); Gemp &", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 688, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "Mahadevan (2018) proposed Symplectic Gradient Adjustment (SGA) to improve the dynamics of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 392, + 106 + ], + "score": 1.0, + "content": "gradient-based methods in adversarial games. For a game with gradient", + "type": "text" + }, + { + "bbox": [ + 392, + 96, + 398, + 105 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "(eq. 3), define the Hessian", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 361, + 117 + ], + "score": 1.0, + "content": "as the second order derivatives with respect to the parameters,", + "type": "text" + }, + { + "bbox": [ + 361, + 105, + 405, + 116 + ], + "score": 0.92, + "content": "H = \\nabla _ { \\theta } g", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 104, + 506, + 117 + ], + "score": 1.0, + "content": ". SGA uses the adjusted", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 115, + 143, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 115, + 143, + 127 + ], + "score": 1.0, + "content": "gradient", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 125, + 407, + 140 + ], + "lines": [ + { + "bbox": [ + 205, + 125, + 407, + 140 + ], + "spans": [ + { + "bbox": [ + 205, + 125, + 407, + 140 + ], + "score": 0.8, + "content": "g ^ { * } = g + \\lambda A ^ { T } g \\quad { \\mathrm { w h e r e ~ } } \\lambda { \\mathrm { ~ i s ~ a ~ p o s i t i v e ~ c o n s t a n t } }", + "type": "interline_equation", + "image_path": "2f712f91570b8cabf50bafb2c9192f40a2b4dd9910cc127fcc455f6eab5db2b9.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 205, + 125, + 407, + 140 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 124, + 155 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 141, + 199, + 155 + ], + "score": 0.93, + "content": "\\begin{array} { r } { A = \\frac 1 2 ( H - H ^ { T } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 140, + 506, + 155 + ], + "score": 1.0, + "content": "is the anti-symmetric component of the Hessian. Applying SGA to GANs", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 152, + 342, + 166 + ], + "spans": [ + { + "bbox": [ + 104, + 152, + 342, + 166 + ], + "score": 1.0, + "content": "yields the adjusted updates (see Appendix B.1 for details):", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 169, + 477, + 204 + ], + "lines": [ + { + "bbox": [ + 133, + 169, + 477, + 204 + ], + "spans": [ + { + "bbox": [ + 133, + 169, + 477, + 204 + ], + "score": 0.91, + "content": "g ^ { \\ast } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } \\right] ^ { T }", + "type": "interline_equation", + "image_path": "67e0d1e919fcd9d52a6a4d1e8c4bf0b6635f27b2e19aa29369320e597bd75929.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 133, + 169, + 477, + 180.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 133, + 180.66666666666666, + 477, + 192.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 133, + 192.33333333333331, + 477, + 203.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 170, + 221 + ], + "score": 1.0, + "content": "Compared with", + "type": "text" + }, + { + "bbox": [ + 170, + 210, + 177, + 220 + ], + "score": 0.82, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 208, + 295, + 221 + ], + "score": 1.0, + "content": "in eq. 3, the adjusted gradient", + "type": "text" + }, + { + "bbox": [ + 296, + 209, + 307, + 220 + ], + "score": 0.89, + "content": "g ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "has second-order terms reflecting the interactions", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 142, + 232 + ], + "score": 1.0, + "content": "between", + "type": "text" + }, + { + "bbox": [ + 142, + 220, + 153, + 230 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 219, + 171, + 232 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 221, + 180, + 230 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 219, + 505, + 232 + ], + "score": 1.0, + "content": ". SGA has been shown to significantly improve GAN training in basic examples", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "(Balduzzi et al., 2018), allowing faster and more robust convergence to stable fixed points (local", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "Nash equilibria). Unfortunately, SGA is expensive to scale because computing the second-order", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 253, + 325, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 325, + 265 + ], + "score": 1.0, + "content": "derivatives with respect to all parameters is expensive.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 269, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 401, + 282 + ], + "score": 1.0, + "content": "Explicitly computing the gradients for the discriminator and generator at", + "type": "text" + }, + { + "bbox": [ + 401, + 270, + 411, + 279 + ], + "score": 0.87, + "content": "z ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "after one step of latent", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 219, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 219, + 293 + ], + "score": 1.0, + "content": "optimisation (eq. 4) obtains", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 295, + 497, + 370 + ], + "lines": [ + { + "bbox": [ + 112, + 295, + 497, + 370 + ], + "spans": [ + { + "bbox": [ + 112, + 295, + 497, + 370 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } & { } & { \\left[ \\frac { d L _ { D } } { d \\theta _ { D } } , \\frac { d L _ { G } } { d \\theta _ { G } } \\right] } ^ { T } = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } \\right] } ^ { T } { \\left( \\boldsymbol { \\hat { z } } ^ { \\prime } \\right) } } \\\\ & { } & { = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } \\right] } ^ { T } } } \\end{array}", + "type": "interline_equation", + "image_path": "ae331ab67c9eb164e4a2a09e560c8a52fe1b2f6fc9dfda3a2ea49271b13a8f6d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 112, + 295, + 497, + 320.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 112, + 320.0, + 497, + 345.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 345.0, + 497, + 370.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 384, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 303, + 397 + ], + "score": 1.0, + "content": "In both equations, the first terms represent how", + "type": "text" + }, + { + "bbox": [ + 303, + 385, + 325, + 397 + ], + "score": 0.92, + "content": "f ( z ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "depends on the parameters directly and the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 222, + 408 + ], + "score": 1.0, + "content": "second terms represent how", + "type": "text" + }, + { + "bbox": [ + 222, + 396, + 245, + 408 + ], + "score": 0.92, + "content": "f ( z ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "depends on the parameters via the optimised latent source. For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 405, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 242, + 425 + ], + "score": 1.0, + "content": "the second equality, we substitute", + "type": "text" + }, + { + "bbox": [ + 243, + 407, + 300, + 423 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 405, + 427, + 425 + ], + "score": 1.0, + "content": "as the gradient-based update of", + "type": "text" + }, + { + "bbox": [ + 427, + 412, + 434, + 420 + ], + "score": 0.72, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 405, + 468, + 425 + ], + "score": 1.0, + "content": "and use", + "type": "text" + }, + { + "bbox": [ + 468, + 407, + 506, + 423 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 103, + 420, + 508, + 441 + ], + "spans": [ + { + "bbox": [ + 103, + 420, + 508, + 441 + ], + "score": 1.0, + "content": "∂f(z0)∂z0 . The original GAN’s gradient (eq. 3) does not include any second-order term, since ∆z = 0", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "without latent optimisation. In LOGAN, these extra terms are computed by automatic differentiation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 448, + 435, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 435, + 459 + ], + "score": 1.0, + "content": "when back-propagating through the latent optimisation process (see Algorithm 1).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "The SGA updates in eq. 6 and the LOGAN updates in eq. 8 are strikingly similar, suggesting that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "the latent step used by LOGAN reduces the negative effects of cycling by introducing a symplectic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 487, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 497 + ], + "score": 1.0, + "content": "gradient adjustment into the optimization procedure. The role of the latent step can be formalized in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 497, + 452, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 452, + 509 + ], + "score": 1.0, + "content": "terms of a third player, whose goal is to help the generator, see appendix B for details.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "Crucially, latent optimisation approximates SGA using only second-order derivatives with respect", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 155, + 537 + ], + "score": 1.0, + "content": "to the latent", + "type": "text" + }, + { + "bbox": [ + 155, + 526, + 162, + 534 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "and parameters of the discriminator and generator separately. The second order terms", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "involving parameters of both the discriminator and the generator – which are extremely expensive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 260, + 559 + ], + "score": 1.0, + "content": "to compute – are not used. For latent", + "type": "text" + }, + { + "bbox": [ + 260, + 548, + 266, + 556 + ], + "score": 0.71, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "’s with dimensions typically used in GANs (e.g., 128–256,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "orders of magnitude less than the number of parameters), these can be computed efficiently. In short,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "latent optimisation efficiently couples the gradients of the discriminator and generator, as prescribed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 579, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 347, + 592 + ], + "score": 1.0, + "content": "by SGA, but using the much lower-dimensional latent source", + "type": "text" + }, + { + "bbox": [ + 348, + 582, + 353, + 589 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 579, + 505, + 592 + ], + "score": 1.0, + "content": "which makes the adjustment scalable.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "An important consequence of reducing the rotational aspect of GAN dynamics is that it is possible to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "use larger step sizes during training which suggests using stronger optimisers to fully take advantage", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "of latent optimisation. Latent optimisation can improve GAN training dynamics further by allowing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 408, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 182, + 646 + ], + "score": 1.0, + "content": "larger single steps", + "type": "text" + }, + { + "bbox": [ + 183, + 632, + 197, + 641 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 628, + 296, + 646 + ], + "score": 1.0, + "content": "towards the direction of", + "type": "text" + }, + { + "bbox": [ + 296, + 630, + 318, + 645 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 631, + 408, + 644 + ], + "score": 1.0, + "content": ") without overshooting.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 107, + 656, + 335, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 336, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 336, + 669 + ], + "score": 1.0, + "content": "3.2 UNROLLING AND STOCHASTIC APPROXIMATION", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "Appendix B further explains how LOGAN relates to unrolled GANs (Metz et al., 2016) and stochas-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 494, + 700 + ], + "score": 1.0, + "content": "tic approximation. Our main finding is that latent optimisation accelerates the speed of updating", + "type": "text" + }, + { + "bbox": [ + 494, + 688, + 504, + 698 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 176, + 712 + ], + "score": 1.0, + "content": "relative to that of", + "type": "text" + }, + { + "bbox": [ + 177, + 700, + 185, + 709 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 698, + 483, + 712 + ], + "score": 1.0, + "content": ", facilitating convergence according to Heusel et al. (2017) (see also Figure", + "type": "text" + }, + { + "bbox": [ + 484, + 699, + 498, + 709 + ], + "score": 0.5, + "content": "{ } 4 \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 361, + 722 + ], + "score": 1.0, + "content": "In particular, the generator requires less update compared with", + "type": "text" + }, + { + "bbox": [ + 361, + 712, + 370, + 720 + ], + "score": 0.88, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "to achieve the same reduction of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 282, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 271, + 733 + ], + "score": 1.0, + "content": "loss, because latent optimisation “helps”", + "type": "text" + }, + { + "bbox": [ + 271, + 723, + 279, + 730 + ], + "score": 0.88, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 720, + 282, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "Mahadevan (2018) proposed Symplectic Gradient Adjustment (SGA) to improve the dynamics of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 392, + 106 + ], + "score": 1.0, + "content": "gradient-based methods in adversarial games. For a game with gradient", + "type": "text" + }, + { + "bbox": [ + 392, + 96, + 398, + 105 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "(eq. 3), define the Hessian", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 361, + 117 + ], + "score": 1.0, + "content": "as the second order derivatives with respect to the parameters,", + "type": "text" + }, + { + "bbox": [ + 361, + 105, + 405, + 116 + ], + "score": 0.92, + "content": "H = \\nabla _ { \\theta } g", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 104, + 506, + 117 + ], + "score": 1.0, + "content": ". SGA uses the adjusted", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 115, + 143, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 115, + 143, + 127 + ], + "score": 1.0, + "content": "gradient", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 104, + 83, + 506, + 127 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 125, + 407, + 140 + ], + "lines": [ + { + "bbox": [ + 205, + 125, + 407, + 140 + ], + "spans": [ + { + "bbox": [ + 205, + 125, + 407, + 140 + ], + "score": 0.8, + "content": "g ^ { * } = g + \\lambda A ^ { T } g \\quad { \\mathrm { w h e r e ~ } } \\lambda { \\mathrm { ~ i s ~ a ~ p o s i t i v e ~ c o n s t a n t } }", + "type": "interline_equation", + "image_path": "2f712f91570b8cabf50bafb2c9192f40a2b4dd9910cc127fcc455f6eab5db2b9.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 205, + 125, + 407, + 140 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 124, + 155 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 141, + 199, + 155 + ], + "score": 0.93, + "content": "\\begin{array} { r } { A = \\frac 1 2 ( H - H ^ { T } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 140, + 506, + 155 + ], + "score": 1.0, + "content": "is the anti-symmetric component of the Hessian. Applying SGA to GANs", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 152, + 342, + 166 + ], + "spans": [ + { + "bbox": [ + 104, + 152, + 342, + 166 + ], + "score": 1.0, + "content": "yields the adjusted updates (see Appendix B.1 for details):", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 104, + 140, + 506, + 166 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 169, + 477, + 204 + ], + "lines": [ + { + "bbox": [ + 133, + 169, + 477, + 204 + ], + "spans": [ + { + "bbox": [ + 133, + 169, + 477, + 204 + ], + "score": 0.91, + "content": "g ^ { \\ast } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } \\right] ^ { T }", + "type": "interline_equation", + "image_path": "67e0d1e919fcd9d52a6a4d1e8c4bf0b6635f27b2e19aa29369320e597bd75929.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 133, + 169, + 477, + 180.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 133, + 180.66666666666666, + 477, + 192.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 133, + 192.33333333333331, + 477, + 203.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 170, + 221 + ], + "score": 1.0, + "content": "Compared with", + "type": "text" + }, + { + "bbox": [ + 170, + 210, + 177, + 220 + ], + "score": 0.82, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 208, + 295, + 221 + ], + "score": 1.0, + "content": "in eq. 3, the adjusted gradient", + "type": "text" + }, + { + "bbox": [ + 296, + 209, + 307, + 220 + ], + "score": 0.89, + "content": "g ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "has second-order terms reflecting the interactions", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 142, + 232 + ], + "score": 1.0, + "content": "between", + "type": "text" + }, + { + "bbox": [ + 142, + 220, + 153, + 230 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 219, + 171, + 232 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 221, + 180, + 230 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 219, + 505, + 232 + ], + "score": 1.0, + "content": ". SGA has been shown to significantly improve GAN training in basic examples", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "(Balduzzi et al., 2018), allowing faster and more robust convergence to stable fixed points (local", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "Nash equilibria). Unfortunately, SGA is expensive to scale because computing the second-order", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 253, + 325, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 325, + 265 + ], + "score": 1.0, + "content": "derivatives with respect to all parameters is expensive.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 208, + 505, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 269, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 401, + 282 + ], + "score": 1.0, + "content": "Explicitly computing the gradients for the discriminator and generator at", + "type": "text" + }, + { + "bbox": [ + 401, + 270, + 411, + 279 + ], + "score": 0.87, + "content": "z ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "after one step of latent", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 219, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 219, + 293 + ], + "score": 1.0, + "content": "optimisation (eq. 4) obtains", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 268, + 505, + 293 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 295, + 497, + 370 + ], + "lines": [ + { + "bbox": [ + 112, + 295, + 497, + 370 + ], + "spans": [ + { + "bbox": [ + 112, + 295, + 497, + 370 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } & { } & { \\left[ \\frac { d L _ { D } } { d \\theta _ { D } } , \\frac { d L _ { G } } { d \\theta _ { G } } \\right] } ^ { T } = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } \\right] } ^ { T } { \\left( \\boldsymbol { \\hat { z } } ^ { \\prime } \\right) } } \\\\ & { } & { = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } \\right] } ^ { T } } } \\end{array}", + "type": "interline_equation", + "image_path": "ae331ab67c9eb164e4a2a09e560c8a52fe1b2f6fc9dfda3a2ea49271b13a8f6d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 112, + 295, + 497, + 320.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 112, + 320.0, + 497, + 345.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 345.0, + 497, + 370.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 384, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 303, + 397 + ], + "score": 1.0, + "content": "In both equations, the first terms represent how", + "type": "text" + }, + { + "bbox": [ + 303, + 385, + 325, + 397 + ], + "score": 0.92, + "content": "f ( z ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "depends on the parameters directly and the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 222, + 408 + ], + "score": 1.0, + "content": "second terms represent how", + "type": "text" + }, + { + "bbox": [ + 222, + 396, + 245, + 408 + ], + "score": 0.92, + "content": "f ( z ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "depends on the parameters via the optimised latent source. For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 405, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 242, + 425 + ], + "score": 1.0, + "content": "the second equality, we substitute", + "type": "text" + }, + { + "bbox": [ + 243, + 407, + 300, + 423 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 405, + 427, + 425 + ], + "score": 1.0, + "content": "as the gradient-based update of", + "type": "text" + }, + { + "bbox": [ + 427, + 412, + 434, + 420 + ], + "score": 0.72, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 405, + 468, + 425 + ], + "score": 1.0, + "content": "and use", + "type": "text" + }, + { + "bbox": [ + 468, + 407, + 506, + 423 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = } \\end{array}", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 103, + 420, + 508, + 441 + ], + "spans": [ + { + "bbox": [ + 103, + 420, + 508, + 441 + ], + "score": 1.0, + "content": "∂f(z0)∂z0 . The original GAN’s gradient (eq. 3) does not include any second-order term, since ∆z = 0", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "without latent optimisation. In LOGAN, these extra terms are computed by automatic differentiation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 448, + 435, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 435, + 459 + ], + "score": 1.0, + "content": "when back-propagating through the latent optimisation process (see Algorithm 1).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 103, + 385, + 508, + 459 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "The SGA updates in eq. 6 and the LOGAN updates in eq. 8 are strikingly similar, suggesting that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "the latent step used by LOGAN reduces the negative effects of cycling by introducing a symplectic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 487, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 497 + ], + "score": 1.0, + "content": "gradient adjustment into the optimization procedure. The role of the latent step can be formalized in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 497, + 452, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 452, + 509 + ], + "score": 1.0, + "content": "terms of a third player, whose goal is to help the generator, see appendix B for details.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 463, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "Crucially, latent optimisation approximates SGA using only second-order derivatives with respect", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 155, + 537 + ], + "score": 1.0, + "content": "to the latent", + "type": "text" + }, + { + "bbox": [ + 155, + 526, + 162, + 534 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "and parameters of the discriminator and generator separately. The second order terms", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "involving parameters of both the discriminator and the generator – which are extremely expensive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 260, + 559 + ], + "score": 1.0, + "content": "to compute – are not used. For latent", + "type": "text" + }, + { + "bbox": [ + 260, + 548, + 266, + 556 + ], + "score": 0.71, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "’s with dimensions typically used in GANs (e.g., 128–256,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "orders of magnitude less than the number of parameters), these can be computed efficiently. In short,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "latent optimisation efficiently couples the gradients of the discriminator and generator, as prescribed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 579, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 347, + 592 + ], + "score": 1.0, + "content": "by SGA, but using the much lower-dimensional latent source", + "type": "text" + }, + { + "bbox": [ + 348, + 582, + 353, + 589 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 579, + 505, + 592 + ], + "score": 1.0, + "content": "which makes the adjustment scalable.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 513, + 506, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "An important consequence of reducing the rotational aspect of GAN dynamics is that it is possible to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "use larger step sizes during training which suggests using stronger optimisers to fully take advantage", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "of latent optimisation. Latent optimisation can improve GAN training dynamics further by allowing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 408, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 182, + 646 + ], + "score": 1.0, + "content": "larger single steps", + "type": "text" + }, + { + "bbox": [ + 183, + 632, + 197, + 641 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 628, + 296, + 646 + ], + "score": 1.0, + "content": "towards the direction of", + "type": "text" + }, + { + "bbox": [ + 296, + 630, + 318, + 645 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 631, + 408, + 644 + ], + "score": 1.0, + "content": ") without overshooting.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 596, + 506, + 646 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 656, + 335, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 336, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 336, + 669 + ], + "score": 1.0, + "content": "3.2 UNROLLING AND STOCHASTIC APPROXIMATION", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "Appendix B further explains how LOGAN relates to unrolled GANs (Metz et al., 2016) and stochas-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 494, + 700 + ], + "score": 1.0, + "content": "tic approximation. Our main finding is that latent optimisation accelerates the speed of updating", + "type": "text" + }, + { + "bbox": [ + 494, + 688, + 504, + 698 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 176, + 712 + ], + "score": 1.0, + "content": "relative to that of", + "type": "text" + }, + { + "bbox": [ + 177, + 700, + 185, + 709 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 698, + 483, + 712 + ], + "score": 1.0, + "content": ", facilitating convergence according to Heusel et al. (2017) (see also Figure", + "type": "text" + }, + { + "bbox": [ + 484, + 699, + 498, + 709 + ], + "score": 0.5, + "content": "{ } 4 \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 698, + 505, + 712 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 361, + 722 + ], + "score": 1.0, + "content": "In particular, the generator requires less update compared with", + "type": "text" + }, + { + "bbox": [ + 361, + 712, + 370, + 720 + ], + "score": 0.88, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "to achieve the same reduction of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 282, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 271, + 733 + ], + "score": 1.0, + "content": "loss, because latent optimisation “helps”", + "type": "text" + }, + { + "bbox": [ + 271, + 723, + 279, + 730 + ], + "score": 0.88, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 720, + 282, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 676, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 80, + 492, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 80, + 492, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 80, + 492, + 236 + ], + "spans": [ + { + "bbox": [ + 117, + 80, + 492, + 236 + ], + "score": 0.967, + "type": "image", + "image_path": "a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 80, + 492, + 132.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 132.0, + 492, + 184.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 184.0, + 492, + 236.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 245, + 506, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 104, + 244, + 399, + 259 + ], + "score": 1.0, + "content": "Figure 4: (a) Scaling of gradients in natural gradient descent. We use", + "type": "text" + }, + { + "bbox": [ + 399, + 246, + 429, + 257 + ], + "score": 0.92, + "content": "\\beta = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 244, + 506, + 259 + ], + "score": 1.0, + "content": "in BigGAN-Deep", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "experiments. (b) The update speed of the discriminator relative to the generator shown as the dif-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 266, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 139, + 281 + ], + "score": 1.0, + "content": "ference", + "type": "text" + }, + { + "bbox": [ + 139, + 267, + 213, + 279 + ], + "score": 0.93, + "content": "\\lVert \\Delta \\boldsymbol { \\theta } _ { D } \\rVert - \\lVert \\Delta \\boldsymbol { \\theta } _ { G } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 266, + 506, + 281 + ], + "score": 1.0, + "content": "after each update step. Lines are smoothed with moving average using", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "window size 20 (in total, there are 3007, 1659 and 1768 data points for each curve). For all curves", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 289, + 282, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 282, + 302 + ], + "score": 1.0, + "content": "oscillation strongly after training collapsed.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 106, + 318, + 365, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 366, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 366, + 333 + ], + "score": 1.0, + "content": "4 LOGAN WITH NATURAL GRADIENT DESCENT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 387, + 356 + ], + "score": 1.0, + "content": "Although our analysis suggests using strong optimisers for optimising", + "type": "text" + }, + { + "bbox": [ + 387, + 346, + 393, + 353 + ], + "score": 0.64, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 343, + 505, + 356 + ], + "score": 1.0, + "content": ", Wu et al. (2019) only used", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 435, + 366 + ], + "score": 1.0, + "content": "basic gradient descent (GD) with a fixed step-size. This choice limits the size", + "type": "text" + }, + { + "bbox": [ + 435, + 355, + 451, + 365 + ], + "score": 0.84, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "can take: in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "order not to overshoot when the curvature is large, the step size would be too conservative when", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "the curvature is small. We hypothesis that GD is more detrimental for larger models, which have", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "score": 1.0, + "content": "complex loss surfaces with highly varying curvatures. Consistent with this hypothesis, we observed", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 398, + 466, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 444, + 411 + ], + "score": 1.0, + "content": "only marginal improvement over the baseline using GD (section 5.3, Table 1, Figure", + "type": "text" + }, + { + "bbox": [ + 444, + 398, + 459, + 409 + ], + "score": 0.41, + "content": "3 \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 398, + 466, + 411 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "In this work, we instead use natural gradient descent (NGD, Amari 1998) for latent optimisation.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "NGD can be seen as an approximate second-order optimisation method (Pascanu & Bengio, 2013;", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "Martens, 2014), and has been applied successfully in many domains. By using the positive semi-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "definite (PSD) Gauss-Newton matrix to approximate the (possibly negative definite) Hessian, NGD", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "often works even better than exact second-order methods. NGD is expensive in high dimensional pa-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "rameter spaces, even with approximations (Martens, 2014). However, we demonstrate it is efficient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 481, + 307, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 307, + 494 + ], + "score": 1.0, + "content": "for latent optimisation, even in very large models.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 369, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 369, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 194, + 513 + ], + "score": 1.0, + "content": "Given the gradient of", + "type": "text" + }, + { + "bbox": [ + 194, + 503, + 200, + 510 + ], + "score": 0.6, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 499, + 203, + 513 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 204, + 497, + 245, + 514 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 496, + 369, + 514 + ], + "score": 1.0, + "content": "∂f(z)∂z , NGD computes the update as", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 274, + 516, + 337, + 531 + ], + "lines": [ + { + "bbox": [ + 274, + 516, + 337, + 531 + ], + "spans": [ + { + "bbox": [ + 274, + 516, + 337, + 531 + ], + "score": 0.92, + "content": "\\Delta z = \\alpha { \\cal F } ^ { - 1 } g", + "type": "interline_equation", + "image_path": "2c49f0b8b0f04b55a506116dd240c53aa29cbd4b6cfc4d69b7f74cd067ac65be.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 274, + 516, + 337, + 531 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 315, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 316, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 253, + 547 + ], + "score": 1.0, + "content": "where the Fisher information matrix", + "type": "text" + }, + { + "bbox": [ + 254, + 536, + 262, + 545 + ], + "score": 0.86, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 534, + 316, + 547 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 549, + 383, + 565 + ], + "lines": [ + { + "bbox": [ + 227, + 549, + 383, + 565 + ], + "spans": [ + { + "bbox": [ + 227, + 549, + 383, + 565 + ], + "score": 0.93, + "content": "F = \\mathbb { E } _ { p ( t \\mid z ) } \\left[ \\nabla \\ln p ( t | z ) \\nabla \\ln p ( t | z ) ^ { T } \\right]", + "type": "interline_equation", + "image_path": "e0d8ff335b0f8f2887e74bbcf6734a13504dff62a18761803152f89d2faa4905.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 227, + 549, + 383, + 565 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 219, + 583 + ], + "score": 1.0, + "content": "The log-likelihood function", + "type": "text" + }, + { + "bbox": [ + 219, + 569, + 255, + 581 + ], + "score": 0.93, + "content": "\\ln { p ( t | z ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 568, + 506, + 583 + ], + "score": 1.0, + "content": "typically corresponds to commonly used error functions such", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 578, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 505, + 594 + ], + "score": 1.0, + "content": "as cross entropy loss. This correspondence is not necessary when NGD is interpreted as an ap-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "proximate second-order method, as has long been used in practice (Martens, 2014). Nevertheless,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 601, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 615 + ], + "score": 1.0, + "content": "Appendix C provides a Poisson log-likelihood interpretation for the hinge loss commonly used in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "score": 1.0, + "content": "GANs (Lim & Ye, 2017; Tran et al., 2017). An important difference between latent optimisation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 449, + 637 + ], + "score": 1.0, + "content": "and commonly seen senarios using NGD is that the expectation over the condition", + "type": "text" + }, + { + "bbox": [ + 450, + 624, + 462, + 635 + ], + "score": 0.75, + "content": "( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "is absent.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 151, + 648 + ], + "score": 1.0, + "content": "Since each", + "type": "text" + }, + { + "bbox": [ + 151, + 636, + 158, + 645 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 635, + 445, + 648 + ], + "score": 1.0, + "content": "is only responsible for generating one image, it only minimises the loss", + "type": "text" + }, + { + "bbox": [ + 446, + 635, + 473, + 646 + ], + "score": 0.92, + "content": "L _ { G } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "for this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "particular instance. Computing per-sample Fisher this way is necessary to approximate SGA (see", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 656, + 212, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 212, + 669 + ], + "score": 1.0, + "content": "Appendix B.1 for details).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 104, + 672, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 104, + 672, + 299, + 687 + ], + "score": 1.0, + "content": "More specifically, we use the empirical Fisher", + "type": "text" + }, + { + "bbox": [ + 299, + 674, + 311, + 684 + ], + "score": 0.88, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 672, + 505, + 687 + ], + "score": 1.0, + "content": "with Tikhonov damping, as in TONGA (Roux", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 684, + 157, + 696 + ], + "spans": [ + { + "bbox": [ + 104, + 684, + 157, + 696 + ], + "score": 1.0, + "content": "et al., 2008)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 693, + 343, + 708 + ], + "lines": [ + { + "bbox": [ + 268, + 693, + 343, + 708 + ], + "spans": [ + { + "bbox": [ + 268, + 693, + 343, + 708 + ], + "score": 0.93, + "content": "F ^ { \\prime } = g \\cdot g ^ { T } + \\beta I", + "type": "interline_equation", + "image_path": "fe2012b5a63efe20a298e3446b3edb39108a3712d4a798b9d3788fd8fd48eb92.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 268, + 693, + 343, + 708 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 118, + 720 + ], + "score": 0.85, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 708, + 358, + 723 + ], + "score": 1.0, + "content": "is cheaper to compute compared with the full Fisher, since", + "type": "text" + }, + { + "bbox": [ + 358, + 712, + 364, + 721 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "is already available. The damping", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 132, + 733 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 133, + 721, + 140, + 732 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 720, + 340, + 733 + ], + "score": 1.0, + "content": "regularises the step size, which is important when", + "type": "text" + }, + { + "bbox": [ + 340, + 721, + 351, + 730 + ], + "score": 0.87, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "only poorly approximates the Hessian", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 80, + 492, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 80, + 492, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 80, + 492, + 236 + ], + "spans": [ + { + "bbox": [ + 117, + 80, + 492, + 236 + ], + "score": 0.967, + "type": "image", + "image_path": "a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 80, + 492, + 132.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 132.0, + 492, + 184.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 184.0, + 492, + 236.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 245, + 506, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 104, + 244, + 399, + 259 + ], + "score": 1.0, + "content": "Figure 4: (a) Scaling of gradients in natural gradient descent. We use", + "type": "text" + }, + { + "bbox": [ + 399, + 246, + 429, + 257 + ], + "score": 0.92, + "content": "\\beta = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 244, + 506, + 259 + ], + "score": 1.0, + "content": "in BigGAN-Deep", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "experiments. (b) The update speed of the discriminator relative to the generator shown as the dif-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 266, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 139, + 281 + ], + "score": 1.0, + "content": "ference", + "type": "text" + }, + { + "bbox": [ + 139, + 267, + 213, + 279 + ], + "score": 0.93, + "content": "\\lVert \\Delta \\boldsymbol { \\theta } _ { D } \\rVert - \\lVert \\Delta \\boldsymbol { \\theta } _ { G } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 266, + 506, + 281 + ], + "score": 1.0, + "content": "after each update step. Lines are smoothed with moving average using", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "window size 20 (in total, there are 3007, 1659 and 1768 data points for each curve). For all curves", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 289, + 282, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 282, + 302 + ], + "score": 1.0, + "content": "oscillation strongly after training collapsed.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 106, + 318, + 365, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 366, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 366, + 333 + ], + "score": 1.0, + "content": "4 LOGAN WITH NATURAL GRADIENT DESCENT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 387, + 356 + ], + "score": 1.0, + "content": "Although our analysis suggests using strong optimisers for optimising", + "type": "text" + }, + { + "bbox": [ + 387, + 346, + 393, + 353 + ], + "score": 0.64, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 343, + 505, + 356 + ], + "score": 1.0, + "content": ", Wu et al. (2019) only used", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 435, + 366 + ], + "score": 1.0, + "content": "basic gradient descent (GD) with a fixed step-size. This choice limits the size", + "type": "text" + }, + { + "bbox": [ + 435, + 355, + 451, + 365 + ], + "score": 0.84, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "can take: in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "order not to overshoot when the curvature is large, the step size would be too conservative when", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "the curvature is small. We hypothesis that GD is more detrimental for larger models, which have", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "score": 1.0, + "content": "complex loss surfaces with highly varying curvatures. Consistent with this hypothesis, we observed", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 398, + 466, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 444, + 411 + ], + "score": 1.0, + "content": "only marginal improvement over the baseline using GD (section 5.3, Table 1, Figure", + "type": "text" + }, + { + "bbox": [ + 444, + 398, + 459, + 409 + ], + "score": 0.41, + "content": "3 \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 398, + 466, + 411 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 343, + 506, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "In this work, we instead use natural gradient descent (NGD, Amari 1998) for latent optimisation.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "NGD can be seen as an approximate second-order optimisation method (Pascanu & Bengio, 2013;", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "Martens, 2014), and has been applied successfully in many domains. By using the positive semi-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "definite (PSD) Gauss-Newton matrix to approximate the (possibly negative definite) Hessian, NGD", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "often works even better than exact second-order methods. NGD is expensive in high dimensional pa-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "rameter spaces, even with approximations (Martens, 2014). However, we demonstrate it is efficient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 481, + 307, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 307, + 494 + ], + "score": 1.0, + "content": "for latent optimisation, even in very large models.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 415, + 506, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 369, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 369, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 194, + 513 + ], + "score": 1.0, + "content": "Given the gradient of", + "type": "text" + }, + { + "bbox": [ + 194, + 503, + 200, + 510 + ], + "score": 0.6, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 499, + 203, + 513 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 204, + 497, + 245, + 514 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 496, + 369, + 514 + ], + "score": 1.0, + "content": "∂f(z)∂z , NGD computes the update as", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 496, + 369, + 514 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 274, + 516, + 337, + 531 + ], + "lines": [ + { + "bbox": [ + 274, + 516, + 337, + 531 + ], + "spans": [ + { + "bbox": [ + 274, + 516, + 337, + 531 + ], + "score": 0.92, + "content": "\\Delta z = \\alpha { \\cal F } ^ { - 1 } g", + "type": "interline_equation", + "image_path": "2c49f0b8b0f04b55a506116dd240c53aa29cbd4b6cfc4d69b7f74cd067ac65be.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 274, + 516, + 337, + 531 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 315, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 316, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 253, + 547 + ], + "score": 1.0, + "content": "where the Fisher information matrix", + "type": "text" + }, + { + "bbox": [ + 254, + 536, + 262, + 545 + ], + "score": 0.86, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 534, + 316, + 547 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 534, + 316, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 549, + 383, + 565 + ], + "lines": [ + { + "bbox": [ + 227, + 549, + 383, + 565 + ], + "spans": [ + { + "bbox": [ + 227, + 549, + 383, + 565 + ], + "score": 0.93, + "content": "F = \\mathbb { E } _ { p ( t \\mid z ) } \\left[ \\nabla \\ln p ( t | z ) \\nabla \\ln p ( t | z ) ^ { T } \\right]", + "type": "interline_equation", + "image_path": "e0d8ff335b0f8f2887e74bbcf6734a13504dff62a18761803152f89d2faa4905.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 227, + 549, + 383, + 565 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 219, + 583 + ], + "score": 1.0, + "content": "The log-likelihood function", + "type": "text" + }, + { + "bbox": [ + 219, + 569, + 255, + 581 + ], + "score": 0.93, + "content": "\\ln { p ( t | z ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 568, + 506, + 583 + ], + "score": 1.0, + "content": "typically corresponds to commonly used error functions such", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 578, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 505, + 594 + ], + "score": 1.0, + "content": "as cross entropy loss. This correspondence is not necessary when NGD is interpreted as an ap-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 590, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "proximate second-order method, as has long been used in practice (Martens, 2014). Nevertheless,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 601, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 615 + ], + "score": 1.0, + "content": "Appendix C provides a Poisson log-likelihood interpretation for the hinge loss commonly used in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "score": 1.0, + "content": "GANs (Lim & Ye, 2017; Tran et al., 2017). An important difference between latent optimisation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 449, + 637 + ], + "score": 1.0, + "content": "and commonly seen senarios using NGD is that the expectation over the condition", + "type": "text" + }, + { + "bbox": [ + 450, + 624, + 462, + 635 + ], + "score": 0.75, + "content": "( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "is absent.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 151, + 648 + ], + "score": 1.0, + "content": "Since each", + "type": "text" + }, + { + "bbox": [ + 151, + 636, + 158, + 645 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 635, + 445, + 648 + ], + "score": 1.0, + "content": "is only responsible for generating one image, it only minimises the loss", + "type": "text" + }, + { + "bbox": [ + 446, + 635, + 473, + 646 + ], + "score": 0.92, + "content": "L _ { G } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "for this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "particular instance. Computing per-sample Fisher this way is necessary to approximate SGA (see", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 656, + 212, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 212, + 669 + ], + "score": 1.0, + "content": "Appendix B.1 for details).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 568, + 506, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 104, + 672, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 104, + 672, + 299, + 687 + ], + "score": 1.0, + "content": "More specifically, we use the empirical Fisher", + "type": "text" + }, + { + "bbox": [ + 299, + 674, + 311, + 684 + ], + "score": 0.88, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 672, + 505, + 687 + ], + "score": 1.0, + "content": "with Tikhonov damping, as in TONGA (Roux", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 684, + 157, + 696 + ], + "spans": [ + { + "bbox": [ + 104, + 684, + 157, + 696 + ], + "score": 1.0, + "content": "et al., 2008)", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 672, + 505, + 696 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 693, + 343, + 708 + ], + "lines": [ + { + "bbox": [ + 268, + 693, + 343, + 708 + ], + "spans": [ + { + "bbox": [ + 268, + 693, + 343, + 708 + ], + "score": 0.93, + "content": "F ^ { \\prime } = g \\cdot g ^ { T } + \\beta I", + "type": "interline_equation", + "image_path": "fe2012b5a63efe20a298e3446b3edb39108a3712d4a798b9d3788fd8fd48eb92.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 268, + 693, + 343, + 708 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 118, + 720 + ], + "score": 0.85, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 708, + 358, + 723 + ], + "score": 1.0, + "content": "is cheaper to compute compared with the full Fisher, since", + "type": "text" + }, + { + "bbox": [ + 358, + 712, + 364, + 721 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "is already available. The damping", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 132, + 733 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 133, + 721, + 140, + 732 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 720, + 340, + 733 + ], + "score": 1.0, + "content": "regularises the step size, which is important when", + "type": "text" + }, + { + "bbox": [ + 340, + 721, + 351, + 730 + ], + "score": 0.87, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "only poorly approximates the Hessian", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 79, + 494, + 238 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 79, + 494, + 238 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 79, + 494, + 238 + ], + "spans": [ + { + "bbox": [ + 116, + 79, + 494, + 238 + ], + "score": 0.971, + "type": "image", + "image_path": "2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 79, + 494, + 132.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 132.0, + 494, + 185.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 185.0, + 494, + 238.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 248, + 505, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 236, + 260 + ], + "score": 1.0, + "content": "Figure 5: (a) The change from", + "type": "text" + }, + { + "bbox": [ + 236, + 248, + 251, + 258 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 248, + 329, + 260 + ], + "score": 1.0, + "content": "across training, in", + "type": "text" + }, + { + "bbox": [ + 329, + 248, + 339, + 258 + ], + "score": 0.73, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 248, + 419, + 260 + ], + "score": 1.0, + "content": "’s output space and", + "type": "text" + }, + { + "bbox": [ + 420, + 250, + 426, + 258 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "’s Euclidean space.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "The distances are normalised by their standard derivations computed from a moving window of size", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "20 (1007 data points in total). (b) Training curves from models with different “stop gradient”", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "operations. For reference, the training curve from an unablated model is plotted as the dashed line.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 291, + 427, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 427, + 306 + ], + "score": 1.0, + "content": "All instances with stop gradient collapsed (FID went up) early in training.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 323, + 503, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "or when the Hessian changes too much across the step. Using the Sherman-Morrison formula, the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 334, + 357, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 357, + 347 + ], + "score": 1.0, + "content": "NGD update can be simplified into the following closed form:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 349, + 425, + 378 + ], + "lines": [ + { + "bbox": [ + 186, + 349, + 425, + 378 + ], + "spans": [ + { + "bbox": [ + 186, + 349, + 425, + 378 + ], + "score": 0.94, + "content": "\\Delta z = \\alpha \\left( \\frac { I } { \\beta } - \\frac { g g ^ { T } } { \\beta ^ { 2 } + \\beta g ^ { T } g } \\right) g = \\frac { \\alpha } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) g", + "type": "interline_equation", + "image_path": "85b1b200778700525fac67da4661c56a14ab82cd6d2e008688bb1863b8a5e21a.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 349, + 425, + 363.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 186, + 363.5, + 425, + 378.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "which does not involve any matrix inversion. Thus, NGD adapts the step size according to the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 393, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 183, + 412 + ], + "score": 1.0, + "content": "curvature estimate", + "type": "text" + }, + { + "bbox": [ + 184, + 393, + 272, + 413 + ], + "score": 0.95, + "content": "\\begin{array} { r } { c = \\frac { 1 } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 396, + 308, + 411 + ], + "score": 1.0, + "content": ". Figure", + "type": "text" + }, + { + "bbox": [ + 308, + 397, + 324, + 407 + ], + "score": 0.49, + "content": "{ \\textbf { 4 a } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "illustrates the scaling for different values of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 412, + 114, + 423 + ], + "score": 0.79, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 411, + 505, + 424 + ], + "score": 1.0, + "content": ". NGD automatically smooths the scale of updates by down-scaling the gradients as their norm", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 411, + 434 + ], + "score": 1.0, + "content": "grows, which also contributes to the smoothed norms of updates (Figure", + "type": "text" + }, + { + "bbox": [ + 411, + 422, + 428, + 433 + ], + "score": 0.5, + "content": "4 \\ \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "). Since the NGD", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 434, + 489, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 231, + 444 + ], + "score": 1.0, + "content": "update remains proportional to", + "type": "text" + }, + { + "bbox": [ + 232, + 435, + 238, + 445 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 434, + 489, + 444 + ], + "score": 1.0, + "content": ", our analysis based on gradient descent in section 3 still holds.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 460, + 281, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 282, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 282, + 475 + ], + "score": 1.0, + "content": "5 EXPERIMENTS AND ANALYSIS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 460, + 497 + ], + "score": 1.0, + "content": "We focus on large scale GANs based on BigGAN-deep (Brock et al., 2018) trained on", + "type": "text" + }, + { + "bbox": [ + 460, + 486, + 504, + 496 + ], + "score": 0.88, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "size images from the ImageNet dataset (Deng et al., 2009). In Appendix E, we present results from", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "applying our algorithm on Spectral Normalised GANs trained with CIFAR dataset (Krizhevsky et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 518, + 341, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 341, + 529 + ], + "score": 1.0, + "content": "2009), which obtains state-of-the-art scores on this model.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 542, + 239, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 240, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 240, + 555 + ], + "score": 1.0, + "content": "5.1 MODEL CONFIGURATION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "We used the standard BigGAN-deep architecture with three minor modifications: 1. We increased", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "the size of the latent source from 128 to 256, to compensate the randomness of the source lost", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 177, + 597 + ], + "score": 1.0, + "content": "when optimising", + "type": "text" + }, + { + "bbox": [ + 177, + 588, + 184, + 595 + ], + "score": 0.55, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 586, + 337, + 597 + ], + "score": 1.0, + "content": ". 2. We use the uniform distribution", + "type": "text" + }, + { + "bbox": [ + 337, + 585, + 376, + 597 + ], + "score": 0.93, + "content": "\\mathcal { U } ( - 1 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "instead of the standard normal", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 155, + 609 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 596, + 188, + 609 + ], + "score": 0.93, + "content": "\\mathcal { N } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 596, + 203, + 609 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 203, + 596, + 222, + 609 + ], + "score": 0.91, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 596, + 506, + 609 + ], + "score": 1.0, + "content": ", to be consistent with the clipping operation (Algorithm 1). 3. We use", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 607, + 465, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 439, + 625 + ], + "score": 1.0, + "content": "leaky ReLU instead of ReLU as the non-linearity for smoother gradient flow for", + "type": "text" + }, + { + "bbox": [ + 440, + 608, + 462, + 623 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 607, + 465, + 625 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "Consistent with detailed findings in Brock et al. (2018) that these changes have limited effect, our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "experiment with this baseline model obtains only slightly better scores compared with those in Brock", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "et al. (2018) (Table 1, see also Figure 8). The FID and IS are computed as in Brock et al. (2018), and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "IS values are computed from checkpoints with the lowest FIDs. The means and standard deviations", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 671, + 339, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 339, + 683 + ], + "score": 1.0, + "content": "are computed from 5 models with different random seeds.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 327, + 700 + ], + "score": 1.0, + "content": "To apply latent optimisation, we use a damping factor", + "type": "text" + }, + { + "bbox": [ + 327, + 688, + 363, + 699 + ], + "score": 0.91, + "content": "\\beta = 5 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "combined with a large step size of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 141, + 709 + ], + "score": 0.88, + "content": "\\alpha = 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 698, + 358, + 712 + ], + "score": 1.0, + "content": ". As an additional way of damping, we only optimise", + "type": "text" + }, + { + "bbox": [ + 359, + 699, + 379, + 709 + ], + "score": 0.88, + "content": "5 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 698, + 391, + 712 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 391, + 700, + 397, + 709 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "’s dimensions. Optimising", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 204, + 722 + ], + "score": 1.0, + "content": "the entire population of", + "type": "text" + }, + { + "bbox": [ + 204, + 712, + 211, + 720 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 710, + 392, + 722 + ], + "score": 1.0, + "content": "was unstable in our experiments. Similar to", + "type": "text" + }, + { + "bbox": [ + 393, + 710, + 408, + 720 + ], + "score": 0.49, + "content": "\\mathbf { W } \\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "et al. (2019), we found", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 372, + 733 + ], + "score": 1.0, + "content": "it was helpful to regularise the Euclidean norm of weight-change", + "type": "text" + }, + { + "bbox": [ + 372, + 721, + 387, + 731 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 720, + 506, + 733 + ], + "score": 1.0, + "content": ", with a regulariser weight of", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 79, + 494, + 238 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 79, + 494, + 238 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 79, + 494, + 238 + ], + "spans": [ + { + "bbox": [ + 116, + 79, + 494, + 238 + ], + "score": 0.971, + "type": "image", + "image_path": "2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 79, + 494, + 132.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 132.0, + 494, + 185.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 185.0, + 494, + 238.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 248, + 505, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 236, + 260 + ], + "score": 1.0, + "content": "Figure 5: (a) The change from", + "type": "text" + }, + { + "bbox": [ + 236, + 248, + 251, + 258 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 248, + 329, + 260 + ], + "score": 1.0, + "content": "across training, in", + "type": "text" + }, + { + "bbox": [ + 329, + 248, + 339, + 258 + ], + "score": 0.73, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 248, + 419, + 260 + ], + "score": 1.0, + "content": "’s output space and", + "type": "text" + }, + { + "bbox": [ + 420, + 250, + 426, + 258 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "’s Euclidean space.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "The distances are normalised by their standard derivations computed from a moving window of size", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "20 (1007 data points in total). (b) Training curves from models with different “stop gradient”", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "operations. For reference, the training curve from an unablated model is plotted as the dashed line.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 291, + 427, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 427, + 306 + ], + "score": 1.0, + "content": "All instances with stop gradient collapsed (FID went up) early in training.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 323, + 503, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "or when the Hessian changes too much across the step. Using the Sherman-Morrison formula, the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 334, + 357, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 357, + 347 + ], + "score": 1.0, + "content": "NGD update can be simplified into the following closed form:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 323, + 505, + 347 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 349, + 425, + 378 + ], + "lines": [ + { + "bbox": [ + 186, + 349, + 425, + 378 + ], + "spans": [ + { + "bbox": [ + 186, + 349, + 425, + 378 + ], + "score": 0.94, + "content": "\\Delta z = \\alpha \\left( \\frac { I } { \\beta } - \\frac { g g ^ { T } } { \\beta ^ { 2 } + \\beta g ^ { T } g } \\right) g = \\frac { \\alpha } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) g", + "type": "interline_equation", + "image_path": "85b1b200778700525fac67da4661c56a14ab82cd6d2e008688bb1863b8a5e21a.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 349, + 425, + 363.5 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 186, + 363.5, + 425, + 378.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "which does not involve any matrix inversion. Thus, NGD adapts the step size according to the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 393, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 183, + 412 + ], + "score": 1.0, + "content": "curvature estimate", + "type": "text" + }, + { + "bbox": [ + 184, + 393, + 272, + 413 + ], + "score": 0.95, + "content": "\\begin{array} { r } { c = \\frac { 1 } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 396, + 308, + 411 + ], + "score": 1.0, + "content": ". Figure", + "type": "text" + }, + { + "bbox": [ + 308, + 397, + 324, + 407 + ], + "score": 0.49, + "content": "{ \\textbf { 4 a } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "illustrates the scaling for different values of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 412, + 114, + 423 + ], + "score": 0.79, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 411, + 505, + 424 + ], + "score": 1.0, + "content": ". NGD automatically smooths the scale of updates by down-scaling the gradients as their norm", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 411, + 434 + ], + "score": 1.0, + "content": "grows, which also contributes to the smoothed norms of updates (Figure", + "type": "text" + }, + { + "bbox": [ + 411, + 422, + 428, + 433 + ], + "score": 0.5, + "content": "4 \\ \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "). Since the NGD", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 434, + 489, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 231, + 444 + ], + "score": 1.0, + "content": "update remains proportional to", + "type": "text" + }, + { + "bbox": [ + 232, + 435, + 238, + 445 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 434, + 489, + 444 + ], + "score": 1.0, + "content": ", our analysis based on gradient descent in section 3 still holds.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 382, + 506, + 445 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 460, + 281, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 282, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 282, + 475 + ], + "score": 1.0, + "content": "5 EXPERIMENTS AND ANALYSIS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 460, + 497 + ], + "score": 1.0, + "content": "We focus on large scale GANs based on BigGAN-deep (Brock et al., 2018) trained on", + "type": "text" + }, + { + "bbox": [ + 460, + 486, + 504, + 496 + ], + "score": 0.88, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "size images from the ImageNet dataset (Deng et al., 2009). In Appendix E, we present results from", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "applying our algorithm on Spectral Normalised GANs trained with CIFAR dataset (Krizhevsky et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 518, + 341, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 341, + 529 + ], + "score": 1.0, + "content": "2009), which obtains state-of-the-art scores on this model.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 485, + 505, + 529 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 542, + 239, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 542, + 240, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 240, + 555 + ], + "score": 1.0, + "content": "5.1 MODEL CONFIGURATION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "We used the standard BigGAN-deep architecture with three minor modifications: 1. We increased", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "the size of the latent source from 128 to 256, to compensate the randomness of the source lost", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 177, + 597 + ], + "score": 1.0, + "content": "when optimising", + "type": "text" + }, + { + "bbox": [ + 177, + 588, + 184, + 595 + ], + "score": 0.55, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 586, + 337, + 597 + ], + "score": 1.0, + "content": ". 2. We use the uniform distribution", + "type": "text" + }, + { + "bbox": [ + 337, + 585, + 376, + 597 + ], + "score": 0.93, + "content": "\\mathcal { U } ( - 1 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "instead of the standard normal", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 155, + 609 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 596, + 188, + 609 + ], + "score": 0.93, + "content": "\\mathcal { N } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 596, + 203, + 609 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 203, + 596, + 222, + 609 + ], + "score": 0.91, + "content": "p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 596, + 506, + 609 + ], + "score": 1.0, + "content": ", to be consistent with the clipping operation (Algorithm 1). 3. We use", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 607, + 465, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 439, + 625 + ], + "score": 1.0, + "content": "leaky ReLU instead of ReLU as the non-linearity for smoother gradient flow for", + "type": "text" + }, + { + "bbox": [ + 440, + 608, + 462, + 623 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 607, + 465, + 625 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 563, + 506, + 625 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "Consistent with detailed findings in Brock et al. (2018) that these changes have limited effect, our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "experiment with this baseline model obtains only slightly better scores compared with those in Brock", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "et al. (2018) (Table 1, see also Figure 8). The FID and IS are computed as in Brock et al. (2018), and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "IS values are computed from checkpoints with the lowest FIDs. The means and standard deviations", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 671, + 339, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 339, + 683 + ], + "score": 1.0, + "content": "are computed from 5 models with different random seeds.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 626, + 506, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 327, + 700 + ], + "score": 1.0, + "content": "To apply latent optimisation, we use a damping factor", + "type": "text" + }, + { + "bbox": [ + 327, + 688, + 363, + 699 + ], + "score": 0.91, + "content": "\\beta = 5 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "combined with a large step size of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 141, + 709 + ], + "score": 0.88, + "content": "\\alpha = 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 698, + 358, + 712 + ], + "score": 1.0, + "content": ". As an additional way of damping, we only optimise", + "type": "text" + }, + { + "bbox": [ + 359, + 699, + 379, + 709 + ], + "score": 0.88, + "content": "5 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 698, + 391, + 712 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 391, + 700, + 397, + 709 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "’s dimensions. Optimising", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 204, + 722 + ], + "score": 1.0, + "content": "the entire population of", + "type": "text" + }, + { + "bbox": [ + 204, + 712, + 211, + 720 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 710, + 392, + 722 + ], + "score": 1.0, + "content": "was unstable in our experiments. Similar to", + "type": "text" + }, + { + "bbox": [ + 393, + 710, + 408, + 720 + ], + "score": 0.49, + "content": "\\mathbf { W } \\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "et al. (2019), we found", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 372, + 733 + ], + "score": 1.0, + "content": "it was helpful to regularise the Euclidean norm of weight-change", + "type": "text" + }, + { + "bbox": [ + 372, + 721, + 387, + 731 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 720, + 506, + 733 + ], + "score": 1.0, + "content": ", with a regulariser weight of", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "300.0. All other hyper-parameters, including learning rates and a large batch size of 2048, remain", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "the same as in BigGAN-deep; we did not optimise these hyper-parameters. We call this model", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 177, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 177, + 117 + ], + "score": 1.0, + "content": "LOGAN (NGD).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 135, + 200, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 201, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 201, + 148 + ], + "score": 1.0, + "content": "5.2 BASIC RESULTS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 505, + 170 + ], + "score": 1.0, + "content": "Employing the same architecture and number of parameters as the BigGAN-deep baseline, LOGAN", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 167, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 182 + ], + "score": 1.0, + "content": "(NGD) achieved better FID and IS (Table 1). As observed by Brock et al. (2018), BigGAN training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 180, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 193 + ], + "score": 1.0, + "content": "always eventually collapsed. Training with LOGAN also collapsed, perhaps due to higher-order", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 190, + 504, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 482, + 204 + ], + "score": 1.0, + "content": "dynamics beyond the scope we have analysed, but took significantly longer (600k steps versus", + "type": "text" + }, + { + "bbox": [ + 482, + 191, + 504, + 201 + ], + "score": 0.33, + "content": "3 0 0 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 214, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 214, + 215 + ], + "score": 1.0, + "content": "steps with BigGAN-deep).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 231, + 232 + ], + "score": 1.0, + "content": "During training, LOGAN was", + "type": "text" + }, + { + "bbox": [ + 231, + 219, + 256, + 229 + ], + "score": 0.3, + "content": "2 - 3", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 218, + 506, + 232 + ], + "score": 1.0, + "content": "times slower per step compared with BigGAN-deep because", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 406, + 242 + ], + "score": 1.0, + "content": "of the additional forward and backward pass. We found that optimising", + "type": "text" + }, + { + "bbox": [ + 407, + 232, + 414, + 240 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "during evaluation did", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 403, + 253 + ], + "score": 1.0, + "content": "not improve sample scores (even up to 10 steps), so we do not optimise", + "type": "text" + }, + { + "bbox": [ + 403, + 243, + 410, + 250 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "for evaluation. There-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "fore, LOGAN has the same evaluation cost as original BigGAN-deep. To help understand this", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 261, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 261, + 254, + 277 + ], + "score": 1.0, + "content": "behaviour, we plot the change from", + "type": "text" + }, + { + "bbox": [ + 254, + 263, + 269, + 273 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 261, + 506, + 277 + ], + "score": 1.0, + "content": "during training in Figure 5 a. Although the movement in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 174, + 286 + ], + "score": 1.0, + "content": "Euclidean space", + "type": "text" + }, + { + "bbox": [ + 174, + 273, + 198, + 285 + ], + "score": 0.9, + "content": "| | \\Delta z | |", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 272, + 390, + 286 + ], + "score": 1.0, + "content": "grew until training collapsed, the movement in", + "type": "text" + }, + { + "bbox": [ + 390, + 274, + 400, + 284 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "’s output space, measured", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 118, + 297 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 284, + 204, + 297 + ], + "score": 0.92, + "content": "\\| f ( z + \\Delta z ) - f ( z ) \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 284, + 353, + 297 + ], + "score": 1.0, + "content": ", remained unchanged (see Appendix", + "type": "text" + }, + { + "bbox": [ + 354, + 285, + 363, + 295 + ], + "score": 0.29, + "content": "\\mathrm { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 284, + 506, + 297 + ], + "score": 1.0, + "content": "for details). As shown in our anal-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 174, + 308 + ], + "score": 1.0, + "content": "ysis, optimising", + "type": "text" + }, + { + "bbox": [ + 174, + 298, + 181, + 305 + ], + "score": 0.7, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "improves the training dynamics, so LOGANs work well after training without", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 306, + 225, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 225, + 320 + ], + "score": 1.0, + "content": "requiring latent optimisation.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 336, + 216, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 218, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 218, + 350 + ], + "score": 1.0, + "content": "5.3 ABLATION STUDIES", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "We verify our theoretical analysis in section 3 by examining key components of Algorithm 1 via", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 405, + 384 + ], + "score": 1.0, + "content": "ablation studies. First, we experimented with using basic GD to optimising", + "type": "text" + }, + { + "bbox": [ + 406, + 373, + 412, + 381 + ], + "score": 0.64, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 370, + 505, + 384 + ], + "score": 1.0, + "content": ", as in Wu et al. (2019),", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 342, + 394 + ], + "score": 1.0, + "content": "and call this model LOGAN (GD). A smaller step size of", + "type": "text" + }, + { + "bbox": [ + 342, + 382, + 392, + 392 + ], + "score": 0.88, + "content": "\\alpha = 0 . 0 0 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "was required; larger values", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "were unstable and led to premature collapse of training. As shown in Table 1, the scores from", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 404, + 440, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 440, + 416 + ], + "score": 1.0, + "content": "LOGAN (GD) were worse than LOGAN (NGD) and similar to the baseline model.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 378, + 447 + ], + "score": 1.0, + "content": "We then evaluate the effects of removing those terms depending on the ordinary gradient (eq. 3). Since these terms were computed", + "type": "text" + }, + { + "bbox": [ + 379, + 420, + 401, + 435 + ], + "score": 0.92, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 417, + 505, + 447 + ], + "score": 1.0, + "content": "in eq. 8, which are not inback-propagating through", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "score": 1.0, + "content": "the latent optimisation procedure, we removed them by selectively blocking back-propagation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 460, + 468 + ], + "score": 1.0, + "content": "with “stop gradient” operations (e.g., in TensorFlow Abadi et al. 2016). Figure", + "type": "text" + }, + { + "bbox": [ + 460, + 456, + 476, + 466 + ], + "score": 0.69, + "content": "{ \\bf 5 \\ B }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "shows", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 466, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 394, + 487 + ], + "score": 1.0, + "content": "the change of FIDs for the three models corresponding to removing", + "type": "text" + }, + { + "bbox": [ + 394, + 466, + 459, + 489 + ], + "score": 0.93, + "content": "\\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { G } } \\right) ^ { T } \\ \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 466, + 505, + 487 + ], + "score": 1.0, + "content": ", removing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 487, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 107, + 487, + 171, + 510 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 487, + 505, + 510 + ], + "score": 1.0, + "content": "and removing both terms. As predicted by our analysis (section 3), both terms help", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 361, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 361, + 520 + ], + "score": 1.0, + "content": "stabilise training; training diverged early for all three ablations.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 108, + 538, + 252, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 254, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 254, + 551 + ], + "score": 1.0, + "content": "5.4 TRUNCATION AND SAMPLES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "Truncation is a technique introduced by Brock et al. (2018) to illustrate the trade-off between the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 350, + 584 + ], + "score": 1.0, + "content": "FID and IS in a trained model. For a model trained with", + "type": "text" + }, + { + "bbox": [ + 351, + 572, + 393, + 583 + ], + "score": 0.91, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "from a source distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 355, + 596 + ], + "score": 1.0, + "content": "symmetric around 0, such as the standard normal distribution", + "type": "text" + }, + { + "bbox": [ + 355, + 583, + 388, + 595 + ], + "score": 0.9, + "content": "\\mathcal { N } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "and the uniform distribution", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 144, + 606 + ], + "score": 0.91, + "content": "\\mathcal { U } ( - 1 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 594, + 297, + 607 + ], + "score": 1.0, + "content": ", down-scaling (truncating) the source", + "type": "text" + }, + { + "bbox": [ + 297, + 595, + 334, + 604 + ], + "score": 0.9, + "content": "\\bar { z } = s \\cdot z", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 594, + 355, + 607 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 356, + 595, + 398, + 605 + ], + "score": 0.9, + "content": "0 \\leq s \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "gives samples with higher", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "visual quality but reduced diversity. This observation is quantified as higher IS and lower FID when", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 617, + 300, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 300, + 628 + ], + "score": 1.0, + "content": "evaluating samples from truncated distributions.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 135, + 645 + ], + "score": 1.0, + "content": "Figure", + "type": "text" + }, + { + "bbox": [ + 136, + 633, + 152, + 643 + ], + "score": 0.6, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "plots the truncation curves for the baseline BigGAN-deep model, LOGAN (GD) and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 354, + 657 + ], + "score": 1.0, + "content": "LOGAN (NGD), obtained by varying the truncation (value of", + "type": "text" + }, + { + "bbox": [ + 355, + 646, + 361, + 654 + ], + "score": 0.56, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 644, + 506, + 657 + ], + "score": 1.0, + "content": ") from 1.0 (no truncation, upper-left", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "ends of the curves) to 0.02 (extreme truncation, bottom-right ends). Each curve shows the trade-off", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "between FID and IS for an individual model; curves towards the upper-right corner indicate better", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "overall sample quality. The relative positions of curves in Figure 3 (b) shows LOGAN (NGD) has", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "the best sample quality. Interestingly, although LOGAN (GD) and the baseline model have similar", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "scores without truncation (upper-left ends of the curves, see also Table 1), LOGAN (GD) was better", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "behaved with increasing truncation, suggesting LOGAN (GD) still converged to a better equilibrium.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 477, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 477, + 733 + ], + "score": 1.0, + "content": "For further reference, we plot truncation curves from additional baseline models in Figure 8.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "300.0. All other hyper-parameters, including learning rates and a large batch size of 2048, remain", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "the same as in BigGAN-deep; we did not optimise these hyper-parameters. We call this model", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 177, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 177, + 117 + ], + "score": 1.0, + "content": "LOGAN (NGD).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 135, + 200, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 201, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 201, + 148 + ], + "score": 1.0, + "content": "5.2 BASIC RESULTS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 505, + 170 + ], + "score": 1.0, + "content": "Employing the same architecture and number of parameters as the BigGAN-deep baseline, LOGAN", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 167, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 182 + ], + "score": 1.0, + "content": "(NGD) achieved better FID and IS (Table 1). As observed by Brock et al. (2018), BigGAN training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 180, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 193 + ], + "score": 1.0, + "content": "always eventually collapsed. Training with LOGAN also collapsed, perhaps due to higher-order", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 190, + 504, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 482, + 204 + ], + "score": 1.0, + "content": "dynamics beyond the scope we have analysed, but took significantly longer (600k steps versus", + "type": "text" + }, + { + "bbox": [ + 482, + 191, + 504, + 201 + ], + "score": 0.33, + "content": "3 0 0 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 214, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 214, + 215 + ], + "score": 1.0, + "content": "steps with BigGAN-deep).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 158, + 505, + 215 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 218, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 231, + 232 + ], + "score": 1.0, + "content": "During training, LOGAN was", + "type": "text" + }, + { + "bbox": [ + 231, + 219, + 256, + 229 + ], + "score": 0.3, + "content": "2 - 3", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 218, + 506, + 232 + ], + "score": 1.0, + "content": "times slower per step compared with BigGAN-deep because", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 406, + 242 + ], + "score": 1.0, + "content": "of the additional forward and backward pass. We found that optimising", + "type": "text" + }, + { + "bbox": [ + 407, + 232, + 414, + 240 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "during evaluation did", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 241, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 403, + 253 + ], + "score": 1.0, + "content": "not improve sample scores (even up to 10 steps), so we do not optimise", + "type": "text" + }, + { + "bbox": [ + 403, + 243, + 410, + 250 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 241, + 505, + 253 + ], + "score": 1.0, + "content": "for evaluation. There-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "fore, LOGAN has the same evaluation cost as original BigGAN-deep. To help understand this", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 261, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 261, + 254, + 277 + ], + "score": 1.0, + "content": "behaviour, we plot the change from", + "type": "text" + }, + { + "bbox": [ + 254, + 263, + 269, + 273 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 261, + 506, + 277 + ], + "score": 1.0, + "content": "during training in Figure 5 a. Although the movement in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 174, + 286 + ], + "score": 1.0, + "content": "Euclidean space", + "type": "text" + }, + { + "bbox": [ + 174, + 273, + 198, + 285 + ], + "score": 0.9, + "content": "| | \\Delta z | |", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 272, + 390, + 286 + ], + "score": 1.0, + "content": "grew until training collapsed, the movement in", + "type": "text" + }, + { + "bbox": [ + 390, + 274, + 400, + 284 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "’s output space, measured", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 118, + 297 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 284, + 204, + 297 + ], + "score": 0.92, + "content": "\\| f ( z + \\Delta z ) - f ( z ) \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 284, + 353, + 297 + ], + "score": 1.0, + "content": ", remained unchanged (see Appendix", + "type": "text" + }, + { + "bbox": [ + 354, + 285, + 363, + 295 + ], + "score": 0.29, + "content": "\\mathrm { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 284, + 506, + 297 + ], + "score": 1.0, + "content": "for details). As shown in our anal-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 174, + 308 + ], + "score": 1.0, + "content": "ysis, optimising", + "type": "text" + }, + { + "bbox": [ + 174, + 298, + 181, + 305 + ], + "score": 0.7, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "improves the training dynamics, so LOGANs work well after training without", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 306, + 225, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 225, + 320 + ], + "score": 1.0, + "content": "requiring latent optimisation.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 218, + 506, + 320 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 336, + 216, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 218, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 218, + 350 + ], + "score": 1.0, + "content": "5.3 ABLATION STUDIES", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "We verify our theoretical analysis in section 3 by examining key components of Algorithm 1 via", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 405, + 384 + ], + "score": 1.0, + "content": "ablation studies. First, we experimented with using basic GD to optimising", + "type": "text" + }, + { + "bbox": [ + 406, + 373, + 412, + 381 + ], + "score": 0.64, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 370, + 505, + 384 + ], + "score": 1.0, + "content": ", as in Wu et al. (2019),", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 382, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 342, + 394 + ], + "score": 1.0, + "content": "and call this model LOGAN (GD). A smaller step size of", + "type": "text" + }, + { + "bbox": [ + 342, + 382, + 392, + 392 + ], + "score": 0.88, + "content": "\\alpha = 0 . 0 0 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 382, + 505, + 394 + ], + "score": 1.0, + "content": "was required; larger values", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "were unstable and led to premature collapse of training. As shown in Table 1, the scores from", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 404, + 440, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 440, + 416 + ], + "score": 1.0, + "content": "LOGAN (GD) were worse than LOGAN (NGD) and similar to the baseline model.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 360, + 505, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 378, + 447 + ], + "score": 1.0, + "content": "We then evaluate the effects of removing those terms depending on the ordinary gradient (eq. 3). Since these terms were computed", + "type": "text" + }, + { + "bbox": [ + 379, + 420, + 401, + 435 + ], + "score": 0.92, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 417, + 505, + 447 + ], + "score": 1.0, + "content": "in eq. 8, which are not inback-propagating through", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 456 + ], + "score": 1.0, + "content": "the latent optimisation procedure, we removed them by selectively blocking back-propagation", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 460, + 468 + ], + "score": 1.0, + "content": "with “stop gradient” operations (e.g., in TensorFlow Abadi et al. 2016). Figure", + "type": "text" + }, + { + "bbox": [ + 460, + 456, + 476, + 466 + ], + "score": 0.69, + "content": "{ \\bf 5 \\ B }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "shows", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 466, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 394, + 487 + ], + "score": 1.0, + "content": "the change of FIDs for the three models corresponding to removing", + "type": "text" + }, + { + "bbox": [ + 394, + 466, + 459, + 489 + ], + "score": 0.93, + "content": "\\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { G } } \\right) ^ { T } \\ \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 466, + 505, + 487 + ], + "score": 1.0, + "content": ", removing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 487, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 107, + 487, + 171, + 510 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 487, + 505, + 510 + ], + "score": 1.0, + "content": "and removing both terms. As predicted by our analysis (section 3), both terms help", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 361, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 361, + 520 + ], + "score": 1.0, + "content": "stabilise training; training diverged early for all three ablations.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 417, + 506, + 520 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 538, + 252, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 254, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 254, + 551 + ], + "score": 1.0, + "content": "5.4 TRUNCATION AND SAMPLES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "Truncation is a technique introduced by Brock et al. (2018) to illustrate the trade-off between the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 350, + 584 + ], + "score": 1.0, + "content": "FID and IS in a trained model. For a model trained with", + "type": "text" + }, + { + "bbox": [ + 351, + 572, + 393, + 583 + ], + "score": 0.91, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "from a source distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 355, + 596 + ], + "score": 1.0, + "content": "symmetric around 0, such as the standard normal distribution", + "type": "text" + }, + { + "bbox": [ + 355, + 583, + 388, + 595 + ], + "score": 0.9, + "content": "\\mathcal { N } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "and the uniform distribution", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 144, + 606 + ], + "score": 0.91, + "content": "\\mathcal { U } ( - 1 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 594, + 297, + 607 + ], + "score": 1.0, + "content": ", down-scaling (truncating) the source", + "type": "text" + }, + { + "bbox": [ + 297, + 595, + 334, + 604 + ], + "score": 0.9, + "content": "\\bar { z } = s \\cdot z", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 594, + 355, + 607 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 356, + 595, + 398, + 605 + ], + "score": 0.9, + "content": "0 \\leq s \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "gives samples with higher", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "visual quality but reduced diversity. This observation is quantified as higher IS and lower FID when", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 617, + 300, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 300, + 628 + ], + "score": 1.0, + "content": "evaluating samples from truncated distributions.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 561, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 135, + 645 + ], + "score": 1.0, + "content": "Figure", + "type": "text" + }, + { + "bbox": [ + 136, + 633, + 152, + 643 + ], + "score": 0.6, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "plots the truncation curves for the baseline BigGAN-deep model, LOGAN (GD) and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 354, + 657 + ], + "score": 1.0, + "content": "LOGAN (NGD), obtained by varying the truncation (value of", + "type": "text" + }, + { + "bbox": [ + 355, + 646, + 361, + 654 + ], + "score": 0.56, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 644, + 506, + 657 + ], + "score": 1.0, + "content": ") from 1.0 (no truncation, upper-left", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "ends of the curves) to 0.02 (extreme truncation, bottom-right ends). Each curve shows the trade-off", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "between FID and IS for an individual model; curves towards the upper-right corner indicate better", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "overall sample quality. The relative positions of curves in Figure 3 (b) shows LOGAN (NGD) has", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "the best sample quality. Interestingly, although LOGAN (GD) and the baseline model have similar", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "scores without truncation (upper-left ends of the curves, see also Table 1), LOGAN (GD) was better", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "behaved with increasing truncation, suggesting LOGAN (GD) still converged to a better equilibrium.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 477, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 477, + 733 + ], + "score": 1.0, + "content": "For further reference, we plot truncation curves from additional baseline models in Figure 8.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 633, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Figure 1 and Figure 2 show samples from chosen points on the truncation curves. In the high IS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "domain, C and D on the truncation curves both have similarly high IS of near 260. Samples from", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "batches with such high IS have almost photo-realistic image quality. Figure 1 show that while", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "the baseline model produced nearly uniform samples, LOGAN (NGD) could still generate highly", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 348, + 140 + ], + "score": 1.0, + "content": "diverse samples. On the other hand, A and B from Figure", + "type": "text" + }, + { + "bbox": [ + 348, + 127, + 364, + 137 + ], + "score": 0.62, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "have similarly low FID of near 5,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 313, + 150 + ], + "score": 1.0, + "content": "indicating high sample diversity. Samples in Figure", + "type": "text" + }, + { + "bbox": [ + 313, + 138, + 328, + 148 + ], + "score": 0.49, + "content": "^ { 2 \\mathbf { b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "show higher quality compared with those in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 466, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 466, + 161 + ], + "score": 1.0, + "content": "a (e.g., the interfaces between the elephants and ground, the contours around the pandas).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 175, + 195, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 198, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 198, + 191 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 200, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 214 + ], + "score": 1.0, + "content": "In this work we present the LOGAN model which significantly improves the state-of-the-art on large", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 211, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 211, + 424, + 225 + ], + "score": 1.0, + "content": "scale GAN training for image generation by online optimising the latent source", + "type": "text" + }, + { + "bbox": [ + 425, + 213, + 431, + 221 + ], + "score": 0.61, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 211, + 505, + 225 + ], + "score": 1.0, + "content": ". Our results illus-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 504, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 504, + 235 + ], + "score": 1.0, + "content": "trate improvements in quantitative evaluation and samples with higher quality and diversity. More-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "over, our analysis suggests that LOGAN fundamentally improves adversarial training dynamics. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "therefore expect our method to be useful in other tasks that involve adversarial training, including", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "representation learning and inference (Donahue et al., 2017; Dumoulin et al., 2017), text generation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "(Zhang et al., 2019), style learning (Zhu et al., 2017; Karras et al., 2019), audio generation (Donahue", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 278, + 411, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 411, + 290 + ], + "score": 1.0, + "content": "et al., 2018) and video generation (Vondrick et al., 2016; Clark et al., 2019).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 305, + 175, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 176, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 176, + 318 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 322, + 506, + 735 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 334, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 334, + 504, + 348 + ], + "score": 1.0, + "content": "Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for large-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 115, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "scale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and Imple-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 356, + 295, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 160, + 370 + ], + "score": 1.0, + "content": "mentation", + "type": "text" + }, + { + "bbox": [ + 161, + 356, + 211, + 368 + ], + "score": 0.33, + "content": "\\left( \\left\\{ O S D I \\right\\} \\ I \\bar { \\ 6 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 356, + 295, + 370 + ], + "score": 1.0, + "content": ", pp. 265–283, 2016.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 374, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 504, + 388 + ], + "score": 1.0, + "content": "Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251–", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 386, + 161, + 398 + ], + "spans": [ + { + "bbox": [ + 116, + 386, + 161, + 398 + ], + "score": 1.0, + "content": "276, 1998.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Martin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein GAN. ´ arXiv preprint", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 416, + 219, + 427 + ], + "spans": [ + { + "bbox": [ + 115, + 416, + 219, + 427 + ], + "score": 1.0, + "content": "arXiv:1701.07875, 2017.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "Sanjeev Arora, Rong Ge, Yingyu Liang, Tengyu Ma, and Yi Zhang. Generalization and equilibrium", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "in generative adversarial nets. In Proceedings of the 34th International Conference on Machine", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 455, + 331, + 470 + ], + "spans": [ + { + "bbox": [ + 114, + 455, + 331, + 470 + ], + "score": 1.0, + "content": "Learning-Volume 70, pp. 224–232. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 475, + 504, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 504, + 486 + ], + "score": 1.0, + "content": "David Balduzzi, Sebastien Racaniere, James Martens, Jakob Foerster, Karl Tuyls, and Thore Grae-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 485, + 493, + 498 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 493, + 498 + ], + "score": 1.0, + "content": "pel. The mechanics of n-player differentiable games. arXiv preprint arXiv:1802.05642, 2018.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 503, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 517 + ], + "score": 1.0, + "content": "Vivek S Borkar. Stochastic approximation with two time scales. Systems & Control Letters, 29(5):", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 515, + 182, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 515, + 182, + 527 + ], + "score": 1.0, + "content": "291–294, 1997.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 504, + 546 + ], + "score": 1.0, + "content": "Andrew Brock, Jeff Donahue, and Karen Simonyan. Large scale GAN training for high fidelity", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 545, + 378, + 556 + ], + "spans": [ + { + "bbox": [ + 116, + 545, + 378, + 556 + ], + "score": 1.0, + "content": "natural image synthesis. arXiv preprint arXiv:1809.11096, 2018.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "Emmanuel J Candes, Justin K Romberg, and Terence Tao. Stable signal recovery from incomplete", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 116, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "and inaccurate measurements. Communications on Pure and Applied Mathematics: A Journal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 584, + 447, + 597 + ], + "spans": [ + { + "bbox": [ + 116, + 584, + 447, + 597 + ], + "score": 1.0, + "content": "Issued by the Courant Institute of Mathematical Sciences, 59(8):1207–1223, 2006.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "score": 1.0, + "content": "Aidan Clark, Jeff Donahue, and Karen Simonyan. Efficient video generation on complex datasets.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 614, + 278, + 626 + ], + "spans": [ + { + "bbox": [ + 116, + 614, + 278, + 626 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1907.06571, 2019.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 644, + 262, + 655 + ], + "spans": [ + { + "bbox": [ + 115, + 644, + 262, + 655 + ], + "score": 1.0, + "content": "Image Database. In CVPR09, 2009.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 660, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 676 + ], + "score": 1.0, + "content": "Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. arXiv preprint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 673, + 219, + 684 + ], + "spans": [ + { + "bbox": [ + 115, + 673, + 219, + 684 + ], + "score": 1.0, + "content": "arXiv:1802.04208, 2018.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. In ¨ ICLR, 2017.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "David L Donoho. Compressed sensing. IEEE Transactions on information theory, 52(4):1289–", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 117, + 722, + 166, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 722, + 166, + 732 + ], + "score": 1.0, + "content": "1306, 2006.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 31 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 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": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Figure 1 and Figure 2 show samples from chosen points on the truncation curves. In the high IS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "domain, C and D on the truncation curves both have similarly high IS of near 260. Samples from", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "batches with such high IS have almost photo-realistic image quality. Figure 1 show that while", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "the baseline model produced nearly uniform samples, LOGAN (NGD) could still generate highly", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 348, + 140 + ], + "score": 1.0, + "content": "diverse samples. On the other hand, A and B from Figure", + "type": "text" + }, + { + "bbox": [ + 348, + 127, + 364, + 137 + ], + "score": 0.62, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "have similarly low FID of near 5,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 313, + 150 + ], + "score": 1.0, + "content": "indicating high sample diversity. Samples in Figure", + "type": "text" + }, + { + "bbox": [ + 313, + 138, + 328, + 148 + ], + "score": 0.49, + "content": "^ { 2 \\mathbf { b } }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "show higher quality compared with those in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 466, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 466, + 161 + ], + "score": 1.0, + "content": "a (e.g., the interfaces between the elephants and ground, the contours around the pandas).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 83, + 506, + 161 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 175, + 195, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 198, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 198, + 191 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 200, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 214 + ], + "score": 1.0, + "content": "In this work we present the LOGAN model which significantly improves the state-of-the-art on large", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 211, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 104, + 211, + 424, + 225 + ], + "score": 1.0, + "content": "scale GAN training for image generation by online optimising the latent source", + "type": "text" + }, + { + "bbox": [ + 425, + 213, + 431, + 221 + ], + "score": 0.61, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 211, + 505, + 225 + ], + "score": 1.0, + "content": ". Our results illus-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 504, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 504, + 235 + ], + "score": 1.0, + "content": "trate improvements in quantitative evaluation and samples with higher quality and diversity. More-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "over, our analysis suggests that LOGAN fundamentally improves adversarial training dynamics. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "therefore expect our method to be useful in other tasks that involve adversarial training, including", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "representation learning and inference (Donahue et al., 2017; Dumoulin et al., 2017), text generation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "(Zhang et al., 2019), style learning (Zhu et al., 2017; Karras et al., 2019), audio generation (Donahue", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 278, + 411, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 411, + 290 + ], + "score": 1.0, + "content": "et al., 2018) and video generation (Vondrick et al., 2016; Clark et al., 2019).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 199, + 505, + 290 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 305, + 175, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 176, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 176, + 318 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "list", + "bbox": [ + 105, + 322, + 506, + 735 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 334, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 334, + 504, + 348 + ], + "score": 1.0, + "content": "Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for large-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 115, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "scale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and Imple-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 356, + 295, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 160, + 370 + ], + "score": 1.0, + "content": "mentation", + "type": "text" + }, + { + "bbox": [ + 161, + 356, + 211, + 368 + ], + "score": 0.33, + "content": "\\left( \\left\\{ O S D I \\right\\} \\ I \\bar { \\ 6 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 356, + 295, + 370 + ], + "score": 1.0, + "content": ", pp. 265–283, 2016.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 374, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 504, + 388 + ], + "score": 1.0, + "content": "Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251–", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 386, + 161, + 398 + ], + "spans": [ + { + "bbox": [ + 116, + 386, + 161, + 398 + ], + "score": 1.0, + "content": "276, 1998.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Martin Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein GAN. ´ arXiv preprint", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 416, + 219, + 427 + ], + "spans": [ + { + "bbox": [ + 115, + 416, + 219, + 427 + ], + "score": 1.0, + "content": "arXiv:1701.07875, 2017.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "Sanjeev Arora, Rong Ge, Yingyu Liang, Tengyu Ma, and Yi Zhang. Generalization and equilibrium", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "in generative adversarial nets. In Proceedings of the 34th International Conference on Machine", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 455, + 331, + 470 + ], + "spans": [ + { + "bbox": [ + 114, + 455, + 331, + 470 + ], + "score": 1.0, + "content": "Learning-Volume 70, pp. 224–232. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 475, + 504, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 504, + 486 + ], + "score": 1.0, + "content": "David Balduzzi, Sebastien Racaniere, James Martens, Jakob Foerster, Karl Tuyls, and Thore Grae-", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 485, + 493, + 498 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 493, + 498 + ], + "score": 1.0, + "content": "pel. The mechanics of n-player differentiable games. arXiv preprint arXiv:1802.05642, 2018.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 503, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 517 + ], + "score": 1.0, + "content": "Vivek S Borkar. Stochastic approximation with two time scales. Systems & Control Letters, 29(5):", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 515, + 182, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 515, + 182, + 527 + ], + "score": 1.0, + "content": "291–294, 1997.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 533, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 504, + 546 + ], + "score": 1.0, + "content": "Andrew Brock, Jeff Donahue, and Karen Simonyan. Large scale GAN training for high fidelity", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 545, + 378, + 556 + ], + "spans": [ + { + "bbox": [ + 116, + 545, + 378, + 556 + ], + "score": 1.0, + "content": "natural image synthesis. arXiv preprint arXiv:1809.11096, 2018.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 577 + ], + "score": 1.0, + "content": "Emmanuel J Candes, Justin K Romberg, and Terence Tao. Stable signal recovery from incomplete", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 116, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "and inaccurate measurements. Communications on Pure and Applied Mathematics: A Journal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 584, + 447, + 597 + ], + "spans": [ + { + "bbox": [ + 116, + 584, + 447, + 597 + ], + "score": 1.0, + "content": "Issued by the Courant Institute of Mathematical Sciences, 59(8):1207–1223, 2006.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "score": 1.0, + "content": "Aidan Clark, Jeff Donahue, and Karen Simonyan. Efficient video generation on complex datasets.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 614, + 278, + 626 + ], + "spans": [ + { + "bbox": [ + 116, + 614, + 278, + 626 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1907.06571, 2019.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 644, + 262, + 655 + ], + "spans": [ + { + "bbox": [ + 115, + 644, + 262, + 655 + ], + "score": 1.0, + "content": "Image Database. In CVPR09, 2009.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 660, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 676 + ], + "score": 1.0, + "content": "Chris Donahue, Julian McAuley, and Miller Puckette. Adversarial audio synthesis. arXiv preprint", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 673, + 219, + 684 + ], + "spans": [ + { + "bbox": [ + 115, + 673, + 219, + 684 + ], + "score": 1.0, + "content": "arXiv:1802.04208, 2018.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. In ¨ ICLR, 2017.", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "David L Donoho. Compressed sensing. IEEE Transactions on information theory, 52(4):1289–", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 117, + 722, + 166, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 722, + 166, + 732 + ], + "score": 1.0, + "content": "1306, 2006.", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + } + ], + "index": 31, + "bbox_fs": [ + 105, + 323, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Olivier Mastropietro, Alex Lamb, Martin Ar-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 426, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 426, + 106 + ], + "score": 1.0, + "content": "jovsky, and Aaron Courville. Advesarially learned inference. In ICLR, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Ian Gemp and Sridhar Mahadevan. Global Convergence to the Equilibrium of GANs using Varia-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 307, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 307, + 136 + ], + "score": 1.0, + "content": "tional Inequalities. In Arxiv:1808.01531, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 503, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 317, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 317, + 177 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 183, + 504, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 199 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 505, + 209 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 181, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 181, + 218 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "Gans trained by a two time-scale update rule converge to a local nash equilibrium. In Advances", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 247, + 380, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 247, + 380, + 259 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, pp. 6626–6637, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "score": 1.0, + "content": "Morris W Hirsch. Convergent activation dynamics in continuous time networks. Neural networks,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 276, + 201, + 289 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 201, + 289 + ], + "score": 1.0, + "content": "2(5):331–349, 1989.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 506, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Tero Karras, Samuli Laine, and Timo Aila. A style-based generator architecture for generative", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "adversarial networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 318, + 259, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 318, + 259, + 330 + ], + "score": 1.0, + "content": "Recognition, pp. 4401–4410, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 503, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "Vijaymohan R Konda and Vivek S Borkar. Actor-critic–type learning algorithms for markov deci-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 348, + 441, + 361 + ], + "spans": [ + { + "bbox": [ + 115, + 348, + 441, + 361 + ], + "score": 1.0, + "content": "sion processes. SIAM Journal on control and Optimization, 38(1):94–123, 1999.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 503, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 381 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 378, + 248, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 378, + 248, + 390 + ], + "score": 1.0, + "content": "Technical report, Citeseer, 2009.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "Alistair Letcher, David Balduzzi, Sebastien Racani ´ ere, James Martens, Jakob N Foerster, Karl Tuyls, `", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "and Thore Graepel. Differentiable game mechanics. Journal of Machine Learning Research, 20", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 419, + 186, + 431 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 186, + 431 + ], + "score": 1.0, + "content": "(84):1–40, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 102, + 437, + 476, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 477, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 477, + 451 + ], + "score": 1.0, + "content": "Jae Hyun Lim and Jong Chul Ye. Geometric GAN. arXiv preprint arXiv:1705.02894, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 105, + 457, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "James Martens. New insights and perspectives on the natural gradient method. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 468, + 215, + 481 + ], + "spans": [ + { + "bbox": [ + 115, + 468, + 215, + 481 + ], + "score": 1.0, + "content": "arXiv:1412.1193, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 104, + 487, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Luke Metz, Ben Poole, David Pfau, and Jascha Sohl-Dickstein. Unrolled generative adversarial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 498, + 495, + 511 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 495, + 511 + ], + "score": 1.0, + "content": "networks. CoRR, abs/1611.02163, 2016. URL http://arxiv.org/abs/1611.02163.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 517, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 532 + ], + "score": 1.0, + "content": "Takeru Miyato and Masanori Koyama. cGANs with projection discriminator. arXiv preprint", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 529, + 219, + 540 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 219, + 540 + ], + "score": 1.0, + "content": "arXiv:1802.05637, 2018.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 105, + 547, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 559, + 425, + 571 + ], + "spans": [ + { + "bbox": [ + 115, + 559, + 425, + 571 + ], + "score": 1.0, + "content": "for generative adversarial networks. arXiv preprint arXiv:1802.05957, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 338, + 591 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka.", + "type": "text" + }, + { + "bbox": [ + 338, + 579, + 345, + 590 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 577, + 504, + 591 + ], + "score": 1.0, + "content": "-GAN: Training generative neural sam-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 588, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 588, + 505, + 603 + ], + "score": 1.0, + "content": "plers using variational divergence minimization. In Advances in neural information processing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 600, + 232, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 232, + 612 + ], + "score": 1.0, + "content": "systems, pp. 271–279, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 619, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "score": 1.0, + "content": "Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 630, + 214, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 214, + 641 + ], + "score": 1.0, + "content": "arXiv:1301.3584, 2013.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 649, + 504, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "Barak A Pearlmutter. Fast exact multiplication by the hessian. Neural computation, 6(1):147–160,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 659, + 143, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 143, + 673 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 691, + 468, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 468, + 703 + ], + "score": 1.0, + "content": "convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Nicolas L Roux, Pierre-Antoine Manzagol, and Yoshua Bengio. Topmoumoute online natural gra-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 483, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 483, + 732 + ], + "score": 1.0, + "content": "dient algorithm. In Advances in neural information processing systems, pp. 849–856, 2008.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Olivier Mastropietro, Alex Lamb, Martin Ar-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 426, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 426, + 106 + ], + "score": 1.0, + "content": "jovsky, and Aaron Courville. Advesarially learned inference. In ICLR, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Ian Gemp and Sridhar Mahadevan. Global Convergence to the Equilibrium of GANs using Varia-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 307, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 307, + 136 + ], + "score": 1.0, + "content": "tional Inequalities. In Arxiv:1808.01531, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 503, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 317, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 317, + 177 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 141, + 505, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 183, + 504, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 199 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 505, + 209 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 181, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 181, + 218 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 182, + 505, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 506, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "Gans trained by a two time-scale update rule converge to a local nash equilibrium. In Advances", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 247, + 380, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 247, + 380, + 259 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, pp. 6626–6637, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 224, + 506, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 505, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "score": 1.0, + "content": "Morris W Hirsch. Convergent activation dynamics in continuous time networks. Neural networks,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 276, + 201, + 289 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 201, + 289 + ], + "score": 1.0, + "content": "2(5):331–349, 1989.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 264, + 505, + 289 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 506, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Tero Karras, Samuli Laine, and Timo Aila. A style-based generator architecture for generative", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "adversarial networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 318, + 259, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 318, + 259, + 330 + ], + "score": 1.0, + "content": "Recognition, pp. 4401–4410, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 295, + 505, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 503, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "Vijaymohan R Konda and Vivek S Borkar. Actor-critic–type learning algorithms for markov deci-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 348, + 441, + 361 + ], + "spans": [ + { + "bbox": [ + 115, + 348, + 441, + 361 + ], + "score": 1.0, + "content": "sion processes. SIAM Journal on control and Optimization, 38(1):94–123, 1999.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 337, + 505, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 503, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 381 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 378, + 248, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 378, + 248, + 390 + ], + "score": 1.0, + "content": "Technical report, Citeseer, 2009.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 365, + 505, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "Alistair Letcher, David Balduzzi, Sebastien Racani ´ ere, James Martens, Jakob N Foerster, Karl Tuyls, `", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "and Thore Graepel. Differentiable game mechanics. Journal of Machine Learning Research, 20", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 419, + 186, + 431 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 186, + 431 + ], + "score": 1.0, + "content": "(84):1–40, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 396, + 505, + 431 + ] + }, + { + "type": "text", + "bbox": [ + 102, + 437, + 476, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 477, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 477, + 451 + ], + "score": 1.0, + "content": "Jae Hyun Lim and Jong Chul Ye. Geometric GAN. arXiv preprint arXiv:1705.02894, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 437, + 477, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 457, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "James Martens. New insights and perspectives on the natural gradient method. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 468, + 215, + 481 + ], + "spans": [ + { + "bbox": [ + 115, + 468, + 215, + 481 + ], + "score": 1.0, + "content": "arXiv:1412.1193, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 456, + 506, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 487, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Luke Metz, Ben Poole, David Pfau, and Jascha Sohl-Dickstein. Unrolled generative adversarial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 498, + 495, + 511 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 495, + 511 + ], + "score": 1.0, + "content": "networks. CoRR, abs/1611.02163, 2016. URL http://arxiv.org/abs/1611.02163.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 487, + 505, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 517, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 532 + ], + "score": 1.0, + "content": "Takeru Miyato and Masanori Koyama. cGANs with projection discriminator. arXiv preprint", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 529, + 219, + 540 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 219, + 540 + ], + "score": 1.0, + "content": "arXiv:1802.05637, 2018.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 516, + 505, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 547, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 559, + 425, + 571 + ], + "spans": [ + { + "bbox": [ + 115, + 559, + 425, + 571 + ], + "score": 1.0, + "content": "for generative adversarial networks. arXiv preprint arXiv:1802.05957, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 547, + 505, + 571 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 338, + 591 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka.", + "type": "text" + }, + { + "bbox": [ + 338, + 579, + 345, + 590 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 577, + 504, + 591 + ], + "score": 1.0, + "content": "-GAN: Training generative neural sam-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 588, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 588, + 505, + 603 + ], + "score": 1.0, + "content": "plers using variational divergence minimization. In Advances in neural information processing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 600, + 232, + 612 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 232, + 612 + ], + "score": 1.0, + "content": "systems, pp. 271–279, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 577, + 505, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 619, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 632 + ], + "score": 1.0, + "content": "Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 630, + 214, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 214, + 641 + ], + "score": 1.0, + "content": "arXiv:1301.3584, 2013.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 617, + 505, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 649, + 504, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "Barak A Pearlmutter. Fast exact multiplication by the hessian. Neural computation, 6(1):147–160,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 659, + 143, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 143, + 673 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 648, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 691, + 468, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 468, + 703 + ], + "score": 1.0, + "content": "convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 678, + 505, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Nicolas L Roux, Pierre-Antoine Manzagol, and Yoshua Bengio. Topmoumoute online natural gra-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 483, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 483, + 732 + ], + "score": 1.0, + "content": "dient algorithm. In Advances in neural information processing systems, pp. 849–856, 2008.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 709, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "Improved techniques for training gans. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 206, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 206, + 117 + ], + "score": 1.0, + "content": "pp. 2234–2242, 2016.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynam-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 354, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 354, + 145 + ], + "score": 1.0, + "content": "ics of learning in deep linear neural networks. ICLR, 2014.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "Dustin Tran, Rajesh Ranganath, and David Blei. Hierarchical implicit models and likelihood-free", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 116, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "variational inference. In Advances in Neural Information Processing Systems, pp. 5523–5533,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 173, + 142, + 184 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 142, + 184 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 190, + 504, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 504, + 202 + ], + "score": 1.0, + "content": "Carl Vondrick, Hamed Pirsiavash, and Antonio Torralba. Generating videos with scene dynamics.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 201, + 422, + 214 + ], + "spans": [ + { + "bbox": [ + 116, + 201, + 422, + 214 + ], + "score": 1.0, + "content": "In Advances In Neural Information Processing Systems, pp. 613–621, 2016.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 233 + ], + "score": 1.0, + "content": "Yan Wu, Mihaela Rosca, and Timothy Lillicrap. Deep compressed sensing. In International Con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 230, + 329, + 242 + ], + "spans": [ + { + "bbox": [ + 114, + 230, + 329, + 242 + ], + "score": 1.0, + "content": "ference on Machine Learning, pp. 6850–6860, 2019.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 259, + 500, + 272 + ], + "spans": [ + { + "bbox": [ + 116, + 259, + 500, + 272 + ], + "score": 1.0, + "content": "adversarial networks. In International Conference on Machine Learning, pp. 7354–7363, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 276, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 504, + 289 + ], + "score": 1.0, + "content": "Jun-Yan Zhu, Taesung Park, Phillip Isola, and Alexei A Efros. Unpaired image-to-image translation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 116, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "using cycle-consistent adversarial networks. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 298, + 288, + 310 + ], + "spans": [ + { + "bbox": [ + 116, + 298, + 288, + 310 + ], + "score": 1.0, + "content": "on computer vision, pp. 2223–2232, 2017.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 322, + 341 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 323, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 323, + 343 + ], + "score": 1.0, + "content": "A ADDITIONAL SAMPLES AND RESULTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 504, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "score": 1.0, + "content": "Figure 6 and 7 provide additional samples, organised similarly as in Figure 1 and 2. Figure 8 shows", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 363, + 223, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 223, + 376 + ], + "score": 1.0, + "content": "additional truncation curves.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 390, + 376, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 377, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 377, + 406 + ], + "score": 1.0, + "content": "B DETAILED ANALYSIS OF LATENT OPTIMISATION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 415, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "In this section we present three complementary analyses of LOGAN. In particular, we show how the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "algorithm brings together ideas from symplectic gradient adjustment, unrolled GANs and stochastic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 438, + 253, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 253, + 449 + ], + "score": 1.0, + "content": "approximation with two time scales.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 461, + 363, + 473 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 365, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 365, + 473 + ], + "score": 1.0, + "content": "B.1 APPROXIMATE SYMPLECTIC GRADIENT ADJUSTMENT", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 388, + 495 + ], + "score": 1.0, + "content": "To analyse LOGAN as a differentiable game we treat the latent step", + "type": "text" + }, + { + "bbox": [ + 389, + 482, + 403, + 492 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "as adding a third player", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 487, + 505 + ], + "score": 1.0, + "content": "to the original game played by the discriminator and generator. The third player’s parameter,", + "type": "text" + }, + { + "bbox": [ + 487, + 493, + 501, + 503 + ], + "score": 0.83, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 493, + 505, + 505 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 221, + 516 + ], + "score": 1.0, + "content": "is optimised online for each", + "type": "text" + }, + { + "bbox": [ + 221, + 504, + 259, + 516 + ], + "score": 0.92, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 504, + 506, + 516 + ], + "score": 1.0, + "content": ". Together the three players (latent player, discriminator, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 515, + 336, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 336, + 527 + ], + "score": 1.0, + "content": "generator) have losses averaged over a batch of samples:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 528, + 351, + 543 + ], + "lines": [ + { + "bbox": [ + 260, + 528, + 351, + 543 + ], + "spans": [ + { + "bbox": [ + 260, + 528, + 351, + 543 + ], + "score": 0.93, + "content": "L = [ \\eta L _ { G } , L _ { D } , L _ { G } ] ^ { T }", + "type": "interline_equation", + "image_path": "3f634eef99021f2ea1d703ef6a70a926be391935e383b212b017baee8ba7da96.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 260, + 528, + 351, + 543 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 134, + 560 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 545, + 167, + 558 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\eta \\ : = \\ : \\frac { 1 } { N } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 543, + 173, + 560 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 173, + 545, + 183, + 555 + ], + "score": 0.73, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 543, + 365, + 560 + ], + "score": 1.0, + "content": "is the batch size) reflects the fact that each", + "type": "text" + }, + { + "bbox": [ + 365, + 546, + 380, + 555 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 543, + 506, + 560 + ], + "score": 1.0, + "content": "is only optimised for a single", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 137, + 569 + ], + "score": 1.0, + "content": "sample", + "type": "text" + }, + { + "bbox": [ + 137, + 559, + 143, + 566 + ], + "score": 0.71, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 556, + 434, + 569 + ], + "score": 1.0, + "content": ", so its contribution to the total loss across a batch is small compared with", + "type": "text" + }, + { + "bbox": [ + 434, + 556, + 447, + 567 + ], + "score": 0.88, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 556, + 464, + 569 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 556, + 477, + 567 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 321, + 580 + ], + "score": 1.0, + "content": "are directly optimised for batch losses. This choice of", + "type": "text" + }, + { + "bbox": [ + 321, + 569, + 328, + 578 + ], + "score": 0.82, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "is essential for the following derivation, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 393, + 591 + ], + "score": 1.0, + "content": "has important practical implication. It means that the per-sample loss", + "type": "text" + }, + { + "bbox": [ + 394, + 578, + 424, + 591 + ], + "score": 0.93, + "content": "L _ { G } ( z ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 578, + 505, + 591 + ], + "score": 1.0, + "content": ", instead of the loss", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 584, + 509, + 615 + ], + "spans": [ + { + "bbox": [ + 101, + 584, + 195, + 615 + ], + "score": 1.0, + "content": "summed over a batch Therefore, when usin", + "type": "text" + }, + { + "bbox": [ + 196, + 590, + 255, + 604 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { n = 1 } ^ { N } L _ { G } ( z _ { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 584, + 509, + 615 + ], + "score": 1.0, + "content": ", should be the only loss function guiding latent optimisation.ent descent (Section 4), the Fisher information matrix should", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 613, + 291, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 280, + 626 + ], + "score": 1.0, + "content": "only be computed using the current sample", + "type": "text" + }, + { + "bbox": [ + 281, + 615, + 287, + 623 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 613, + 291, + 626 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 108, + 630, + 261, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 629, + 262, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 262, + 644 + ], + "score": 1.0, + "content": "The resulting simultaneous gradient is", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 644, + 445, + 667 + ], + "lines": [ + { + "bbox": [ + 164, + 644, + 445, + 667 + ], + "spans": [ + { + "bbox": [ + 164, + 644, + 445, + 667 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g = \\left[ \\eta \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial L _ { D } ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ - \\eta \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } } \\end{array}", + "type": "interline_equation", + "image_path": "70e7fe009e5b1609bb818fa3772fc182835a16495fe562233928ba82814530ea.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 164, + 644, + 445, + 667 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 406, + 680 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 406, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 406, + 682 + ], + "score": 1.0, + "content": "Following Balduzzi et al. (2018), we can write the Hessian of the game as:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 682, + 402, + 736 + ], + "lines": [ + { + "bbox": [ + 207, + 682, + 402, + 736 + ], + "spans": [ + { + "bbox": [ + 207, + 682, + 402, + 736 + ], + "score": 0.94, + "content": "H = \\left[ \\begin{array} { c c c } { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z ^ { 2 } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } ^ { 2 } } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } ^ { 2 } } } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "c1405e82f56815cd622ed4e0f107f458103a4d376f606efc461889292e473a2f.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 682, + 402, + 695.5 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 207, + 695.5, + 402, + 709.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 207, + 709.0, + 402, + 722.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 207, + 722.5, + 402, + 736.0 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 81, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "Improved techniques for training gans. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 206, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 206, + 117 + ], + "score": 1.0, + "content": "pp. 2234–2242, 2016.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynam-", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 133, + 354, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 354, + 145 + ], + "score": 1.0, + "content": "ics of learning in deep linear neural networks. ICLR, 2014.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "Dustin Tran, Rajesh Ranganath, and David Blei. Hierarchical implicit models and likelihood-free", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 116, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "variational inference. In Advances in Neural Information Processing Systems, pp. 5523–5533,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 173, + 142, + 184 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 142, + 184 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 190, + 504, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 504, + 202 + ], + "score": 1.0, + "content": "Carl Vondrick, Hamed Pirsiavash, and Antonio Torralba. Generating videos with scene dynamics.", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 201, + 422, + 214 + ], + "spans": [ + { + "bbox": [ + 116, + 201, + 422, + 214 + ], + "score": 1.0, + "content": "In Advances In Neural Information Processing Systems, pp. 613–621, 2016.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 217, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 233 + ], + "score": 1.0, + "content": "Yan Wu, Mihaela Rosca, and Timothy Lillicrap. Deep compressed sensing. In International Con-", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 230, + 329, + 242 + ], + "spans": [ + { + "bbox": [ + 114, + 230, + 329, + 242 + ], + "score": 1.0, + "content": "ference on Machine Learning, pp. 6850–6860, 2019.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 259, + 500, + 272 + ], + "spans": [ + { + "bbox": [ + 116, + 259, + 500, + 272 + ], + "score": 1.0, + "content": "adversarial networks. In International Conference on Machine Learning, pp. 7354–7363, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 276, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 504, + 289 + ], + "score": 1.0, + "content": "Jun-Yan Zhu, Taesung Park, Phillip Isola, and Alexei A Efros. Unpaired image-to-image translation", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 116, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "using cycle-consistent adversarial networks. In Proceedings of the IEEE international conference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 298, + 288, + 310 + ], + "spans": [ + { + "bbox": [ + 116, + 298, + 288, + 310 + ], + "score": 1.0, + "content": "on computer vision, pp. 2223–2232, 2017.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + } + ], + "index": 8, + "bbox_fs": [ + 105, + 82, + 505, + 310 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 322, + 341 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 323, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 323, + 343 + ], + "score": 1.0, + "content": "A ADDITIONAL SAMPLES AND RESULTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 504, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "score": 1.0, + "content": "Figure 6 and 7 provide additional samples, organised similarly as in Figure 1 and 2. Figure 8 shows", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 363, + 223, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 223, + 376 + ], + "score": 1.0, + "content": "additional truncation curves.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 352, + 505, + 376 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 390, + 376, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 377, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 377, + 406 + ], + "score": 1.0, + "content": "B DETAILED ANALYSIS OF LATENT OPTIMISATION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 415, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "In this section we present three complementary analyses of LOGAN. In particular, we show how the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "algorithm brings together ideas from symplectic gradient adjustment, unrolled GANs and stochastic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 438, + 253, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 253, + 449 + ], + "score": 1.0, + "content": "approximation with two time scales.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 415, + 505, + 449 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 461, + 363, + 473 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 365, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 365, + 473 + ], + "score": 1.0, + "content": "B.1 APPROXIMATE SYMPLECTIC GRADIENT ADJUSTMENT", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 388, + 495 + ], + "score": 1.0, + "content": "To analyse LOGAN as a differentiable game we treat the latent step", + "type": "text" + }, + { + "bbox": [ + 389, + 482, + 403, + 492 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "as adding a third player", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 493, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 487, + 505 + ], + "score": 1.0, + "content": "to the original game played by the discriminator and generator. The third player’s parameter,", + "type": "text" + }, + { + "bbox": [ + 487, + 493, + 501, + 503 + ], + "score": 0.83, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 493, + 505, + 505 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 221, + 516 + ], + "score": 1.0, + "content": "is optimised online for each", + "type": "text" + }, + { + "bbox": [ + 221, + 504, + 259, + 516 + ], + "score": 0.92, + "content": "z \\sim p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 504, + 506, + 516 + ], + "score": 1.0, + "content": ". Together the three players (latent player, discriminator, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 515, + 336, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 336, + 527 + ], + "score": 1.0, + "content": "generator) have losses averaged over a batch of samples:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 480, + 506, + 527 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 528, + 351, + 543 + ], + "lines": [ + { + "bbox": [ + 260, + 528, + 351, + 543 + ], + "spans": [ + { + "bbox": [ + 260, + 528, + 351, + 543 + ], + "score": 0.93, + "content": "L = [ \\eta L _ { G } , L _ { D } , L _ { G } ] ^ { T }", + "type": "interline_equation", + "image_path": "3f634eef99021f2ea1d703ef6a70a926be391935e383b212b017baee8ba7da96.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 260, + 528, + 351, + 543 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 134, + 560 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 545, + 167, + 558 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\eta \\ : = \\ : \\frac { 1 } { N } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 543, + 173, + 560 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 173, + 545, + 183, + 555 + ], + "score": 0.73, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 543, + 365, + 560 + ], + "score": 1.0, + "content": "is the batch size) reflects the fact that each", + "type": "text" + }, + { + "bbox": [ + 365, + 546, + 380, + 555 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 543, + 506, + 560 + ], + "score": 1.0, + "content": "is only optimised for a single", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 137, + 569 + ], + "score": 1.0, + "content": "sample", + "type": "text" + }, + { + "bbox": [ + 137, + 559, + 143, + 566 + ], + "score": 0.71, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 556, + 434, + 569 + ], + "score": 1.0, + "content": ", so its contribution to the total loss across a batch is small compared with", + "type": "text" + }, + { + "bbox": [ + 434, + 556, + 447, + 567 + ], + "score": 0.88, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 556, + 464, + 569 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 556, + 477, + 567 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 321, + 580 + ], + "score": 1.0, + "content": "are directly optimised for batch losses. This choice of", + "type": "text" + }, + { + "bbox": [ + 321, + 569, + 328, + 578 + ], + "score": 0.82, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "is essential for the following derivation, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 393, + 591 + ], + "score": 1.0, + "content": "has important practical implication. It means that the per-sample loss", + "type": "text" + }, + { + "bbox": [ + 394, + 578, + 424, + 591 + ], + "score": 0.93, + "content": "L _ { G } ( z ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 578, + 505, + 591 + ], + "score": 1.0, + "content": ", instead of the loss", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 101, + 584, + 509, + 615 + ], + "spans": [ + { + "bbox": [ + 101, + 584, + 195, + 615 + ], + "score": 1.0, + "content": "summed over a batch Therefore, when usin", + "type": "text" + }, + { + "bbox": [ + 196, + 590, + 255, + 604 + ], + "score": 0.93, + "content": "\\textstyle \\sum _ { n = 1 } ^ { N } L _ { G } ( z _ { n } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 584, + 509, + 615 + ], + "score": 1.0, + "content": ", should be the only loss function guiding latent optimisation.ent descent (Section 4), the Fisher information matrix should", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 613, + 291, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 280, + 626 + ], + "score": 1.0, + "content": "only be computed using the current sample", + "type": "text" + }, + { + "bbox": [ + 281, + 615, + 287, + 623 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 613, + 291, + 626 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 101, + 543, + 509, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 630, + 261, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 629, + 262, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 262, + 644 + ], + "score": 1.0, + "content": "The resulting simultaneous gradient is", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 629, + 262, + 644 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 644, + 445, + 667 + ], + "lines": [ + { + "bbox": [ + 164, + 644, + 445, + 667 + ], + "spans": [ + { + "bbox": [ + 164, + 644, + 445, + 667 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g = \\left[ \\eta \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial L _ { D } ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ - \\eta \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } } \\end{array}", + "type": "interline_equation", + "image_path": "70e7fe009e5b1609bb818fa3772fc182835a16495fe562233928ba82814530ea.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 164, + 644, + 445, + 667 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 406, + 680 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 406, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 406, + 682 + ], + "score": 1.0, + "content": "Following Balduzzi et al. (2018), we can write the Hessian of the game as:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 668, + 406, + 682 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 682, + 402, + 736 + ], + "lines": [ + { + "bbox": [ + 207, + 682, + 402, + 736 + ], + "spans": [ + { + "bbox": [ + 207, + 682, + 402, + 736 + ], + "score": 0.94, + "content": "H = \\left[ \\begin{array} { c c c } { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z ^ { 2 } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } ^ { 2 } } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } ^ { 2 } } } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "c1405e82f56815cd622ed4e0f107f458103a4d376f606efc461889292e473a2f.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 682, + 402, + 695.5 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 207, + 695.5, + 402, + 709.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 207, + 709.0, + 402, + 722.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 207, + 722.5, + 402, + 736.0 + ], + "spans": [], + "index": 42 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 386, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 386, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 386, + 96 + ], + "score": 1.0, + "content": "The presence of a non-zero anti-symmetric component in the Hessian", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 96, + 451, + 148 + ], + "lines": [ + { + "bbox": [ + 160, + 96, + 451, + 148 + ], + "spans": [ + { + "bbox": [ + 160, + 96, + 451, + 148 + ], + "score": 0.93, + "content": "A = \\frac { 1 } { 2 } ( H - H ^ { T } ) = \\left[ \\begin{array} { c c c } { 0 } & { - \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { 0 } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { 0 } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "06f68846debd7be03af0b8c45a25ad62e753ceedbbf6feeb7d863e75698a5519.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 160, + 96, + 451, + 113.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 160, + 113.33333333333333, + 451, + 130.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 160, + 130.66666666666666, + 451, + 148.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 149, + 502, + 186 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 504, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 504, + 161 + ], + "score": 1.0, + "content": "implies the dynamics have a rotational component which can cause cycling or slow down conver-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 161, + 175 + ], + "score": 1.0, + "content": "gence. Since", + "type": "text" + }, + { + "bbox": [ + 161, + 160, + 190, + 171 + ], + "score": 0.89, + "content": "\\eta \\ll 1", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 159, + 305, + 175 + ], + "score": 1.0, + "content": "for typical batch sizes (e.g.,", + "type": "text" + }, + { + "bbox": [ + 306, + 159, + 317, + 173 + ], + "score": 0.9, + "content": "\\frac { 1 } { 6 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 159, + 389, + 175 + ], + "score": 1.0, + "content": "for DCGAN and", + "type": "text" + }, + { + "bbox": [ + 389, + 159, + 408, + 173 + ], + "score": 0.92, + "content": "\\scriptstyle { \\frac { 1 } { 2 0 4 8 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 159, + 505, + 173 + ], + "score": 1.0, + "content": "for BigGAN-deep), we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 171, + 307, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 150, + 185 + ], + "score": 1.0, + "content": "abbreviate", + "type": "text" + }, + { + "bbox": [ + 150, + 172, + 217, + 187 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\gamma = \\frac { 1 + \\eta } { 2 } \\approx \\frac { 1 - \\eta } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 171, + 307, + 187 + ], + "score": 1.0, + "content": "1−η2 to simplify notations.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 190, + 504, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 506, + 203 + ], + "score": 1.0, + "content": "Symplectic gradient adjustment (SGA) counteracts the rotational force by adding an adjustment", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 227, + 214 + ], + "score": 1.0, + "content": "term to the gradient to obtain", + "type": "text" + }, + { + "bbox": [ + 227, + 200, + 299, + 213 + ], + "score": 0.92, + "content": "g ^ { * } g + \\lambda A ^ { T } g", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 200, + 505, + 214 + ], + "score": 1.0, + "content": ", which for the discriminator and generator has the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 132, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 132, + 224 + ], + "score": 1.0, + "content": "form:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 223, + 452, + 285 + ], + "lines": [ + { + "bbox": [ + 155, + 223, + 452, + 285 + ], + "spans": [ + { + "bbox": [ + 155, + 223, + 452, + 285 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { g _ { D } ^ { * } = \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } } \\\\ & { g _ { G } ^ { * } = - \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } } \\end{array}", + "type": "interline_equation", + "image_path": "f82a74d96af732845e2e2f6d32024d52311fa45b640f03a70427ce193a4974a0.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 155, + 223, + 452, + 243.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 155, + 243.66666666666666, + 452, + 264.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 155, + 264.3333333333333, + 452, + 285.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 224, + 299 + ], + "score": 1.0, + "content": "The gradient with respect to", + "type": "text" + }, + { + "bbox": [ + 224, + 286, + 239, + 296 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 284, + 491, + 299 + ], + "score": 1.0, + "content": "is ignored since the convergence of training only depends on", + "type": "text" + }, + { + "bbox": [ + 491, + 286, + 504, + 297 + ], + "score": 0.88, + "content": "\\theta _ { D }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 141, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 123, + 311 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 297, + 136, + 308 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 295, + 141, + 311 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 504, + 341 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "If we drop the last terms in eq.17 and 18, which are expensive to compute for large models with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 324, + 487, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 178, + 344 + ], + "score": 1.0, + "content": "high-dimensional", + "type": "text" + }, + { + "bbox": [ + 179, + 328, + 191, + 339 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 324, + 210, + 344 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 327, + 222, + 339 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 324, + 259, + 344 + ], + "score": 1.0, + "content": ", and use", + "type": "text" + }, + { + "bbox": [ + 260, + 325, + 322, + 341 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 324, + 487, + 343 + ], + "score": 1.0, + "content": ", the adjusted updates can be rewritten as", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 343, + 395, + 405 + ], + "lines": [ + { + "bbox": [ + 215, + 343, + 395, + 405 + ], + "spans": [ + { + "bbox": [ + 215, + 343, + 395, + 405 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { g _ { D } ^ { * } \\approx { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } } + \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\\\ { { g _ { G } ^ { * } \\approx - { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } } - \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { G } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\end{array}", + "type": "interline_equation", + "image_path": "ddd060faa830066b423a9dba1bf2398d1116d935be8c7b4059ae1347eff153f6.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 343, + 395, + 358.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 215, + 358.5, + 395, + 374.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 215, + 374.0, + 395, + 389.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 215, + 389.5, + 395, + 405.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 182, + 441 + ], + "score": 1.0, + "content": "Because of the thiciently computing", + "type": "text" + }, + { + "bbox": [ + 212, + 404, + 230, + 441 + ], + "score": 1.0, + "content": "r, thand", + "type": "text" + }, + { + "bbox": [ + 260, + 404, + 361, + 441 + ], + "score": 1.0, + "content": "still the terms depend on is non-trivial (e.g., Pearl", + "type": "text" + }, + { + "bbox": [ + 362, + 406, + 387, + 422 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 404, + 506, + 441 + ], + "score": 1.0, + "content": "to adjust the gradients. Effi- 1994). However, if we intro-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 231, + 421, + 259, + 438 + ], + "spans": [ + { + "bbox": [ + 231, + 421, + 259, + 438 + ], + "score": 0.94, + "content": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\boldsymbol { z } ^ { \\prime } \\partial \\theta _ { D } }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 436, + 225, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 225, + 449 + ], + "score": 1.0, + "content": "duce the local approximation", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 450, + 396, + 477 + ], + "lines": [ + { + "bbox": [ + 215, + 450, + 396, + 477 + ], + "spans": [ + { + "bbox": [ + 215, + 450, + 396, + 477 + ], + "score": 0.94, + "content": "\\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } } \\qquad \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } }", + "type": "interline_equation", + "image_path": "35cff76831eacae66e68db90fbb7ecc829f2cd7e044aab85a02fce6866b78817.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 215, + 450, + 396, + 477 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 114, + 478, + 401, + 490 + ], + "lines": [ + { + "bbox": [ + 113, + 477, + 402, + 491 + ], + "spans": [ + { + "bbox": [ + 113, + 477, + 402, + 491 + ], + "score": 1.0, + "content": "hen the adjusted gradient becomes identical to 8 from latent optimisation.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "score": 1.0, + "content": "In other words, automatic differentiation by commonly used machine learning packages can com-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 230, + 519 + ], + "score": 1.0, + "content": "pute the adjusted gradient for", + "type": "text" + }, + { + "bbox": [ + 231, + 506, + 244, + 517 + ], + "score": 0.88, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 506, + 263, + 519 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 506, + 277, + 517 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "when back-propagating through the latent optimisation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "process. Despite the approximation involved in this analysis, both our experiments in section 5 and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "the results from Wu et al. (2019) verified that latent optimisation can significantly improve GAN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 143, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 143, + 554 + ], + "score": 1.0, + "content": "training.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 563, + 284, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 285, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 285, + 576 + ], + "score": 1.0, + "content": "B.2 RELATION WITH UNROLLED GANS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 504, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "Latent optimisation can be seen as unrolling GANs (Metz et al., 2016) in the space of the latent,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 595, + 429, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 429, + 608 + ], + "score": 1.0, + "content": "rather than the parameters. Unrolling in the latent space has the advantages that:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 129, + 614, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 129, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 129, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "1. LOGAN is more scalable than Unrolled GANs because it avoids second-order derivatives", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 626, + 349, + 638 + ], + "spans": [ + { + "bbox": [ + 141, + 626, + 349, + 638 + ], + "score": 1.0, + "content": "over a potentially very large number of parameters.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 128, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 128, + 639, + 263, + 653 + ], + "score": 1.0, + "content": "2. While unrolling the update of", + "type": "text" + }, + { + "bbox": [ + 264, + 640, + 273, + 650 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 639, + 396, + 653 + ], + "score": 1.0, + "content": "only affects the parameters of", + "type": "text" + }, + { + "bbox": [ + 397, + 640, + 406, + 650 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "(as in Metz et al. 2016),", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 650, + 380, + 663 + ], + "spans": [ + { + "bbox": [ + 141, + 650, + 268, + 663 + ], + "score": 1.0, + "content": "latent optimisation effects both", + "type": "text" + }, + { + "bbox": [ + 268, + 651, + 278, + 660 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 650, + 296, + 663 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 651, + 305, + 660 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 650, + 380, + 663 + ], + "score": 1.0, + "content": "as shown in eq. 8.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 109, + 670, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 670, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 504, + 684 + ], + "score": 1.0, + "content": "We next formally present this connection by showing that SGA can be seen as approximating Un-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 305, + 695 + ], + "score": 1.0, + "content": "rolled GANs (Metz et al., 2016). For the update", + "type": "text" + }, + { + "bbox": [ + 305, + 681, + 378, + 694 + ], + "score": 0.92, + "content": "\\theta _ { D } ^ { \\prime } = \\theta _ { D } + \\Delta \\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 680, + 505, + 695 + ], + "score": 1.0, + "content": ", we have the Taylor expansion", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 693, + 194, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 177, + 705 + ], + "score": 1.0, + "content": "approximation at", + "type": "text" + }, + { + "bbox": [ + 177, + 693, + 190, + 703 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 693, + 194, + 705 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 705, + 439, + 736 + ], + "lines": [ + { + "bbox": [ + 172, + 705, + 439, + 736 + ], + "spans": [ + { + "bbox": [ + 172, + 705, + 439, + 736 + ], + "score": 0.93, + "content": "f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) \\approx f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D }", + "type": "interline_equation", + "image_path": "78317d9d47e2549c887d661c5307f48b600bca77663bca33a556d3df5e6d0547.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 172, + 705, + 439, + 715.3333333333334 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 172, + 715.3333333333334, + 439, + 725.6666666666667 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 172, + 725.6666666666667, + 439, + 736.0000000000001 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 386, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 386, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 386, + 96 + ], + "score": 1.0, + "content": "The presence of a non-zero anti-symmetric component in the Hessian", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 386, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 96, + 451, + 148 + ], + "lines": [ + { + "bbox": [ + 160, + 96, + 451, + 148 + ], + "spans": [ + { + "bbox": [ + 160, + 96, + 451, + 148 + ], + "score": 0.93, + "content": "A = \\frac { 1 } { 2 } ( H - H ^ { T } ) = \\left[ \\begin{array} { c c c } { 0 } & { - \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { 0 } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { 0 } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "06f68846debd7be03af0b8c45a25ad62e753ceedbbf6feeb7d863e75698a5519.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 160, + 96, + 451, + 113.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 160, + 113.33333333333333, + 451, + 130.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 160, + 130.66666666666666, + 451, + 148.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 149, + 502, + 186 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 504, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 504, + 161 + ], + "score": 1.0, + "content": "implies the dynamics have a rotational component which can cause cycling or slow down conver-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 161, + 175 + ], + "score": 1.0, + "content": "gence. Since", + "type": "text" + }, + { + "bbox": [ + 161, + 160, + 190, + 171 + ], + "score": 0.89, + "content": "\\eta \\ll 1", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 159, + 305, + 175 + ], + "score": 1.0, + "content": "for typical batch sizes (e.g.,", + "type": "text" + }, + { + "bbox": [ + 306, + 159, + 317, + 173 + ], + "score": 0.9, + "content": "\\frac { 1 } { 6 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 159, + 389, + 175 + ], + "score": 1.0, + "content": "for DCGAN and", + "type": "text" + }, + { + "bbox": [ + 389, + 159, + 408, + 173 + ], + "score": 0.92, + "content": "\\scriptstyle { \\frac { 1 } { 2 0 4 8 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 159, + 505, + 173 + ], + "score": 1.0, + "content": "for BigGAN-deep), we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 171, + 307, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 150, + 185 + ], + "score": 1.0, + "content": "abbreviate", + "type": "text" + }, + { + "bbox": [ + 150, + 172, + 217, + 187 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\gamma = \\frac { 1 + \\eta } { 2 } \\approx \\frac { 1 - \\eta } { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 171, + 307, + 187 + ], + "score": 1.0, + "content": "1−η2 to simplify notations.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 149, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 190, + 504, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 506, + 203 + ], + "score": 1.0, + "content": "Symplectic gradient adjustment (SGA) counteracts the rotational force by adding an adjustment", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 227, + 214 + ], + "score": 1.0, + "content": "term to the gradient to obtain", + "type": "text" + }, + { + "bbox": [ + 227, + 200, + 299, + 213 + ], + "score": 0.92, + "content": "g ^ { * } g + \\lambda A ^ { T } g", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 200, + 505, + 214 + ], + "score": 1.0, + "content": ", which for the discriminator and generator has the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 132, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 132, + 224 + ], + "score": 1.0, + "content": "form:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 189, + 506, + 224 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 223, + 452, + 285 + ], + "lines": [ + { + "bbox": [ + 155, + 223, + 452, + 285 + ], + "spans": [ + { + "bbox": [ + 155, + 223, + 452, + 285 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { g _ { D } ^ { * } = \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } } \\\\ & { g _ { G } ^ { * } = - \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } } \\end{array}", + "type": "interline_equation", + "image_path": "f82a74d96af732845e2e2f6d32024d52311fa45b640f03a70427ce193a4974a0.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 155, + 223, + 452, + 243.66666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 155, + 243.66666666666666, + 452, + 264.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 155, + 264.3333333333333, + 452, + 285.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 224, + 299 + ], + "score": 1.0, + "content": "The gradient with respect to", + "type": "text" + }, + { + "bbox": [ + 224, + 286, + 239, + 296 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 284, + 491, + 299 + ], + "score": 1.0, + "content": "is ignored since the convergence of training only depends on", + "type": "text" + }, + { + "bbox": [ + 491, + 286, + 504, + 297 + ], + "score": 0.88, + "content": "\\theta _ { D }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 141, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 123, + 311 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 297, + 136, + 308 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 295, + 141, + 311 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 284, + 504, + 311 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 504, + 341 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "If we drop the last terms in eq.17 and 18, which are expensive to compute for large models with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 324, + 487, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 178, + 344 + ], + "score": 1.0, + "content": "high-dimensional", + "type": "text" + }, + { + "bbox": [ + 179, + 328, + 191, + 339 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 324, + 210, + 344 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 327, + 222, + 339 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 324, + 259, + 344 + ], + "score": 1.0, + "content": ", and use", + "type": "text" + }, + { + "bbox": [ + 260, + 325, + 322, + 341 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 324, + 487, + 343 + ], + "score": 1.0, + "content": ", the adjusted updates can be rewritten as", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 312, + 505, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 343, + 395, + 405 + ], + "lines": [ + { + "bbox": [ + 215, + 343, + 395, + 405 + ], + "spans": [ + { + "bbox": [ + 215, + 343, + 395, + 405 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { g _ { D } ^ { * } \\approx { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } } + \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\\\ { { g _ { G } ^ { * } \\approx - { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } } - \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { G } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\end{array}", + "type": "interline_equation", + "image_path": "ddd060faa830066b423a9dba1bf2398d1116d935be8c7b4059ae1347eff153f6.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 343, + 395, + 358.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 215, + 358.5, + 395, + 374.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 215, + 374.0, + 395, + 389.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 215, + 389.5, + 395, + 405.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 407, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 182, + 441 + ], + "score": 1.0, + "content": "Because of the thiciently computing", + "type": "text" + }, + { + "bbox": [ + 212, + 404, + 230, + 441 + ], + "score": 1.0, + "content": "r, thand", + "type": "text" + }, + { + "bbox": [ + 260, + 404, + 361, + 441 + ], + "score": 1.0, + "content": "still the terms depend on is non-trivial (e.g., Pearl", + "type": "text" + }, + { + "bbox": [ + 362, + 406, + 387, + 422 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 404, + 506, + 441 + ], + "score": 1.0, + "content": "to adjust the gradients. Effi- 1994). However, if we intro-", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 231, + 421, + 259, + 438 + ], + "spans": [ + { + "bbox": [ + 231, + 421, + 259, + 438 + ], + "score": 0.94, + "content": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\boldsymbol { z } ^ { \\prime } \\partial \\theta _ { D } }", + "type": "inline_equation" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 436, + 225, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 225, + 449 + ], + "score": 1.0, + "content": "duce the local approximation", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 22, + "bbox_fs": [ + 106, + 404, + 506, + 449 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 450, + 396, + 477 + ], + "lines": [ + { + "bbox": [ + 215, + 450, + 396, + 477 + ], + "spans": [ + { + "bbox": [ + 215, + 450, + 396, + 477 + ], + "score": 0.94, + "content": "\\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } } \\qquad \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } }", + "type": "interline_equation", + "image_path": "35cff76831eacae66e68db90fbb7ecc829f2cd7e044aab85a02fce6866b78817.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 215, + 450, + 396, + 477 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 114, + 478, + 401, + 490 + ], + "lines": [ + { + "bbox": [ + 113, + 477, + 402, + 491 + ], + "spans": [ + { + "bbox": [ + 113, + 477, + 402, + 491 + ], + "score": 1.0, + "content": "hen the adjusted gradient becomes identical to 8 from latent optimisation.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 113, + 477, + 402, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 508 + ], + "score": 1.0, + "content": "In other words, automatic differentiation by commonly used machine learning packages can com-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 230, + 519 + ], + "score": 1.0, + "content": "pute the adjusted gradient for", + "type": "text" + }, + { + "bbox": [ + 231, + 506, + 244, + 517 + ], + "score": 0.88, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 506, + 263, + 519 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 506, + 277, + 517 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "when back-propagating through the latent optimisation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "process. Despite the approximation involved in this analysis, both our experiments in section 5 and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "the results from Wu et al. (2019) verified that latent optimisation can significantly improve GAN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 537, + 143, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 143, + 554 + ], + "score": 1.0, + "content": "training.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 494, + 505, + 554 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 563, + 284, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 285, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 285, + 576 + ], + "score": 1.0, + "content": "B.2 RELATION WITH UNROLLED GANS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 504, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "Latent optimisation can be seen as unrolling GANs (Metz et al., 2016) in the space of the latent,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 595, + 429, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 429, + 608 + ], + "score": 1.0, + "content": "rather than the parameters. Unrolling in the latent space has the advantages that:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 582, + 505, + 608 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 614, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 129, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 129, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "1. LOGAN is more scalable than Unrolled GANs because it avoids second-order derivatives", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 626, + 349, + 638 + ], + "spans": [ + { + "bbox": [ + 141, + 626, + 349, + 638 + ], + "score": 1.0, + "content": "over a potentially very large number of parameters.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 128, + 639, + 263, + 653 + ], + "score": 1.0, + "content": "2. While unrolling the update of", + "type": "text" + }, + { + "bbox": [ + 264, + 640, + 273, + 650 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 639, + 396, + 653 + ], + "score": 1.0, + "content": "only affects the parameters of", + "type": "text" + }, + { + "bbox": [ + 397, + 640, + 406, + 650 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "(as in Metz et al. 2016),", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 650, + 380, + 663 + ], + "spans": [ + { + "bbox": [ + 141, + 650, + 268, + 663 + ], + "score": 1.0, + "content": "latent optimisation effects both", + "type": "text" + }, + { + "bbox": [ + 268, + 651, + 278, + 660 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 650, + 296, + 663 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 296, + 651, + 305, + 660 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 650, + 380, + 663 + ], + "score": 1.0, + "content": "as shown in eq. 8.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + } + ], + "index": 35.5, + "bbox_fs": [ + 128, + 614, + 505, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 670, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 670, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 504, + 684 + ], + "score": 1.0, + "content": "We next formally present this connection by showing that SGA can be seen as approximating Un-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 305, + 695 + ], + "score": 1.0, + "content": "rolled GANs (Metz et al., 2016). For the update", + "type": "text" + }, + { + "bbox": [ + 305, + 681, + 378, + 694 + ], + "score": 0.92, + "content": "\\theta _ { D } ^ { \\prime } = \\theta _ { D } + \\Delta \\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 680, + 505, + 695 + ], + "score": 1.0, + "content": ", we have the Taylor expansion", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 693, + 194, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 177, + 705 + ], + "score": 1.0, + "content": "approximation at", + "type": "text" + }, + { + "bbox": [ + 177, + 693, + 190, + 703 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 693, + 194, + 705 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 670, + 505, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 705, + 439, + 736 + ], + "lines": [ + { + "bbox": [ + 172, + 705, + 439, + 736 + ], + "spans": [ + { + "bbox": [ + 172, + 705, + 439, + 736 + ], + "score": 0.93, + "content": "f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) \\approx f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D }", + "type": "interline_equation", + "image_path": "78317d9d47e2549c887d661c5307f48b600bca77663bca33a556d3df5e6d0547.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 172, + 705, + 439, + 715.3333333333334 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 172, + 715.3333333333334, + 439, + 725.6666666666667 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 172, + 725.6666666666667, + 439, + 736.0000000000001 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 79, + 474, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 478, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 149, + 94 + ], + "score": 1.0, + "content": "Substitute", + "type": "text" + }, + { + "bbox": [ + 149, + 80, + 244, + 97 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 78, + 478, + 96 + ], + "score": 1.0, + "content": "α ∂f(z;θD,θG) , and take the derivatives with respect to θG on both sides:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 101, + 467, + 131 + ], + "lines": [ + { + "bbox": [ + 126, + 101, + 467, + 131 + ], + "spans": [ + { + "bbox": [ + 126, + 101, + 467, + 131 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } }", + "type": "interline_equation", + "image_path": "5b4757c45da4bce2b3b273adb772fefb3404f5732f9ff9bdc418fbd210ff275f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 126, + 101, + 467, + 111.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 111.0, + 467, + 121.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 126, + 121.0, + 467, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 506, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 134, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 505, + 148 + ], + "score": 1.0, + "content": "which is the same as eq. 18 (taking the negative sign). Compared with the exact gradient from the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 145, + 136, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 145, + 136, + 158 + ], + "score": 1.0, + "content": "unroll:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 160, + 468, + 191 + ], + "lines": [ + { + "bbox": [ + 127, + 160, + 468, + 191 + ], + "spans": [ + { + "bbox": [ + 127, + 160, + 468, + 191 + ], + "score": 0.91, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } = \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial ( \\theta _ { D } ^ { \\prime } ) }", + "type": "interline_equation", + "image_path": "b9c16173498b9a199f8317feb4362c7cd47d0a484904c103e6548a649ef4f32c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 127, + 160, + 468, + 170.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 127, + 170.33333333333334, + 468, + 180.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 127, + 180.66666666666669, + 468, + 191.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 308, + 212 + ], + "score": 1.0, + "content": "The approximation in eq. 23 comes from using", + "type": "text" + }, + { + "bbox": [ + 309, + 195, + 421, + 214 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } & { { } \\approx } & { \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { D } ^ { \\prime } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 194, + 443, + 216 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 196, + 505, + 213 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } } \\approx } \\end{array}", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 211, + 311, + 233 + ], + "spans": [ + { + "bbox": [ + 107, + 213, + 154, + 231 + ], + "score": 0.94, + "content": "\\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } ^ { \\prime } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 211, + 311, + 233 + ], + "score": 1.0, + "content": "as a result of the linear approximation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 203, + 246 + ], + "score": 1.0, + "content": "At this point, unrolling", + "type": "text" + }, + { + "bbox": [ + 204, + 236, + 213, + 245 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 234, + 295, + 246 + ], + "score": 1.0, + "content": "update only affects", + "type": "text" + }, + { + "bbox": [ + 295, + 235, + 308, + 246 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 234, + 476, + 246 + ], + "score": 1.0, + "content": ". Although it is expensive to unroll both", + "type": "text" + }, + { + "bbox": [ + 477, + 236, + 486, + 245 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 234, + 504, + 246 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 115, + 256 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 245, + 232, + 259 + ], + "score": 1.0, + "content": ", in principle, we can unroll", + "type": "text" + }, + { + "bbox": [ + 232, + 246, + 241, + 256 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 245, + 392, + 259 + ], + "score": 1.0, + "content": "update and compute the gradient of", + "type": "text" + }, + { + "bbox": [ + 392, + 246, + 405, + 257 + ], + "score": 0.9, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 245, + 471, + 259 + ], + "score": 1.0, + "content": "similarly using", + "type": "text" + }, + { + "bbox": [ + 471, + 246, + 505, + 258 + ], + "score": 0.88, + "content": "\\Delta \\theta _ { G } =", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 165, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 160, + 273 + ], + "score": 0.93, + "content": "\\alpha \\frac { \\partial f ( z ; \\mathbf { \\bar { \\theta } } _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 254, + 165, + 268 + ], + "score": 0.87, + "content": ":", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 277, + 467, + 308 + ], + "lines": [ + { + "bbox": [ + 128, + 277, + 467, + 308 + ], + "spans": [ + { + "bbox": [ + 128, + 277, + 467, + 308 + ], + "score": 0.92, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) } { \\partial \\theta _ { D } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } + 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }", + "type": "interline_equation", + "image_path": "a13e4b99474e8adbcd85d8000d5b173696b338a4702f571b621bb4f994a41e82.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 128, + 277, + 467, + 287.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 128, + 287.3333333333333, + 467, + 297.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 128, + 297.66666666666663, + 467, + 307.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 504, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "score": 1.0, + "content": "which gives us the same update rule as SGA (eq. 17). This correspondence based on first order", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "Taylor expansion is unsurprising, as SGA is based on linearising the adversarial dynamics (Balduzzi", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 159, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 159, + 346 + ], + "score": 1.0, + "content": "et al., 2018).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 106, + 358, + 373, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 374, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 374, + 371 + ], + "score": 1.0, + "content": "B.3 STOCHASTIC APPROXIMATION WITH TWO TIME SCALES", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "Heusel et al. (2017) used the theory of stochastic approximation to analyse GAN training. View-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "ing the training process as stochastic approximation with two time scales (Borkar, 1997; Konda &", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 296, + 414 + ], + "score": 1.0, + "content": "Borkar, 1999), they suggest that the update of", + "type": "text" + }, + { + "bbox": [ + 296, + 402, + 306, + 411 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 401, + 492, + 414 + ], + "score": 1.0, + "content": "should be fast enough compared with that of", + "type": "text" + }, + { + "bbox": [ + 492, + 402, + 501, + 411 + ], + "score": 0.73, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 401, + 505, + 414 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "Under mild assumptions, Heusel et al. (2017) proved that such two time-scale update converges to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 339, + 435 + ], + "score": 1.0, + "content": "local Nash equilibrium. Their analysis follows the idea of", + "type": "text" + }, + { + "bbox": [ + 340, + 423, + 362, + 435 + ], + "score": 0.93, + "content": "( \\tau , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "perturbation (Hirsch, 1989), where", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 176, + 447 + ], + "score": 1.0, + "content": "the slow updates", + "type": "text" + }, + { + "bbox": [ + 176, + 434, + 191, + 445 + ], + "score": 0.75, + "content": "( G )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 433, + 505, + 447 + ], + "score": 1.0, + "content": "is interpreted as a small perturbation over the ODE describing the fast update", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 444, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 107, + 445, + 123, + 456 + ], + "score": 0.79, + "content": "( D )", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 444, + 282, + 459 + ], + "score": 1.0, + "content": ". Importantly, the size of perturbation", + "type": "text" + }, + { + "bbox": [ + 283, + 446, + 289, + 455 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 444, + 505, + 459 + ], + "score": 1.0, + "content": "is measured in the magnitude of parameter change,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 456, + 335, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 335, + 469 + ], + "score": 1.0, + "content": "which is affected by both the learning rate and gradients.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "Here we show that LOGAN accelerates discriminator updates and slows down generator updates,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "thus helping the convergence of discriminator according to Heusel et al. (2017). We start from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 203, + 507 + ], + "score": 1.0, + "content": "analysing the change of", + "type": "text" + }, + { + "bbox": [ + 203, + 495, + 216, + 506 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 495, + 369, + 507 + ], + "score": 1.0, + "content": ". We assume that, without LO, it takes", + "type": "text" + }, + { + "bbox": [ + 370, + 495, + 438, + 507 + ], + "score": 0.93, + "content": "\\Delta \\theta _ { G } = \\theta _ { G } ^ { \\prime } - \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "to make a small", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 272, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 253, + 518 + ], + "score": 1.0, + "content": "constant amount of reduction in loss", + "type": "text" + }, + { + "bbox": [ + 254, + 506, + 268, + 517 + ], + "score": 0.88, + "content": "L _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 506, + 272, + 518 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 522, + 393, + 536 + ], + "lines": [ + { + "bbox": [ + 218, + 522, + 393, + 536 + ], + "spans": [ + { + "bbox": [ + 218, + 522, + 393, + 536 + ], + "score": 0.9, + "content": "\\rho = - f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "interline_equation", + "image_path": "560dd7ea33fa2ab6bac3edd07f29bfea53b60fb73c0da37564cef24388f6b7a8.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 218, + 522, + 393, + 536 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 504, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 212, + 554 + ], + "score": 1.0, + "content": "Now using the optimised", + "type": "text" + }, + { + "bbox": [ + 213, + 540, + 270, + 551 + ], + "score": 0.91, + "content": "z ^ { \\prime } = z + \\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 538, + 365, + 554 + ], + "score": 1.0, + "content": ", we assess the change", + "type": "text" + }, + { + "bbox": [ + 366, + 541, + 383, + 552 + ], + "score": 0.9, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 538, + 505, + 554 + ], + "score": 1.0, + "content": "required to achieve the same", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 552, + 193, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 193, + 563 + ], + "score": 1.0, + "content": "amount of reduction:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 568, + 404, + 582 + ], + "lines": [ + { + "bbox": [ + 207, + 568, + 404, + 582 + ], + "spans": [ + { + "bbox": [ + 207, + 568, + 404, + 582 + ], + "score": 0.88, + "content": "\\rho = - f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "interline_equation", + "image_path": "33bfe519ea27fb3cc07953789e04f99bf10855a41a6814d2c03e24d712738a29.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 207, + 568, + 404, + 582 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 176, + 600 + ], + "score": 1.0, + "content": "Intuitively, when", + "type": "text" + }, + { + "bbox": [ + 176, + 588, + 182, + 596 + ], + "score": 0.77, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 584, + 215, + 600 + ], + "score": 1.0, + "content": "“helps”", + "type": "text" + }, + { + "bbox": [ + 215, + 586, + 228, + 597 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 584, + 383, + 600 + ], + "score": 1.0, + "content": "to achieve the same goal of increasing", + "type": "text" + }, + { + "bbox": [ + 383, + 586, + 434, + 598 + ], + "score": 0.92, + "content": "f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 584, + 448, + 600 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 448, + 588, + 455, + 597 + ], + "score": 0.77, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 584, + 505, + 600 + ], + "score": 1.0, + "content": ", the respon-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 138, + 610 + ], + "score": 1.0, + "content": "sible of", + "type": "text" + }, + { + "bbox": [ + 139, + 598, + 151, + 608 + ], + "score": 0.91, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 596, + 387, + 610 + ], + "score": 1.0, + "content": "becomes smaller, so it does not need to change as much as", + "type": "text" + }, + { + "bbox": [ + 388, + 598, + 408, + 608 + ], + "score": 0.91, + "content": "\\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 596, + 431, + 610 + ], + "score": 1.0, + "content": ", thus", + "type": "text" + }, + { + "bbox": [ + 432, + 597, + 501, + 609 + ], + "score": 0.92, + "content": "\\lVert \\delta \\theta _ { G } \\rVert < \\lVert \\Delta \\theta _ { G } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 596, + 505, + 610 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 147, + 627 + ], + "score": 1.0, + "content": "Formally,", + "type": "text" + }, + { + "bbox": [ + 148, + 614, + 199, + 626 + ], + "score": 0.92, + "content": "f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 612, + 218, + 627 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 614, + 320, + 626 + ], + "score": 0.92, + "content": "f ( z + \\Delta ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 612, + 505, + 627 + ], + "score": 1.0, + "content": "have the following Taylor expansions around", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 149, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 113, + 635 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 623, + 131, + 638 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 131, + 626, + 143, + 636 + ], + "score": 0.9, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 623, + 149, + 638 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 640, + 469, + 733 + ], + "lines": [ + { + "bbox": [ + 142, + 640, + 469, + 733 + ], + "spans": [ + { + "bbox": [ + 142, + 640, + 469, + 733 + ], + "score": 0.95, + "content": "\\begin{array} { c } { { f ( z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } + \\epsilon ( \\Delta \\theta _ { G } ) } } \\\\ { { f ( z + \\Delta z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } } } \\\\ { { \\Delta z + \\displaystyle \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "b269fe998c4514bfe1f9b11591d16220b3c11dbcf589ae3d2036981f5c9a6899.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 142, + 640, + 469, + 671.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 142, + 671.0, + 469, + 702.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 142, + 702.0, + 469, + 733.0 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 79, + 474, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 478, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 149, + 94 + ], + "score": 1.0, + "content": "Substitute", + "type": "text" + }, + { + "bbox": [ + 149, + 80, + 244, + 97 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 78, + 478, + 96 + ], + "score": 1.0, + "content": "α ∂f(z;θD,θG) , and take the derivatives with respect to θG on both sides:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 78, + 478, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 101, + 467, + 131 + ], + "lines": [ + { + "bbox": [ + 126, + 101, + 467, + 131 + ], + "spans": [ + { + "bbox": [ + 126, + 101, + 467, + 131 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } }", + "type": "interline_equation", + "image_path": "5b4757c45da4bce2b3b273adb772fefb3404f5732f9ff9bdc418fbd210ff275f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 126, + 101, + 467, + 111.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 111.0, + 467, + 121.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 126, + 121.0, + 467, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 506, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 134, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 505, + 148 + ], + "score": 1.0, + "content": "which is the same as eq. 18 (taking the negative sign). Compared with the exact gradient from the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 145, + 136, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 145, + 136, + 158 + ], + "score": 1.0, + "content": "unroll:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 134, + 505, + 158 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 160, + 468, + 191 + ], + "lines": [ + { + "bbox": [ + 127, + 160, + 468, + 191 + ], + "spans": [ + { + "bbox": [ + 127, + 160, + 468, + 191 + ], + "score": 0.91, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } = \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial ( \\theta _ { D } ^ { \\prime } ) }", + "type": "interline_equation", + "image_path": "b9c16173498b9a199f8317feb4362c7cd47d0a484904c103e6548a649ef4f32c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 127, + 160, + 468, + 170.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 127, + 170.33333333333334, + 468, + 180.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 127, + 180.66666666666669, + 468, + 191.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 308, + 212 + ], + "score": 1.0, + "content": "The approximation in eq. 23 comes from using", + "type": "text" + }, + { + "bbox": [ + 309, + 195, + 421, + 214 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } & { { } \\approx } & { \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { D } ^ { \\prime } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 194, + 443, + 216 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 196, + 505, + 213 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } } \\approx } \\end{array}", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 211, + 311, + 233 + ], + "spans": [ + { + "bbox": [ + 107, + 213, + 154, + 231 + ], + "score": 0.94, + "content": "\\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } ^ { \\prime } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 211, + 311, + 233 + ], + "score": 1.0, + "content": "as a result of the linear approximation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 194, + 505, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 504, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 203, + 246 + ], + "score": 1.0, + "content": "At this point, unrolling", + "type": "text" + }, + { + "bbox": [ + 204, + 236, + 213, + 245 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 234, + 295, + 246 + ], + "score": 1.0, + "content": "update only affects", + "type": "text" + }, + { + "bbox": [ + 295, + 235, + 308, + 246 + ], + "score": 0.89, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 234, + 476, + 246 + ], + "score": 1.0, + "content": ". Although it is expensive to unroll both", + "type": "text" + }, + { + "bbox": [ + 477, + 236, + 486, + 245 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 234, + 504, + 246 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 115, + 256 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 245, + 232, + 259 + ], + "score": 1.0, + "content": ", in principle, we can unroll", + "type": "text" + }, + { + "bbox": [ + 232, + 246, + 241, + 256 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 245, + 392, + 259 + ], + "score": 1.0, + "content": "update and compute the gradient of", + "type": "text" + }, + { + "bbox": [ + 392, + 246, + 405, + 257 + ], + "score": 0.9, + "content": "\\theta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 245, + 471, + 259 + ], + "score": 1.0, + "content": "similarly using", + "type": "text" + }, + { + "bbox": [ + 471, + 246, + 505, + 258 + ], + "score": 0.88, + "content": "\\Delta \\theta _ { G } =", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 165, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 160, + 273 + ], + "score": 0.93, + "content": "\\alpha \\frac { \\partial f ( z ; \\mathbf { \\bar { \\theta } } _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 254, + 165, + 268 + ], + "score": 0.87, + "content": ":", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 234, + 505, + 273 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 277, + 467, + 308 + ], + "lines": [ + { + "bbox": [ + 128, + 277, + 467, + 308 + ], + "spans": [ + { + "bbox": [ + 128, + 277, + 467, + 308 + ], + "score": 0.92, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) } { \\partial \\theta _ { D } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } + 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }", + "type": "interline_equation", + "image_path": "a13e4b99474e8adbcd85d8000d5b173696b338a4702f571b621bb4f994a41e82.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 128, + 277, + 467, + 287.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 128, + 287.3333333333333, + 467, + 297.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 128, + 297.66666666666663, + 467, + 307.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 504, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "score": 1.0, + "content": "which gives us the same update rule as SGA (eq. 17). This correspondence based on first order", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "Taylor expansion is unsurprising, as SGA is based on linearising the adversarial dynamics (Balduzzi", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 159, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 159, + 346 + ], + "score": 1.0, + "content": "et al., 2018).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 311, + 506, + 346 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 358, + 373, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 374, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 374, + 371 + ], + "score": 1.0, + "content": "B.3 STOCHASTIC APPROXIMATION WITH TWO TIME SCALES", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "Heusel et al. (2017) used the theory of stochastic approximation to analyse GAN training. View-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "ing the training process as stochastic approximation with two time scales (Borkar, 1997; Konda &", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 296, + 414 + ], + "score": 1.0, + "content": "Borkar, 1999), they suggest that the update of", + "type": "text" + }, + { + "bbox": [ + 296, + 402, + 306, + 411 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 401, + 492, + 414 + ], + "score": 1.0, + "content": "should be fast enough compared with that of", + "type": "text" + }, + { + "bbox": [ + 492, + 402, + 501, + 411 + ], + "score": 0.73, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 401, + 505, + 414 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "Under mild assumptions, Heusel et al. (2017) proved that such two time-scale update converges to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 339, + 435 + ], + "score": 1.0, + "content": "local Nash equilibrium. Their analysis follows the idea of", + "type": "text" + }, + { + "bbox": [ + 340, + 423, + 362, + 435 + ], + "score": 0.93, + "content": "( \\tau , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "perturbation (Hirsch, 1989), where", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 176, + 447 + ], + "score": 1.0, + "content": "the slow updates", + "type": "text" + }, + { + "bbox": [ + 176, + 434, + 191, + 445 + ], + "score": 0.75, + "content": "( G )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 433, + 505, + 447 + ], + "score": 1.0, + "content": "is interpreted as a small perturbation over the ODE describing the fast update", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 444, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 107, + 445, + 123, + 456 + ], + "score": 0.79, + "content": "( D )", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 444, + 282, + 459 + ], + "score": 1.0, + "content": ". Importantly, the size of perturbation", + "type": "text" + }, + { + "bbox": [ + 283, + 446, + 289, + 455 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 444, + 505, + 459 + ], + "score": 1.0, + "content": "is measured in the magnitude of parameter change,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 456, + 335, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 335, + 469 + ], + "score": 1.0, + "content": "which is affected by both the learning rate and gradients.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 378, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "Here we show that LOGAN accelerates discriminator updates and slows down generator updates,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "thus helping the convergence of discriminator according to Heusel et al. (2017). We start from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 203, + 507 + ], + "score": 1.0, + "content": "analysing the change of", + "type": "text" + }, + { + "bbox": [ + 203, + 495, + 216, + 506 + ], + "score": 0.88, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 495, + 369, + 507 + ], + "score": 1.0, + "content": ". We assume that, without LO, it takes", + "type": "text" + }, + { + "bbox": [ + 370, + 495, + 438, + 507 + ], + "score": 0.93, + "content": "\\Delta \\theta _ { G } = \\theta _ { G } ^ { \\prime } - \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "to make a small", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 272, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 253, + 518 + ], + "score": 1.0, + "content": "constant amount of reduction in loss", + "type": "text" + }, + { + "bbox": [ + 254, + 506, + 268, + 517 + ], + "score": 0.88, + "content": "L _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 506, + 272, + 518 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 472, + 505, + 518 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 522, + 393, + 536 + ], + "lines": [ + { + "bbox": [ + 218, + 522, + 393, + 536 + ], + "spans": [ + { + "bbox": [ + 218, + 522, + 393, + 536 + ], + "score": 0.9, + "content": "\\rho = - f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "interline_equation", + "image_path": "560dd7ea33fa2ab6bac3edd07f29bfea53b60fb73c0da37564cef24388f6b7a8.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 218, + 522, + 393, + 536 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 504, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 212, + 554 + ], + "score": 1.0, + "content": "Now using the optimised", + "type": "text" + }, + { + "bbox": [ + 213, + 540, + 270, + 551 + ], + "score": 0.91, + "content": "z ^ { \\prime } = z + \\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 538, + 365, + 554 + ], + "score": 1.0, + "content": ", we assess the change", + "type": "text" + }, + { + "bbox": [ + 366, + 541, + 383, + 552 + ], + "score": 0.9, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 538, + 505, + 554 + ], + "score": 1.0, + "content": "required to achieve the same", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 552, + 193, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 193, + 563 + ], + "score": 1.0, + "content": "amount of reduction:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 538, + 505, + 563 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 568, + 404, + 582 + ], + "lines": [ + { + "bbox": [ + 207, + 568, + 404, + 582 + ], + "spans": [ + { + "bbox": [ + 207, + 568, + 404, + 582 + ], + "score": 0.88, + "content": "\\rho = - f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "interline_equation", + "image_path": "33bfe519ea27fb3cc07953789e04f99bf10855a41a6814d2c03e24d712738a29.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 207, + 568, + 404, + 582 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 586, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 176, + 600 + ], + "score": 1.0, + "content": "Intuitively, when", + "type": "text" + }, + { + "bbox": [ + 176, + 588, + 182, + 596 + ], + "score": 0.77, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 584, + 215, + 600 + ], + "score": 1.0, + "content": "“helps”", + "type": "text" + }, + { + "bbox": [ + 215, + 586, + 228, + 597 + ], + "score": 0.89, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 584, + 383, + 600 + ], + "score": 1.0, + "content": "to achieve the same goal of increasing", + "type": "text" + }, + { + "bbox": [ + 383, + 586, + 434, + 598 + ], + "score": 0.92, + "content": "f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 584, + 448, + 600 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 448, + 588, + 455, + 597 + ], + "score": 0.77, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 584, + 505, + 600 + ], + "score": 1.0, + "content": ", the respon-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 138, + 610 + ], + "score": 1.0, + "content": "sible of", + "type": "text" + }, + { + "bbox": [ + 139, + 598, + 151, + 608 + ], + "score": 0.91, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 596, + 387, + 610 + ], + "score": 1.0, + "content": "becomes smaller, so it does not need to change as much as", + "type": "text" + }, + { + "bbox": [ + 388, + 598, + 408, + 608 + ], + "score": 0.91, + "content": "\\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 596, + 431, + 610 + ], + "score": 1.0, + "content": ", thus", + "type": "text" + }, + { + "bbox": [ + 432, + 597, + 501, + 609 + ], + "score": 0.92, + "content": "\\lVert \\delta \\theta _ { G } \\rVert < \\lVert \\Delta \\theta _ { G } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 596, + 505, + 610 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 584, + 505, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 147, + 627 + ], + "score": 1.0, + "content": "Formally,", + "type": "text" + }, + { + "bbox": [ + 148, + 614, + 199, + 626 + ], + "score": 0.92, + "content": "f ( z ; \\theta _ { D } , \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 612, + 218, + 627 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 614, + 320, + 626 + ], + "score": 0.92, + "content": "f ( z + \\Delta ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 612, + 505, + 627 + ], + "score": 1.0, + "content": "have the following Taylor expansions around", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 623, + 149, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 113, + 635 + ], + "score": 0.76, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 623, + 131, + 638 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 131, + 626, + 143, + 636 + ], + "score": 0.9, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 623, + 149, + 638 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 612, + 505, + 638 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 640, + 469, + 733 + ], + "lines": [ + { + "bbox": [ + 142, + 640, + 469, + 733 + ], + "spans": [ + { + "bbox": [ + 142, + 640, + 469, + 733 + ], + "score": 0.95, + "content": "\\begin{array} { c } { { f ( z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } + \\epsilon ( \\Delta \\theta _ { G } ) } } \\\\ { { f ( z + \\Delta z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } } } \\\\ { { \\Delta z + \\displaystyle \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "b269fe998c4514bfe1f9b11591d16220b3c11dbcf589ae3d2036981f5c9a6899.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 142, + 640, + 469, + 671.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 142, + 671.0, + 469, + 702.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 142, + 702.0, + 469, + 733.0 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 136, + 96 + ], + "score": 1.0, + "content": "Where", + "type": "text" + }, + { + "bbox": [ + 136, + 82, + 152, + 95 + ], + "score": 0.89, + "content": "\\epsilon ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "’s are higher order terms of the increments. Using the assumption of eq. 26 and 27, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 218, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 218, + 105 + ], + "score": 1.0, + "content": "can combine eq. 28 and 29:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 110, + 484, + 140 + ], + "lines": [ + { + "bbox": [ + 113, + 110, + 484, + 140 + ], + "spans": [ + { + "bbox": [ + 113, + 110, + 484, + 140 + ], + "score": 0.94, + "content": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon", + "type": "interline_equation", + "image_path": "eb0fbf8ff34caaf9e0785a7d90c0fe6e5c83db3aa8175fa714064e095a8226bd.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 113, + 110, + 484, + 120.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 113, + 120.0, + 484, + 130.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 113, + 130.0, + 484, + 140.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 145, + 455, + 162 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 455, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 133, + 161 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 148, + 241, + 161 + ], + "score": 0.91, + "content": "\\epsilon = \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) - \\epsilon ( \\Delta \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 147, + 270, + 161 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 294, + 143, + 455, + 163 + ], + "score": 1.0, + "content": "∂f(z;θD,θG)∂z in gradient descent (eq. 3),", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 166, + 354, + 192 + ], + "lines": [ + { + "bbox": [ + 258, + 166, + 354, + 192 + ], + "spans": [ + { + "bbox": [ + 258, + 166, + 354, + 192 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\Delta z > 0", + "type": "interline_equation", + "image_path": "858f0c65d77db71a418a03d70c5e0606399c15898887cbb3f48e18b293dd0b98.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 258, + 166, + 354, + 192 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 243, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 242, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 242, + 211 + ], + "score": 1.0, + "content": "Therefore, we have the inequality", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 213, + 438, + 244 + ], + "lines": [ + { + "bbox": [ + 176, + 213, + 438, + 244 + ], + "spans": [ + { + "bbox": [ + 176, + 213, + 438, + 244 + ], + "score": 0.93, + "content": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } < \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon", + "type": "interline_equation", + "image_path": "db5b604b7ec94cc6f59305cd5b5265121dd0c73f8e9d8c2c1896d27ffa48cca5.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 176, + 213, + 438, + 223.33333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 176, + 223.33333333333334, + 438, + 233.66666666666669 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 176, + 233.66666666666669, + 438, + 244.00000000000003 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 196, + 262 + ], + "score": 1.0, + "content": "If we further assume", + "type": "text" + }, + { + "bbox": [ + 196, + 249, + 217, + 260 + ], + "score": 0.91, + "content": "\\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 248, + 237, + 262 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 237, + 249, + 255, + 260 + ], + "score": 0.9, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 248, + 505, + 262 + ], + "score": 1.0, + "content": "are obtained from stochastic gradient descent with identical", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 163, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 163, + 273 + ], + "score": 1.0, + "content": "learning rate,", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 270, + 425, + 297 + ], + "lines": [ + { + "bbox": [ + 185, + 270, + 425, + 297 + ], + "spans": [ + { + "bbox": [ + 185, + 270, + 425, + 297 + ], + "score": 0.91, + "content": "\\Delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\qquad \\delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }", + "type": "interline_equation", + "image_path": "5110787851e3c0737d7cb10dc05adb2764ab13cef0bde9dd05eedfdb6bf7ec2a.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 185, + 270, + 425, + 297 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 250, + 310 + ], + "lines": [ + { + "bbox": [ + 107, + 298, + 250, + 311 + ], + "spans": [ + { + "bbox": [ + 107, + 298, + 250, + 311 + ], + "score": 1.0, + "content": "substituting eq. 33 into eq. 32 gives", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 315, + 351, + 330 + ], + "lines": [ + { + "bbox": [ + 262, + 315, + 351, + 330 + ], + "spans": [ + { + "bbox": [ + 262, + 315, + 351, + 330 + ], + "score": 0.91, + "content": "\\lVert \\Delta \\theta _ { G } \\rVert < \\lVert \\delta \\theta _ { G } \\rVert + \\epsilon", + "type": "interline_equation", + "image_path": "2756506a6e2ccfcb30acbeff91257cd388a2e6e75ab1615852a3ab6933c68f80.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 262, + 315, + 351, + 330 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "The same analysis applies to the discriminator. The similar intuition is that it takes the discriminator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 346, + 452, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 375, + 358 + ], + "score": 1.0, + "content": "additional effort to compensate the exploitation from the optimised", + "type": "text" + }, + { + "bbox": [ + 376, + 346, + 385, + 356 + ], + "score": 0.86, + "content": "z ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 346, + 452, + 358 + ], + "score": 1.0, + "content": ". We then obtain", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 362, + 486, + 393 + ], + "lines": [ + { + "bbox": [ + 112, + 362, + 486, + 393 + ], + "spans": [ + { + "bbox": [ + 112, + 362, + 486, + 393 + ], + "score": 0.93, + "content": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\delta \\theta _ { D } + \\epsilon", + "type": "interline_equation", + "image_path": "28bbbaec800be633c323dbece41044abf5da91701bf2a0f3981a0c739ef49503.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 112, + 362, + 486, + 372.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 372.3333333333333, + 486, + 382.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 382.66666666666663, + 486, + 392.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 506, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 254, + 418 + ], + "score": 1.0, + "content": "However, since the adversarial loss", + "type": "text" + }, + { + "bbox": [ + 255, + 402, + 309, + 413 + ], + "score": 0.91, + "content": "L _ { D } = - L _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 396, + 352, + 418 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 352, + 398, + 452, + 415 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 396, + 473, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 401, + 505, + 413 + ], + "score": 0.89, + "content": "\\delta \\theta _ { D } =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 411, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 169, + 431 + ], + "score": 0.93, + "content": "\\begin{array} { r } { - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 411, + 407, + 434 + ], + "score": 1.0, + "content": "taking the opposite signs of eq.33. For sufficiently small", + "type": "text" + }, + { + "bbox": [ + 407, + 417, + 421, + 428 + ], + "score": 0.43, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 411, + 426, + 434 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 417, + 447, + 428 + ], + "score": 0.63, + "content": "\\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 411, + 466, + 434 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 467, + 417, + 484, + 428 + ], + "score": 0.87, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 411, + 488, + 434 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 488, + 419, + 495, + 427 + ], + "score": 0.59, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 411, + 507, + 434 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 452, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 173, + 442 + ], + "score": 1.0, + "content": "close to zero, so", + "type": "text" + }, + { + "bbox": [ + 174, + 429, + 244, + 442 + ], + "score": 0.93, + "content": "\\lVert \\Delta \\theta _ { D } \\rVert < \\lVert \\delta \\theta _ { D } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 429, + 373, + 442 + ], + "score": 1.0, + "content": "under our assumptions of small", + "type": "text" + }, + { + "bbox": [ + 374, + 430, + 412, + 441 + ], + "score": 0.59, + "content": "\\Delta z , \\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 429, + 431, + 442 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 431, + 430, + 448, + 441 + ], + "score": 0.9, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 429, + 452, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 506, + 483 + ], + "lines": [ + { + "bbox": [ + 112, + 444, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 112, + 444, + 250, + 475 + ], + "score": 1.0, + "content": "mportantly, the bigger the product . Moreover, bigger step increases", + "type": "text" + }, + { + "bbox": [ + 251, + 446, + 289, + 462 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z } \\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 444, + 387, + 475 + ], + "score": 1.0, + "content": "is, the more robust the id gap between updating", + "type": "text" + }, + { + "bbox": [ + 397, + 444, + 415, + 475 + ], + "score": 1.0, + "content": "qual and", + "type": "text" + }, + { + "bbox": [ + 424, + 444, + 506, + 475 + ], + "score": 1.0, + "content": "is to the error from, further facilitating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 424, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 112, + 470 + ], + "score": 0.31, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 461, + 396, + 470 + ], + "score": 0.43, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 461, + 424, + 470 + ], + "score": 0.53, + "content": "\\mathbf { G }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 472, + 420, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 420, + 484 + ], + "score": 1.0, + "content": "convergence according to Heusel et al. (2017). Overall, our analysis suggests:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 129, + 491, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 129, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 129, + 491, + 392, + 506 + ], + "score": 1.0, + "content": "1. More than one gradient descent step may not be helpful, since", + "type": "text" + }, + { + "bbox": [ + 392, + 493, + 407, + 502 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "from multiple GD steps", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 502, + 303, + 519 + ], + "spans": [ + { + "bbox": [ + 141, + 502, + 279, + 517 + ], + "score": 1.0, + "content": "may deviate from the direction of", + "type": "text" + }, + { + "bbox": [ + 279, + 503, + 301, + 519 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 502, + 303, + 517 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 128, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 128, + 520, + 198, + 535 + ], + "score": 1.0, + "content": "2. Large step of", + "type": "text" + }, + { + "bbox": [ + 198, + 522, + 212, + 531 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "is more helpful in facilitating convergence by widening the gap between", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 532, + 297, + 544 + ], + "spans": [ + { + "bbox": [ + 142, + 532, + 151, + 542 + ], + "score": 0.34, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 532, + 168, + 544 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 532, + 178, + 542 + ], + "score": 0.46, + "content": "\\mathbf { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 532, + 297, + 544 + ], + "score": 1.0, + "content": "updates (Heusel et al., 2017).", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 128, + 547, + 229, + 560 + ], + "score": 1.0, + "content": "3. However, the step of", + "type": "text" + }, + { + "bbox": [ + 230, + 547, + 244, + 558 + ], + "score": 0.86, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "cannot be too large. In addition to the linear approximation we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 557, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 141, + 557, + 505, + 572 + ], + "score": 1.0, + "content": "used throughout our analysis, the approximate SGA breaks down when eq.21 is strongly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 569, + 485, + 587 + ], + "spans": [ + { + "bbox": [ + 142, + 569, + 342, + 587 + ], + "score": 1.0, + "content": "violated when “overshoot” brings the gradients at", + "type": "text" + }, + { + "bbox": [ + 343, + 569, + 368, + 585 + ], + "score": 0.94, + "content": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 569, + 461, + 587 + ], + "score": 1.0, + "content": "to the opposite sign of", + "type": "text" + }, + { + "bbox": [ + 461, + 569, + 483, + 585 + ], + "score": 0.95, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 569, + 485, + 587 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 106, + 599, + 342, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 598, + 342, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 342, + 615 + ], + "score": 1.0, + "content": "C POISSON LIKELIHOOD FROM HINGE LOSS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 639 + ], + "score": 1.0, + "content": "Here we provide a probabilistic interpretation of the hinge loss for the generator, which leads natu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "rally to the scenario of a family of discriminators. Although this interpretation is not necessary for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 647, + 494, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 494, + 661 + ], + "score": 1.0, + "content": "our current algorithm, it may provides useful guidance for incorporating multiple discriminators.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 663, + 505, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 663, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 202, + 677 + ], + "score": 1.0, + "content": "We introduce the label", + "type": "text" + }, + { + "bbox": [ + 202, + 665, + 229, + 674 + ], + "score": 0.9, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 663, + 302, + 677 + ], + "score": 1.0, + "content": "for real data and", + "type": "text" + }, + { + "bbox": [ + 302, + 665, + 329, + 675 + ], + "score": 0.9, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 663, + 505, + 677 + ], + "score": 1.0, + "content": "fake samples. This section shows that the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 675, + 189, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 189, + 687 + ], + "score": 1.0, + "content": "generator hinge loss", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 686, + 344, + 699 + ], + "lines": [ + { + "bbox": [ + 268, + 686, + 344, + 699 + ], + "spans": [ + { + "bbox": [ + 268, + 686, + 344, + 699 + ], + "score": 0.93, + "content": "L _ { G } = - D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "5e64840cde5a5c641e9934aeafb0830a37f1c284d9c281b4f67191fac2af05dc.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 268, + 686, + 344, + 699 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 702, + 331, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 701, + 331, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 331, + 716 + ], + "score": 1.0, + "content": "can be interpreted as a negative log-likelihood function:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 720, + 366, + 733 + ], + "lines": [ + { + "bbox": [ + 245, + 720, + 366, + 733 + ], + "spans": [ + { + "bbox": [ + 245, + 720, + 366, + 733 + ], + "score": 0.92, + "content": "L _ { G } = - \\ln p ( t = 1 ; D , G ( z ) )", + "type": "interline_equation", + "image_path": "755e51838e95d4086e4f2d4e3f6d5584b88bafa3dac29a07a08babae1248718b.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 245, + 720, + 366, + 733 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 136, + 96 + ], + "score": 1.0, + "content": "Where", + "type": "text" + }, + { + "bbox": [ + 136, + 82, + 152, + 95 + ], + "score": 0.89, + "content": "\\epsilon ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "’s are higher order terms of the increments. Using the assumption of eq. 26 and 27, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 218, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 218, + 105 + ], + "score": 1.0, + "content": "can combine eq. 28 and 29:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 80, + 506, + 105 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 110, + 484, + 140 + ], + "lines": [ + { + "bbox": [ + 113, + 110, + 484, + 140 + ], + "spans": [ + { + "bbox": [ + 113, + 110, + 484, + 140 + ], + "score": 0.94, + "content": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon", + "type": "interline_equation", + "image_path": "eb0fbf8ff34caaf9e0785a7d90c0fe6e5c83db3aa8175fa714064e095a8226bd.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 113, + 110, + 484, + 120.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 113, + 120.0, + 484, + 130.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 113, + 130.0, + 484, + 140.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 145, + 455, + 162 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 455, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 133, + 161 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 148, + 241, + 161 + ], + "score": 0.91, + "content": "\\epsilon = \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) - \\epsilon ( \\Delta \\theta _ { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 147, + 270, + 161 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 294, + 143, + 455, + 163 + ], + "score": 1.0, + "content": "∂f(z;θD,θG)∂z in gradient descent (eq. 3),", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 143, + 455, + 163 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 166, + 354, + 192 + ], + "lines": [ + { + "bbox": [ + 258, + 166, + 354, + 192 + ], + "spans": [ + { + "bbox": [ + 258, + 166, + 354, + 192 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\Delta z > 0", + "type": "interline_equation", + "image_path": "858f0c65d77db71a418a03d70c5e0606399c15898887cbb3f48e18b293dd0b98.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 258, + 166, + 354, + 192 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 243, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 242, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 242, + 211 + ], + "score": 1.0, + "content": "Therefore, we have the inequality", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 194, + 242, + 211 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 213, + 438, + 244 + ], + "lines": [ + { + "bbox": [ + 176, + 213, + 438, + 244 + ], + "spans": [ + { + "bbox": [ + 176, + 213, + 438, + 244 + ], + "score": 0.93, + "content": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } < \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon", + "type": "interline_equation", + "image_path": "db5b604b7ec94cc6f59305cd5b5265121dd0c73f8e9d8c2c1896d27ffa48cca5.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 176, + 213, + 438, + 223.33333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 176, + 223.33333333333334, + 438, + 233.66666666666669 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 176, + 233.66666666666669, + 438, + 244.00000000000003 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 248, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 196, + 262 + ], + "score": 1.0, + "content": "If we further assume", + "type": "text" + }, + { + "bbox": [ + 196, + 249, + 217, + 260 + ], + "score": 0.91, + "content": "\\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 248, + 237, + 262 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 237, + 249, + 255, + 260 + ], + "score": 0.9, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 248, + 505, + 262 + ], + "score": 1.0, + "content": "are obtained from stochastic gradient descent with identical", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 163, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 163, + 273 + ], + "score": 1.0, + "content": "learning rate,", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 248, + 505, + 273 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 270, + 425, + 297 + ], + "lines": [ + { + "bbox": [ + 185, + 270, + 425, + 297 + ], + "spans": [ + { + "bbox": [ + 185, + 270, + 425, + 297 + ], + "score": 0.91, + "content": "\\Delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\qquad \\delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }", + "type": "interline_equation", + "image_path": "5110787851e3c0737d7cb10dc05adb2764ab13cef0bde9dd05eedfdb6bf7ec2a.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 185, + 270, + 425, + 297 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 250, + 310 + ], + "lines": [ + { + "bbox": [ + 107, + 298, + 250, + 311 + ], + "spans": [ + { + "bbox": [ + 107, + 298, + 250, + 311 + ], + "score": 1.0, + "content": "substituting eq. 33 into eq. 32 gives", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 107, + 298, + 250, + 311 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 315, + 351, + 330 + ], + "lines": [ + { + "bbox": [ + 262, + 315, + 351, + 330 + ], + "spans": [ + { + "bbox": [ + 262, + 315, + 351, + 330 + ], + "score": 0.91, + "content": "\\lVert \\Delta \\theta _ { G } \\rVert < \\lVert \\delta \\theta _ { G } \\rVert + \\epsilon", + "type": "interline_equation", + "image_path": "2756506a6e2ccfcb30acbeff91257cd388a2e6e75ab1615852a3ab6933c68f80.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 262, + 315, + 351, + 330 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "The same analysis applies to the discriminator. The similar intuition is that it takes the discriminator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 346, + 452, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 375, + 358 + ], + "score": 1.0, + "content": "additional effort to compensate the exploitation from the optimised", + "type": "text" + }, + { + "bbox": [ + 376, + 346, + 385, + 356 + ], + "score": 0.86, + "content": "z ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 346, + 452, + 358 + ], + "score": 1.0, + "content": ". We then obtain", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 335, + 506, + 358 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 362, + 486, + 393 + ], + "lines": [ + { + "bbox": [ + 112, + 362, + 486, + 393 + ], + "spans": [ + { + "bbox": [ + 112, + 362, + 486, + 393 + ], + "score": 0.93, + "content": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\delta \\theta _ { D } + \\epsilon", + "type": "interline_equation", + "image_path": "28bbbaec800be633c323dbece41044abf5da91701bf2a0f3981a0c739ef49503.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 112, + 362, + 486, + 372.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 372.3333333333333, + 486, + 382.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 382.66666666666663, + 486, + 392.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 506, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 254, + 418 + ], + "score": 1.0, + "content": "However, since the adversarial loss", + "type": "text" + }, + { + "bbox": [ + 255, + 402, + 309, + 413 + ], + "score": 0.91, + "content": "L _ { D } = - L _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 396, + 352, + 418 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 352, + 398, + 452, + 415 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 396, + 473, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 401, + 505, + 413 + ], + "score": 0.89, + "content": "\\delta \\theta _ { D } =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 411, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 169, + 431 + ], + "score": 0.93, + "content": "\\begin{array} { r } { - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 411, + 407, + 434 + ], + "score": 1.0, + "content": "taking the opposite signs of eq.33. For sufficiently small", + "type": "text" + }, + { + "bbox": [ + 407, + 417, + 421, + 428 + ], + "score": 0.43, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 411, + 426, + 434 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 417, + 447, + 428 + ], + "score": 0.63, + "content": "\\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 411, + 466, + 434 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 467, + 417, + 484, + 428 + ], + "score": 0.87, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 411, + 488, + 434 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 488, + 419, + 495, + 427 + ], + "score": 0.59, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 411, + 507, + 434 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 452, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 173, + 442 + ], + "score": 1.0, + "content": "close to zero, so", + "type": "text" + }, + { + "bbox": [ + 174, + 429, + 244, + 442 + ], + "score": 0.93, + "content": "\\lVert \\Delta \\theta _ { D } \\rVert < \\lVert \\delta \\theta _ { D } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 429, + 373, + 442 + ], + "score": 1.0, + "content": "under our assumptions of small", + "type": "text" + }, + { + "bbox": [ + 374, + 430, + 412, + 441 + ], + "score": 0.59, + "content": "\\Delta z , \\Delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 429, + 431, + 442 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 431, + 430, + 448, + 441 + ], + "score": 0.9, + "content": "\\delta \\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 429, + 452, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 396, + 507, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 506, + 483 + ], + "lines": [ + { + "bbox": [ + 112, + 444, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 112, + 444, + 250, + 475 + ], + "score": 1.0, + "content": "mportantly, the bigger the product . Moreover, bigger step increases", + "type": "text" + }, + { + "bbox": [ + 251, + 446, + 289, + 462 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z } \\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 444, + 387, + 475 + ], + "score": 1.0, + "content": "is, the more robust the id gap between updating", + "type": "text" + }, + { + "bbox": [ + 397, + 444, + 415, + 475 + ], + "score": 1.0, + "content": "qual and", + "type": "text" + }, + { + "bbox": [ + 424, + 444, + 506, + 475 + ], + "score": 1.0, + "content": "is to the error from, further facilitating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 424, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 112, + 470 + ], + "score": 0.31, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 461, + 396, + 470 + ], + "score": 0.43, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 461, + 424, + 470 + ], + "score": 0.53, + "content": "\\mathbf { G }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 472, + 420, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 420, + 484 + ], + "score": 1.0, + "content": "convergence according to Heusel et al. (2017). Overall, our analysis suggests:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 444, + 506, + 484 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 491, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 129, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 129, + 491, + 392, + 506 + ], + "score": 1.0, + "content": "1. More than one gradient descent step may not be helpful, since", + "type": "text" + }, + { + "bbox": [ + 392, + 493, + 407, + 502 + ], + "score": 0.85, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "from multiple GD steps", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 502, + 303, + 519 + ], + "spans": [ + { + "bbox": [ + 141, + 502, + 279, + 517 + ], + "score": 1.0, + "content": "may deviate from the direction of", + "type": "text" + }, + { + "bbox": [ + 279, + 503, + 301, + 519 + ], + "score": 0.93, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 502, + 303, + 517 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 520, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 128, + 520, + 198, + 535 + ], + "score": 1.0, + "content": "2. Large step of", + "type": "text" + }, + { + "bbox": [ + 198, + 522, + 212, + 531 + ], + "score": 0.87, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 520, + 505, + 535 + ], + "score": 1.0, + "content": "is more helpful in facilitating convergence by widening the gap between", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 532, + 297, + 544 + ], + "spans": [ + { + "bbox": [ + 142, + 532, + 151, + 542 + ], + "score": 0.34, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 532, + 168, + 544 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 532, + 178, + 542 + ], + "score": 0.46, + "content": "\\mathbf { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 532, + 297, + 544 + ], + "score": 1.0, + "content": "updates (Heusel et al., 2017).", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 128, + 547, + 229, + 560 + ], + "score": 1.0, + "content": "3. However, the step of", + "type": "text" + }, + { + "bbox": [ + 230, + 547, + 244, + 558 + ], + "score": 0.86, + "content": "\\Delta z", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "cannot be too large. In addition to the linear approximation we", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 557, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 141, + 557, + 505, + 572 + ], + "score": 1.0, + "content": "used throughout our analysis, the approximate SGA breaks down when eq.21 is strongly", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 569, + 485, + 587 + ], + "spans": [ + { + "bbox": [ + 142, + 569, + 342, + 587 + ], + "score": 1.0, + "content": "violated when “overshoot” brings the gradients at", + "type": "text" + }, + { + "bbox": [ + 343, + 569, + 368, + 585 + ], + "score": 0.94, + "content": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 569, + 461, + 587 + ], + "score": 1.0, + "content": "to the opposite sign of", + "type": "text" + }, + { + "bbox": [ + 461, + 569, + 483, + 585 + ], + "score": 0.95, + "content": "\\frac { \\partial f ( z ) } { \\partial z }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 569, + 485, + 587 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + } + ], + "index": 30, + "bbox_fs": [ + 128, + 491, + 505, + 587 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 599, + 342, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 598, + 342, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 342, + 615 + ], + "score": 1.0, + "content": "C POISSON LIKELIHOOD FROM HINGE LOSS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 639 + ], + "score": 1.0, + "content": "Here we provide a probabilistic interpretation of the hinge loss for the generator, which leads natu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "rally to the scenario of a family of discriminators. Although this interpretation is not necessary for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 647, + 494, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 494, + 661 + ], + "score": 1.0, + "content": "our current algorithm, it may provides useful guidance for incorporating multiple discriminators.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 625, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 663, + 505, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 663, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 202, + 677 + ], + "score": 1.0, + "content": "We introduce the label", + "type": "text" + }, + { + "bbox": [ + 202, + 665, + 229, + 674 + ], + "score": 0.9, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 663, + 302, + 677 + ], + "score": 1.0, + "content": "for real data and", + "type": "text" + }, + { + "bbox": [ + 302, + 665, + 329, + 675 + ], + "score": 0.9, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 663, + 505, + 677 + ], + "score": 1.0, + "content": "fake samples. This section shows that the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 675, + 189, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 189, + 687 + ], + "score": 1.0, + "content": "generator hinge loss", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 663, + 505, + 687 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 686, + 344, + 699 + ], + "lines": [ + { + "bbox": [ + 268, + 686, + 344, + 699 + ], + "spans": [ + { + "bbox": [ + 268, + 686, + 344, + 699 + ], + "score": 0.93, + "content": "L _ { G } = - D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "5e64840cde5a5c641e9934aeafb0830a37f1c284d9c281b4f67191fac2af05dc.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 268, + 686, + 344, + 699 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 702, + 331, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 701, + 331, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 331, + 716 + ], + "score": 1.0, + "content": "can be interpreted as a negative log-likelihood function:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 701, + 331, + 716 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 720, + 366, + 733 + ], + "lines": [ + { + "bbox": [ + 245, + 720, + 366, + 733 + ], + "spans": [ + { + "bbox": [ + 245, + 720, + 366, + 733 + ], + "score": 0.92, + "content": "L _ { G } = - \\ln p ( t = 1 ; D , G ( z ) )", + "type": "interline_equation", + "image_path": "755e51838e95d4086e4f2d4e3f6d5584b88bafa3dac29a07a08babae1248718b.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 245, + 720, + 366, + 733 + ], + "spans": [], + "index": 42 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 129, + 96 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 82, + 201, + 95 + ], + "score": 0.91, + "content": "p ( t = 1 ; z , D , G )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 81, + 375, + 96 + ], + "score": 1.0, + "content": "is the probability that the generated image", + "type": "text" + }, + { + "bbox": [ + 375, + 83, + 397, + 95 + ], + "score": 0.92, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "can fool the discriminator", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 92, + 122, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 116, + 104 + ], + "score": 0.77, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 92, + 122, + 106 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 506, + 144 + ], + "lines": [ + { + "bbox": [ + 106, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "The original GAN’s discriminator can be interpreted as outputting a Bernoulli distribution", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 120, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 232, + 134 + ], + "score": 0.9, + "content": "p ( t ; \\beta _ { G } ) \\mathbf { \\bar { \\alpha } } = \\mathbf { \\alpha } \\beta _ { G } ^ { t } \\cdot ( 1 - \\beta _ { G } ) ^ { 1 - t }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 120, + 374, + 135 + ], + "score": 1.0, + "content": ". In this case, if we parameterise", + "type": "text" + }, + { + "bbox": [ + 374, + 121, + 443, + 133 + ], + "score": 0.93, + "content": "\\beta _ { G } \\ \\bar { = } \\ D \\left( G ( z ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 120, + 506, + 135 + ], + "score": 1.0, + "content": ", the generator", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 243, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 243, + 144 + ], + "score": 1.0, + "content": "loss is the negative log-likelihood", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 148, + 456, + 163 + ], + "lines": [ + { + "bbox": [ + 155, + 148, + 456, + 163 + ], + "spans": [ + { + "bbox": [ + 155, + 148, + 456, + 163 + ], + "score": 0.89, + "content": "- \\ln P \\big ( t = 1 ; D , G ( z ) \\big ) = - \\ln p ( t = 1 ; \\beta _ { G } ) = - \\ln \\beta _ { G } = - \\ln D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "ebe3d36a3729558f24b9cb6f44eeb628b0b67246301244d5f6ca76a9dfff6414.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 155, + 148, + 456, + 163 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "score": 1.0, + "content": "Bernoulli, however, is not the only valid choice as the discriminator’s output distribution. Instead of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 185, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 173, + 196 + ], + "score": 1.0, + "content": "sampling “1” or", + "type": "text" + }, + { + "bbox": [ + 173, + 185, + 187, + 195 + ], + "score": 0.79, + "content": " { { } ^ { 6 } } { 0 ^ { 9 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 185, + 505, + 196 + ], + "score": 1.0, + "content": ", we assume that there are many identical discriminators that can independently", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 343, + 208 + ], + "score": 1.0, + "content": "vote to reject an input sample as fake. The number of votes", + "type": "text" + }, + { + "bbox": [ + 343, + 196, + 350, + 205 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "in a given interval can be described by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 367, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 257, + 218 + ], + "score": 1.0, + "content": "a Poisson distribution with parameter", + "type": "text" + }, + { + "bbox": [ + 258, + 207, + 265, + 216 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 206, + 367, + 218 + ], + "score": 1.0, + "content": "with the following PMF:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 222, + 342, + 249 + ], + "lines": [ + { + "bbox": [ + 268, + 222, + 342, + 249 + ], + "spans": [ + { + "bbox": [ + 268, + 222, + 342, + 249 + ], + "score": 0.95, + "content": "p ( k ; \\lambda ) = \\frac { \\lambda ^ { k } e ^ { - \\lambda } } { k ! }", + "type": "interline_equation", + "image_path": "573cd2159ad10fe7c4e31950d16db1c118bbf937fdb1deeca3c568b63402b823.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 268, + 222, + 342, + 249 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 504, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 482, + 273 + ], + "score": 1.0, + "content": "The probability that a generated image can fool all the discriminators is the probability of", + "type": "text" + }, + { + "bbox": [ + 482, + 260, + 504, + 271 + ], + "score": 0.91, + "content": "G ( z )", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 270, + 229, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 229, + 282 + ], + "score": 1.0, + "content": "receiving no vote for rejection", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 280, + 344, + 295 + ], + "lines": [ + { + "bbox": [ + 266, + 280, + 344, + 295 + ], + "spans": [ + { + "bbox": [ + 266, + 280, + 344, + 295 + ], + "score": 0.92, + "content": "p ( k = 0 ; \\lambda ) = e ^ { - \\lambda }", + "type": "interline_equation", + "image_path": "a64e4aa0d35d4a74b8b0ce7c8219d18a532639a209e45b708027d63b0f26d3d9.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 266, + 280, + 344, + 295 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 506, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 506, + 311 + ], + "score": 1.0, + "content": "Therefore, we have the following negative log-likelihood as the generator loss if we parameterise", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 306, + 178, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 173, + 320 + ], + "score": 0.92, + "content": "\\lambda = - D \\left( G ( z ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 306, + 178, + 322 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 325, + 425, + 340 + ], + "lines": [ + { + "bbox": [ + 186, + 325, + 425, + 340 + ], + "spans": [ + { + "bbox": [ + 186, + 325, + 425, + 340 + ], + "score": 0.9, + "content": "- \\ln p \\big ( k = 0 ; D , G ( z ) \\big ) = - \\ln p ( k = 0 ; \\lambda ) = - D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "3d3841bcb9452892eb0bbfa152b70e2643e23e6889ec6905dd315b3e7dd4720c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 186, + 325, + 425, + 340 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 504, + 368 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 273, + 358 + ], + "score": 1.0, + "content": "This interpretation has a caveat that when", + "type": "text" + }, + { + "bbox": [ + 273, + 345, + 331, + 357 + ], + "score": 0.93, + "content": "D \\left( G ( z ) \\right) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "the Poisson distribution is not well defined.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 309, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 309, + 369 + ], + "score": 1.0, + "content": "However, in general the discriminator’s hinge loss", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 371, + 423, + 387 + ], + "lines": [ + { + "bbox": [ + 188, + 371, + 423, + 387 + ], + "spans": [ + { + "bbox": [ + 188, + 371, + 423, + 387 + ], + "score": 0.89, + "content": "{ \\cal L } _ { D } = - \\operatorname * { m i n } \\left( 0 , - 1 + D ( x ) \\right) - \\operatorname * { m i n } \\left( 0 , - 1 - D ( G ( z ) ) \\right)", + "type": "interline_equation", + "image_path": "f506e926681df9be3127dca9453aa7f63c40e5f7a47543976a043e5dd36fcbad.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 188, + 371, + 423, + 387 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 245, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 246, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 136, + 407 + ], + "score": 1.0, + "content": "pushes", + "type": "text" + }, + { + "bbox": [ + 136, + 392, + 194, + 405 + ], + "score": 0.92, + "content": "D \\left( G ( z ) \\right) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 392, + 246, + 407 + ], + "score": 1.0, + "content": "via training.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 419, + 393, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 394, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 394, + 435 + ], + "score": 1.0, + "content": "D DETAILS IN COMPUTING DISTANCES IN FIGURE 5 A", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 206, + 458 + ], + "score": 1.0, + "content": "For a temporal sequence", + "type": "text" + }, + { + "bbox": [ + 206, + 447, + 266, + 457 + ], + "score": 0.9, + "content": "x _ { 1 } , x _ { 2 } , \\ldots , x _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 444, + 316, + 458 + ], + "score": 1.0, + "content": "(changes of", + "type": "text" + }, + { + "bbox": [ + 316, + 447, + 322, + 455 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 444, + 334, + 458 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 334, + 445, + 354, + 457 + ], + "score": 0.92, + "content": "f ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 444, + 505, + 458 + ], + "score": 1.0, + "content": "at each training step in this paper), to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "normalise its variance while accounting for the non-stationarity, we process it as follows. We first", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 467, + 421, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 406, + 478 + ], + "score": 1.0, + "content": "compute the moving average and standard deviation over a window of size", + "type": "text" + }, + { + "bbox": [ + 406, + 467, + 416, + 477 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 468, + 421, + 478 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 483, + 376, + 559 + ], + "lines": [ + { + "bbox": [ + 235, + 483, + 376, + 559 + ], + "spans": [ + { + "bbox": [ + 235, + 483, + 376, + 559 + ], + "score": 0.92, + "content": "\\begin{array} { l } { \\displaystyle \\mu _ { t } = \\frac { 1 } { N } \\sum _ { u = t } ^ { t + N - 1 } x _ { u } } \\\\ { \\displaystyle \\sigma _ { t } = \\sqrt { \\frac { 1 } { N - 1 } \\sum _ { u = t } ^ { t + N - 1 } ( x _ { u } - \\mu _ { u } ) ^ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "b0054f0e51f8d020f82fc7d0c8c600504cd099f7774e67ecc59e938693dca699.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 483, + 376, + 521.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 235, + 521.0, + 376, + 559.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 238, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 239, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 239, + 576 + ], + "score": 1.0, + "content": "Then normalise the sequence as:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 287, + 572, + 324, + 595 + ], + "lines": [ + { + "bbox": [ + 287, + 572, + 324, + 595 + ], + "spans": [ + { + "bbox": [ + 287, + 572, + 324, + 595 + ], + "score": 0.91, + "content": "\\bar { x } _ { t } = \\frac { x _ { t } } { \\sigma _ { t } }", + "type": "interline_equation", + "image_path": "e90cbb7d2f2f1acf6e5335ac6e4d56ab6f2452c87406e52e43ed256b920d562c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 287, + 572, + 324, + 595 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 187, + 609 + ], + "score": 1.0, + "content": "The result in Figure", + "type": "text" + }, + { + "bbox": [ + 188, + 597, + 202, + 607 + ], + "score": 0.27, + "content": "{ \\bf 5 a }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 596, + 448, + 609 + ], + "score": 1.0, + "content": "is robust to the choice of window size. Our experiments with", + "type": "text" + }, + { + "bbox": [ + 449, + 597, + 459, + 606 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "from 10 to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 607, + 239, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 239, + 620 + ], + "score": 1.0, + "content": "50 yielded visually similar plots.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 106, + 634, + 346, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 347, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 347, + 649 + ], + "score": 1.0, + "content": "E EXPERIMENTS WITH DCGAN AND CIFAR", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "To test if latent optimisation works with models at more moderate scales, we applied it on SN-GANs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "(Miyato et al., 2018). Although our experiments on this model are less thorough than in the main", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "paper with BigGAN-deep, we hope to provide basic guidelines for researchers interested in applying", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 693, + 261, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 261, + 705 + ], + "score": 1.0, + "content": "latent optimisation on smaller models.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "The experiments follows the same basic setup and hyper-parameter settings as the CS-GAN in Wu", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "et al. (2019). There is no class conditioning in this model. For NGD, we found a smaller damping", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 129, + 96 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 82, + 201, + 95 + ], + "score": 0.91, + "content": "p ( t = 1 ; z , D , G )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 81, + 375, + 96 + ], + "score": 1.0, + "content": "is the probability that the generated image", + "type": "text" + }, + { + "bbox": [ + 375, + 83, + 397, + 95 + ], + "score": 0.92, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "can fool the discriminator", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 92, + 122, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 116, + 104 + ], + "score": 0.77, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 92, + 122, + 106 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 506, + 144 + ], + "lines": [ + { + "bbox": [ + 106, + 109, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 109, + 505, + 123 + ], + "score": 1.0, + "content": "The original GAN’s discriminator can be interpreted as outputting a Bernoulli distribution", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 120, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 232, + 134 + ], + "score": 0.9, + "content": "p ( t ; \\beta _ { G } ) \\mathbf { \\bar { \\alpha } } = \\mathbf { \\alpha } \\beta _ { G } ^ { t } \\cdot ( 1 - \\beta _ { G } ) ^ { 1 - t }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 120, + 374, + 135 + ], + "score": 1.0, + "content": ". In this case, if we parameterise", + "type": "text" + }, + { + "bbox": [ + 374, + 121, + 443, + 133 + ], + "score": 0.93, + "content": "\\beta _ { G } \\ \\bar { = } \\ D \\left( G ( z ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 120, + 506, + 135 + ], + "score": 1.0, + "content": ", the generator", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 243, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 243, + 144 + ], + "score": 1.0, + "content": "loss is the negative log-likelihood", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 109, + 506, + 144 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 148, + 456, + 163 + ], + "lines": [ + { + "bbox": [ + 155, + 148, + 456, + 163 + ], + "spans": [ + { + "bbox": [ + 155, + 148, + 456, + 163 + ], + "score": 0.89, + "content": "- \\ln P \\big ( t = 1 ; D , G ( z ) \\big ) = - \\ln p ( t = 1 ; \\beta _ { G } ) = - \\ln \\beta _ { G } = - \\ln D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "ebe3d36a3729558f24b9cb6f44eeb628b0b67246301244d5f6ca76a9dfff6414.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 155, + 148, + 456, + 163 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 173, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "score": 1.0, + "content": "Bernoulli, however, is not the only valid choice as the discriminator’s output distribution. Instead of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 185, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 173, + 196 + ], + "score": 1.0, + "content": "sampling “1” or", + "type": "text" + }, + { + "bbox": [ + 173, + 185, + 187, + 195 + ], + "score": 0.79, + "content": " { { } ^ { 6 } } { 0 ^ { 9 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 185, + 505, + 196 + ], + "score": 1.0, + "content": ", we assume that there are many identical discriminators that can independently", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 343, + 208 + ], + "score": 1.0, + "content": "vote to reject an input sample as fake. The number of votes", + "type": "text" + }, + { + "bbox": [ + 343, + 196, + 350, + 205 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "in a given interval can be described by", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 367, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 257, + 218 + ], + "score": 1.0, + "content": "a Poisson distribution with parameter", + "type": "text" + }, + { + "bbox": [ + 258, + 207, + 265, + 216 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 206, + 367, + 218 + ], + "score": 1.0, + "content": "with the following PMF:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 173, + 506, + 218 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 222, + 342, + 249 + ], + "lines": [ + { + "bbox": [ + 268, + 222, + 342, + 249 + ], + "spans": [ + { + "bbox": [ + 268, + 222, + 342, + 249 + ], + "score": 0.95, + "content": "p ( k ; \\lambda ) = \\frac { \\lambda ^ { k } e ^ { - \\lambda } } { k ! }", + "type": "interline_equation", + "image_path": "573cd2159ad10fe7c4e31950d16db1c118bbf937fdb1deeca3c568b63402b823.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 268, + 222, + 342, + 249 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 504, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 482, + 273 + ], + "score": 1.0, + "content": "The probability that a generated image can fool all the discriminators is the probability of", + "type": "text" + }, + { + "bbox": [ + 482, + 260, + 504, + 271 + ], + "score": 0.91, + "content": "G ( z )", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 270, + 229, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 229, + 282 + ], + "score": 1.0, + "content": "receiving no vote for rejection", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 256, + 504, + 282 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 280, + 344, + 295 + ], + "lines": [ + { + "bbox": [ + 266, + 280, + 344, + 295 + ], + "spans": [ + { + "bbox": [ + 266, + 280, + 344, + 295 + ], + "score": 0.92, + "content": "p ( k = 0 ; \\lambda ) = e ^ { - \\lambda }", + "type": "interline_equation", + "image_path": "a64e4aa0d35d4a74b8b0ce7c8219d18a532639a209e45b708027d63b0f26d3d9.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 266, + 280, + 344, + 295 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 506, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 506, + 311 + ], + "score": 1.0, + "content": "Therefore, we have the following negative log-likelihood as the generator loss if we parameterise", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 306, + 178, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 173, + 320 + ], + "score": 0.92, + "content": "\\lambda = - D \\left( G ( z ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 306, + 178, + 322 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 296, + 506, + 322 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 325, + 425, + 340 + ], + "lines": [ + { + "bbox": [ + 186, + 325, + 425, + 340 + ], + "spans": [ + { + "bbox": [ + 186, + 325, + 425, + 340 + ], + "score": 0.9, + "content": "- \\ln p \\big ( k = 0 ; D , G ( z ) \\big ) = - \\ln p ( k = 0 ; \\lambda ) = - D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "3d3841bcb9452892eb0bbfa152b70e2643e23e6889ec6905dd315b3e7dd4720c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 186, + 325, + 425, + 340 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 504, + 368 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 273, + 358 + ], + "score": 1.0, + "content": "This interpretation has a caveat that when", + "type": "text" + }, + { + "bbox": [ + 273, + 345, + 331, + 357 + ], + "score": 0.93, + "content": "D \\left( G ( z ) \\right) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "the Poisson distribution is not well defined.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 309, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 309, + 369 + ], + "score": 1.0, + "content": "However, in general the discriminator’s hinge loss", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 345, + 505, + 369 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 371, + 423, + 387 + ], + "lines": [ + { + "bbox": [ + 188, + 371, + 423, + 387 + ], + "spans": [ + { + "bbox": [ + 188, + 371, + 423, + 387 + ], + "score": 0.89, + "content": "{ \\cal L } _ { D } = - \\operatorname * { m i n } \\left( 0 , - 1 + D ( x ) \\right) - \\operatorname * { m i n } \\left( 0 , - 1 - D ( G ( z ) ) \\right)", + "type": "interline_equation", + "image_path": "f506e926681df9be3127dca9453aa7f63c40e5f7a47543976a043e5dd36fcbad.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 188, + 371, + 423, + 387 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 245, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 246, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 136, + 407 + ], + "score": 1.0, + "content": "pushes", + "type": "text" + }, + { + "bbox": [ + 136, + 392, + 194, + 405 + ], + "score": 0.92, + "content": "D \\left( G ( z ) \\right) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 392, + 246, + 407 + ], + "score": 1.0, + "content": "via training.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 392, + 246, + 407 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 419, + 393, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 394, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 394, + 435 + ], + "score": 1.0, + "content": "D DETAILS IN COMPUTING DISTANCES IN FIGURE 5 A", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 206, + 458 + ], + "score": 1.0, + "content": "For a temporal sequence", + "type": "text" + }, + { + "bbox": [ + 206, + 447, + 266, + 457 + ], + "score": 0.9, + "content": "x _ { 1 } , x _ { 2 } , \\ldots , x _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 444, + 316, + 458 + ], + "score": 1.0, + "content": "(changes of", + "type": "text" + }, + { + "bbox": [ + 316, + 447, + 322, + 455 + ], + "score": 0.75, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 444, + 334, + 458 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 334, + 445, + 354, + 457 + ], + "score": 0.92, + "content": "f ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 444, + 505, + 458 + ], + "score": 1.0, + "content": "at each training step in this paper), to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "normalise its variance while accounting for the non-stationarity, we process it as follows. We first", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 467, + 421, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 406, + 478 + ], + "score": 1.0, + "content": "compute the moving average and standard deviation over a window of size", + "type": "text" + }, + { + "bbox": [ + 406, + 467, + 416, + 477 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 468, + 421, + 478 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 444, + 505, + 478 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 483, + 376, + 559 + ], + "lines": [ + { + "bbox": [ + 235, + 483, + 376, + 559 + ], + "spans": [ + { + "bbox": [ + 235, + 483, + 376, + 559 + ], + "score": 0.92, + "content": "\\begin{array} { l } { \\displaystyle \\mu _ { t } = \\frac { 1 } { N } \\sum _ { u = t } ^ { t + N - 1 } x _ { u } } \\\\ { \\displaystyle \\sigma _ { t } = \\sqrt { \\frac { 1 } { N - 1 } \\sum _ { u = t } ^ { t + N - 1 } ( x _ { u } - \\mu _ { u } ) ^ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "b0054f0e51f8d020f82fc7d0c8c600504cd099f7774e67ecc59e938693dca699.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 483, + 376, + 521.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 235, + 521.0, + 376, + 559.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 238, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 239, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 239, + 576 + ], + "score": 1.0, + "content": "Then normalise the sequence as:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 560, + 239, + 576 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 287, + 572, + 324, + 595 + ], + "lines": [ + { + "bbox": [ + 287, + 572, + 324, + 595 + ], + "spans": [ + { + "bbox": [ + 287, + 572, + 324, + 595 + ], + "score": 0.91, + "content": "\\bar { x } _ { t } = \\frac { x _ { t } } { \\sigma _ { t } }", + "type": "interline_equation", + "image_path": "e90cbb7d2f2f1acf6e5335ac6e4d56ab6f2452c87406e52e43ed256b920d562c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 287, + 572, + 324, + 595 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 187, + 609 + ], + "score": 1.0, + "content": "The result in Figure", + "type": "text" + }, + { + "bbox": [ + 188, + 597, + 202, + 607 + ], + "score": 0.27, + "content": "{ \\bf 5 a }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 596, + 448, + 609 + ], + "score": 1.0, + "content": "is robust to the choice of window size. Our experiments with", + "type": "text" + }, + { + "bbox": [ + 449, + 597, + 459, + 606 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "from 10 to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 607, + 239, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 239, + 620 + ], + "score": 1.0, + "content": "50 yielded visually similar plots.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 596, + 505, + 620 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 634, + 346, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 347, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 347, + 649 + ], + "score": 1.0, + "content": "E EXPERIMENTS WITH DCGAN AND CIFAR", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "To test if latent optimisation works with models at more moderate scales, we applied it on SN-GANs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "(Miyato et al., 2018). Although our experiments on this model are less thorough than in the main", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "paper with BigGAN-deep, we hope to provide basic guidelines for researchers interested in applying", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 693, + 261, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 261, + 705 + ], + "score": 1.0, + "content": "latent optimisation on smaller models.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 660, + 505, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "The experiments follows the same basic setup and hyper-parameter settings as the CS-GAN in Wu", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "et al. (2019). There is no class conditioning in this model. For NGD, we found a smaller damping", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 133, + 96 + ], + "score": 1.0, + "content": "factor", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 133, + 82, + 170, + 94 + ], + "score": 0.89, + "content": "\\beta = 0 . 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 170, + 81, + 183, + 96 + ], + "score": 1.0, + "content": ", a", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 183, + 82, + 199, + 95 + ], + "score": 0.91, + "content": "\\| z \\|", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 199, + 81, + 371, + 96 + ], + "score": 1.0, + "content": "regulariser weight of 3.0 (the same as in", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 371, + 83, + 387, + 93 + ], + "score": 0.27, + "content": "\\mathbf { W } \\mathbf { u }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 388, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "et al. 2019), combined with", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 151, + 106 + ], + "score": 1.0, + "content": "optimising", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 152, + 93, + 171, + 104 + ], + "score": 0.86, + "content": "7 0 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 172, + 93, + 295, + 106 + ], + "score": 1.0, + "content": "of the latent source (instead of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 295, + 93, + 315, + 104 + ], + "score": 0.89, + "content": "5 0 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 315, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "for BigGAN-deep) worked best for SN-GANs.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 709, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 133, + 96 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 133, + 82, + 170, + 94 + ], + "score": 0.89, + "content": "\\beta = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 81, + 183, + 96 + ], + "score": 1.0, + "content": ", a", + "type": "text" + }, + { + "bbox": [ + 183, + 82, + 199, + 95 + ], + "score": 0.91, + "content": "\\| z \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 81, + 371, + 96 + ], + "score": 1.0, + "content": "regulariser weight of 3.0 (the same as in", + "type": "text" + }, + { + "bbox": [ + 371, + 83, + 387, + 93 + ], + "score": 0.27, + "content": "\\mathbf { W } \\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "et al. 2019), combined with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 151, + 106 + ], + "score": 1.0, + "content": "optimising", + "type": "text" + }, + { + "bbox": [ + 152, + 93, + 171, + 104 + ], + "score": 0.86, + "content": "7 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 93, + 295, + 106 + ], + "score": 1.0, + "content": "of the latent source (instead of", + "type": "text" + }, + { + "bbox": [ + 295, + 93, + 315, + 104 + ], + "score": 0.89, + "content": "5 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "for BigGAN-deep) worked best for SN-GANs.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "In addition, we found running extra latent optimisation steps benefited evaluation, so we use ten steps", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "score": 1.0, + "content": "of latent optimisation in evaluation for results in this section, although the models were still trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "with a single optimisation step. We reckon that smaller models might not be “over-parametrised”", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 350, + 156 + ], + "score": 1.0, + "content": "enough to fully amortise the computation from optimising", + "type": "text" + }, + { + "bbox": [ + 350, + 146, + 357, + 153 + ], + "score": 0.65, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 144, + 505, + 156 + ], + "score": 1.0, + "content": ", which can then further exploit the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "architecture in evaluation time. On the other hand, the overhead from running multiple iterations of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "latent optimisation is relatively small at this scale. We aim to further investigate this difference in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 166, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 166, + 188 + ], + "score": 1.0, + "content": "future studies.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Table 2 shows the FID and IS alongside SN-GAN and CS-CAN which used the same architec-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "ture. Here we observe similarly significant improvement over the baseline SN-GAN model, with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 185, + 228 + ], + "score": 1.0, + "content": "an improvement of", + "type": "text" + }, + { + "bbox": [ + 185, + 215, + 212, + 226 + ], + "score": 0.88, + "content": "1 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 214, + 252, + 228 + ], + "score": 1.0, + "content": "in IS and", + "type": "text" + }, + { + "bbox": [ + 252, + 215, + 279, + 226 + ], + "score": 0.88, + "content": "3 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "in FID. Figure 9 shows random samples from these two", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 475, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 475, + 239 + ], + "score": 1.0, + "content": "models. Overall, samples from LOGAN (NGD) have higher contrasts and sharper contours.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "table", + "bbox": [ + 192, + 294, + 417, + 330 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 256, + 506, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "Table 2: Comparison of Scores. The first and second columns are reproduced from Miyato et al.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 268, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 280 + ], + "score": 1.0, + "content": "(2018) and Wu et al. (2019) respectively. We report the Inception Score (IS, higher is better, Sali-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 279, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 470, + 291 + ], + "score": 1.0, + "content": "mans et al. 2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 192, + 294, + 417, + 330 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 192, + 294, + 417, + 330 + ], + "spans": [ + { + "bbox": [ + 192, + 294, + 417, + 330 + ], + "score": 0.962, + "html": "
SN-GANCS-GANLOGAN (NGD)
FID29.323.1 ± 0.517.7 ± 0.4
IS7.42 ± 0.087.80 ± 0.058.67 ± 0.05
", + "type": "table", + "image_path": "8252bfa40a1cf81e7dfcd6a4941fb2e9cf65565f39901908143bf6a503a07345.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 294, + 417, + 312.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 192, + 312.0, + 417, + 330.0 + ], + "spans": [], + "index": 17 + } + ] + } + ], + "index": 15.25 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 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": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "In addition, we found running extra latent optimisation steps benefited evaluation, so we use ten steps", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "score": 1.0, + "content": "of latent optimisation in evaluation for results in this section, although the models were still trained", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "with a single optimisation step. We reckon that smaller models might not be “over-parametrised”", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 350, + 156 + ], + "score": 1.0, + "content": "enough to fully amortise the computation from optimising", + "type": "text" + }, + { + "bbox": [ + 350, + 146, + 357, + 153 + ], + "score": 0.65, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 144, + 505, + 156 + ], + "score": 1.0, + "content": ", which can then further exploit the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "architecture in evaluation time. On the other hand, the overhead from running multiple iterations of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "latent optimisation is relatively small at this scale. We aim to further investigate this difference in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 166, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 166, + 188 + ], + "score": 1.0, + "content": "future studies.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 110, + 505, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Table 2 shows the FID and IS alongside SN-GAN and CS-CAN which used the same architec-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "ture. Here we observe similarly significant improvement over the baseline SN-GAN model, with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 185, + 228 + ], + "score": 1.0, + "content": "an improvement of", + "type": "text" + }, + { + "bbox": [ + 185, + 215, + 212, + 226 + ], + "score": 0.88, + "content": "1 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 214, + 252, + 228 + ], + "score": 1.0, + "content": "in IS and", + "type": "text" + }, + { + "bbox": [ + 252, + 215, + 279, + 226 + ], + "score": 0.88, + "content": "3 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "in FID. Figure 9 shows random samples from these two", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 475, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 475, + 239 + ], + "score": 1.0, + "content": "models. Overall, samples from LOGAN (NGD) have higher contrasts and sharper contours.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 192, + 505, + 239 + ] + }, + { + "type": "table", + "bbox": [ + 192, + 294, + 417, + 330 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 256, + 506, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "Table 2: Comparison of Scores. The first and second columns are reproduced from Miyato et al.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 268, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 280 + ], + "score": 1.0, + "content": "(2018) and Wu et al. (2019) respectively. We report the Inception Score (IS, higher is better, Sali-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 279, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 470, + 291 + ], + "score": 1.0, + "content": "mans et al. 2016) and Frechet Inception Distance (FID, lower is better, Heusel et al. 2017). ´", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 192, + 294, + 417, + 330 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 192, + 294, + 417, + 330 + ], + "spans": [ + { + "bbox": [ + 192, + 294, + 417, + 330 + ], + "score": 0.962, + "html": "
SN-GANCS-GANLOGAN (NGD)
FID29.323.1 ± 0.517.7 ± 0.4
IS7.42 ± 0.087.80 ± 0.058.67 ± 0.05
", + "type": "table", + "image_path": "8252bfa40a1cf81e7dfcd6a4941fb2e9cf65565f39901908143bf6a503a07345.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 294, + 417, + 312.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 192, + 312.0, + 417, + 330.0 + ], + "spans": [], + "index": 17 + } + ] + } + ], + "index": 15.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 84, + 489, + 702 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 84, + 489, + 702 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 84, + 489, + 702 + ], + "spans": [ + { + "bbox": [ + 120, + 84, + 489, + 702 + ], + "score": 0.974, + "type": "image", + "image_path": "08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 84, + 489, + 290.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 290.0, + 489, + 496.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 496.0, + 489, + 702.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 709, + 505, + 743 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "Figure 6: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly high inception scores.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 720, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 488, + 733 + ], + "score": 1.0, + "content": "Samples from the two panels were draw from truncations correspond to points C, D in figure", + "type": "text" + }, + { + "bbox": [ + 489, + 720, + 504, + 730 + ], + "score": 0.54, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 730, + 326, + 744 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 326, + 744 + ], + "score": 1.0, + "content": "respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 84, + 489, + 702 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 84, + 489, + 702 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 84, + 489, + 702 + ], + "spans": [ + { + "bbox": [ + 120, + 84, + 489, + 702 + ], + "score": 0.974, + "type": "image", + "image_path": "08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 84, + 489, + 290.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 290.0, + 489, + 496.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 496.0, + 489, + 702.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 709, + 505, + 743 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "Figure 6: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly high inception scores.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 720, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 488, + 733 + ], + "score": 1.0, + "content": "Samples from the two panels were draw from truncations correspond to points C, D in figure", + "type": "text" + }, + { + "bbox": [ + 489, + 720, + 504, + 730 + ], + "score": 0.54, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 730, + 326, + 744 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 326, + 744 + ], + "score": 1.0, + "content": "respectively. (FID/IS: (a) 27.97/259.4, (b) 8.19/259.9)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 88, + 498, + 679 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 88, + 498, + 679 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 88, + 498, + 679 + ], + "spans": [ + { + "bbox": [ + 113, + 88, + 498, + 679 + ], + "score": 0.973, + "type": "image", + "image_path": "85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 88, + 498, + 285.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 285.0, + 498, + 482.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 482.0, + 498, + 679.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 685, + 504, + 719 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "score": 1.0, + "content": "Figure 7: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly low FID. Samples", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 696, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 438, + 710 + ], + "score": 1.0, + "content": "from the two panels were draw from truncations correspond to points A, B in figure", + "type": "text" + }, + { + "bbox": [ + 438, + 697, + 452, + 707 + ], + "score": 0.47, + "content": "^ { 3 } \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 696, + 505, + 710 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 708, + 267, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 267, + 720 + ], + "score": 1.0, + "content": "(FID/IS: (a) 5.04/126.8, (b) 5.09/217.0)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 88, + 498, + 679 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 88, + 498, + 679 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 88, + 498, + 679 + ], + "spans": [ + { + "bbox": [ + 113, + 88, + 498, + 679 + ], + "score": 0.973, + "type": "image", + "image_path": "85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 88, + 498, + 285.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 285.0, + 498, + 482.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 482.0, + 498, + 679.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 685, + 504, + 719 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "score": 1.0, + "content": "Figure 7: Samples from BigGAN-deep (a) and LOGAN (b) with the similarly low FID. Samples", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 696, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 438, + 710 + ], + "score": 1.0, + "content": "from the two panels were draw from truncations correspond to points A, B in figure", + "type": "text" + }, + { + "bbox": [ + 438, + 697, + 452, + 707 + ], + "score": 0.47, + "content": "^ { 3 } \\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 696, + 505, + 710 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 708, + 267, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 267, + 720 + ], + "score": 1.0, + "content": "(FID/IS: (a) 5.04/126.8, (b) 5.09/217.0)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 96, + 464, + 408 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 96, + 464, + 408 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 96, + 464, + 408 + ], + "spans": [ + { + "bbox": [ + 146, + 96, + 464, + 408 + ], + "score": 0.975, + "type": "image", + "image_path": "a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 96, + 464, + 200.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 200.0, + 464, + 304.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 304.0, + 464, + 408.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 421, + 505, + 466 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "Figure 8: Truncation curves with additional baselines. In addition to the truncation curves reported", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 147, + 445 + ], + "score": 1.0, + "content": "in Figure", + "type": "text" + }, + { + "bbox": [ + 148, + 433, + 164, + 443 + ], + "score": 0.62, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 432, + 505, + 445 + ], + "score": 1.0, + "content": ", here we also include the Spectral-Normalised GAN (Miyato et al., 2018), Self-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "score": 1.0, + "content": "Attention GAN (Zhang et al., 2019), original BigGAN and BigGAN-deep as presented in Brock", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "score": 1.0, + "content": "et al. (2018).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 119, + 501, + 490, + 694 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 501, + 490, + 694 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 119, + 501, + 490, + 694 + ], + "spans": [ + { + "bbox": [ + 119, + 501, + 490, + 694 + ], + "score": 0.977, + "type": "image", + "image_path": "da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 119, + 501, + 490, + 565.3333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 119, + 565.3333333333334, + 490, + 629.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 119, + 629.6666666666667, + 490, + 694.0000000000001 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 172, + 703, + 438, + 716 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 171, + 702, + 439, + 718 + ], + "spans": [ + { + "bbox": [ + 171, + 702, + 439, + 718 + ], + "score": 1.0, + "content": "Figure 9: (a) Samples from SN-GAN. (b) Samples from LOGAN.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + } + ], + "index": 9.0 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 96, + 464, + 408 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 96, + 464, + 408 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 96, + 464, + 408 + ], + "spans": [ + { + "bbox": [ + 146, + 96, + 464, + 408 + ], + "score": 0.975, + "type": "image", + "image_path": "a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 96, + 464, + 200.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 200.0, + 464, + 304.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 304.0, + 464, + 408.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 421, + 505, + 466 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "Figure 8: Truncation curves with additional baselines. In addition to the truncation curves reported", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 147, + 445 + ], + "score": 1.0, + "content": "in Figure", + "type": "text" + }, + { + "bbox": [ + 148, + 433, + 164, + 443 + ], + "score": 0.62, + "content": "^ { 3 \\mathrm { ~ b ~ } }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 432, + 505, + 445 + ], + "score": 1.0, + "content": ", here we also include the Spectral-Normalised GAN (Miyato et al., 2018), Self-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "score": 1.0, + "content": "Attention GAN (Zhang et al., 2019), original BigGAN and BigGAN-deep as presented in Brock", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "score": 1.0, + "content": "et al. (2018).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 119, + 501, + 490, + 694 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 501, + 490, + 694 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 119, + 501, + 490, + 694 + ], + "spans": [ + { + "bbox": [ + 119, + 501, + 490, + 694 + ], + "score": 0.977, + "type": "image", + "image_path": "da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 119, + 501, + 490, + 565.3333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 119, + 565.3333333333334, + 490, + 629.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 119, + 629.6666666666667, + 490, + 694.0000000000001 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 172, + 703, + 438, + 716 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 171, + 702, + 439, + 718 + ], + "spans": [ + { + "bbox": [ + 171, + 702, + 439, + 718 + ], + "score": 1.0, + "content": "Figure 9: (a) Samples from SN-GAN. (b) Samples from LOGAN.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + } + ], + "index": 9.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rJeU_1SFvr/rJeU_1SFvr_model.json b/parse/train/rJeU_1SFvr/rJeU_1SFvr_model.json new file mode 100644 index 0000000000000000000000000000000000000000..a5f13393814fc4b87ed5f6ef99d2a66716e7ebff --- /dev/null +++ b/parse/train/rJeU_1SFvr/rJeU_1SFvr_model.json @@ -0,0 +1,26021 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 588, + 1302, + 588, + 1302, + 954, + 398, + 954 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1082, + 1405, + 1082, + 1405, + 1449, + 298, + 1449 + ], + "score": 0.981 + }, + { + "category_id": 0, + "poly": [ + 301, + 219, + 1402, + 219, + 1402, + 323, + 301, + 323 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 362, + 1522, + 1404, + 1522, + 1404, + 1792, + 362, + 1792 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 301, + 1972, + 1400, + 1972, + 1400, + 2034, + 301, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 300, + 1466, + 660, + 1466, + 660, + 1496, + 300, + 1496 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 1844, + 558, + 1844, + 558, + 1881, + 299, + 1881 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 299, + 1914, + 491, + 1914, + 491, + 1947, + 299, + 1947 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 302, + 1013, + 573, + 1013, + 573, + 1048, + 302, + 1048 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 773, + 520, + 927, + 520, + 927, + 553, + 773, + 553 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.637 + }, + { + "category_id": 13, + "poly": [ + 384, + 1974, + 420, + 1974, + 420, + 2003, + 384, + 2003 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 470, + 1974, + 505, + 1974, + 505, + 2003, + 470, + 2003 + ], + "score": 0.89, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 606, + 893, + 661, + 893, + 661, + 923, + 606, + 923 + ], + "score": 0.88, + "latex": "3 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 495, + 893, + 550, + 893, + 550, + 923, + 495, + 923 + ], + "score": 0.88, + "latex": "1 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 711, + 833, + 837, + 833, + 837, + 863, + 711, + 863 + ], + "score": 0.87, + "latex": "1 2 8 \\times 1 2 8 )" + }, + { + "category_id": 13, + "poly": [ + 384, + 2009, + 404, + 2009, + 404, + 2030, + 384, + 2030 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 586, + 2008, + 604, + 2008, + 604, + 2030, + 586, + 2030 + ], + "score": 0.78, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 392, + 1363, + 411, + 1363, + 411, + 1385, + 392, + 1385 + ], + "score": 0.73, + "latex": "z" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 215.0, + 1406.0, + 215.0, + 1406.0, + 274.0, + 292.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 273.0, + 857.0, + 273.0, + 857.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1841.0, + 561.0, + 1841.0, + 561.0, + 1888.0, + 291.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 495.0, + 1912.0, + 495.0, + 1951.0, + 294.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1010.0, + 579.0, + 1010.0, + 579.0, + 1057.0, + 294.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 516.0, + 934.0, + 516.0, + 934.0, + 559.0, + 768.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 841.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 589.0, + 1303.0, + 589.0, + 1303.0, + 623.0, + 394.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 618.0, + 1307.0, + 618.0, + 1307.0, + 657.0, + 393.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 649.0, + 1306.0, + 649.0, + 1306.0, + 684.0, + 393.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 682.0, + 1305.0, + 682.0, + 1305.0, + 714.0, + 395.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 710.0, + 1304.0, + 710.0, + 1304.0, + 746.0, + 393.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 741.0, + 1307.0, + 741.0, + 1307.0, + 776.0, + 394.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 772.0, + 1305.0, + 772.0, + 1305.0, + 807.0, + 394.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 803.0, + 1305.0, + 803.0, + 1305.0, + 839.0, + 394.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 830.0, + 710.0, + 830.0, + 710.0, + 868.0, + 393.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 830.0, + 1305.0, + 830.0, + 1305.0, + 868.0, + 838.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 863.0, + 1305.0, + 863.0, + 1305.0, + 898.0, + 394.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 893.0, + 494.0, + 893.0, + 494.0, + 928.0, + 394.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 893.0, + 605.0, + 893.0, + 605.0, + 928.0, + 551.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 893.0, + 1305.0, + 893.0, + 1305.0, + 928.0, + 662.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 922.0, + 1244.0, + 922.0, + 1244.0, + 960.0, + 394.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1083.0, + 1405.0, + 1083.0, + 1405.0, + 1117.0, + 296.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1112.0, + 1403.0, + 1112.0, + 1403.0, + 1149.0, + 292.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1176.0, + 1405.0, + 1176.0, + 1405.0, + 1210.0, + 295.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1203.0, + 1406.0, + 1203.0, + 1406.0, + 1245.0, + 292.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1275.0, + 292.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1267.0, + 1403.0, + 1267.0, + 1403.0, + 1301.0, + 295.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1295.0, + 1405.0, + 1295.0, + 1405.0, + 1334.0, + 292.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1326.0, + 1405.0, + 1326.0, + 1405.0, + 1363.0, + 293.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 391.0, + 1357.0, + 391.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1393.0, + 412.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 1405.0, + 1388.0, + 1405.0, + 1422.0, + 295.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 850.0, + 1420.0, + 850.0, + 1453.0, + 294.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1523.0, + 1404.0, + 1523.0, + 1404.0, + 1559.0, + 361.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1589.0, + 394.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1585.0, + 1304.0, + 1585.0, + 1304.0, + 1621.0, + 394.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1623.0, + 1405.0, + 1623.0, + 1405.0, + 1660.0, + 362.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1657.0, + 646.0, + 1657.0, + 646.0, + 1691.0, + 393.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1697.0, + 1406.0, + 1697.0, + 1406.0, + 1733.0, + 362.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1729.0, + 1406.0, + 1729.0, + 1406.0, + 1765.0, + 394.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1759.0, + 1262.0, + 1759.0, + 1262.0, + 1795.0, + 394.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1971.0, + 383.0, + 1971.0, + 383.0, + 2007.0, + 297.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1971.0, + 469.0, + 1971.0, + 469.0, + 2007.0, + 421.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 506.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2002.0, + 383.0, + 2002.0, + 383.0, + 2037.0, + 297.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 2002.0, + 585.0, + 2002.0, + 585.0, + 2037.0, + 405.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2037.0, + 605.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 681.0, + 407.0, + 681.0, + 442.0, + 312.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1464.0, + 663.0, + 1464.0, + 663.0, + 1498.0, + 296.0, + 1498.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1811, + 1405, + 1811, + 1405, + 1967, + 297, + 1967 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 312, + 844, + 1385, + 844, + 1385, + 1403, + 312, + 1403 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 320, + 223, + 1370, + 223, + 1370, + 687, + 320, + 687 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1594, + 1406, + 1594, + 1406, + 1705, + 297, + 1705 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 296, + 713, + 1406, + 713, + 1406, + 806, + 296, + 806 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 297, + 1441, + 1401, + 1441, + 1401, + 1536, + 297, + 1536 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 453, + 1989, + 1252, + 1989, + 1252, + 2042, + 453, + 2042 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 301, + 1750, + 776, + 1750, + 776, + 1782, + 301, + 1782 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1995, + 1400, + 1995, + 1400, + 2025, + 1366, + 2025 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.737 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 105, + 297, + 105 + ], + "score": 0.708 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.223 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 105, + 298, + 105 + ], + "score": 0.168 + }, + { + "category_id": 13, + "poly": [ + 298, + 1903, + 459, + 1903, + 459, + 1937, + 298, + 1937 + ], + "score": 0.93, + "latex": "x = G \\left( z ; \\theta _ { G } \\right)" + }, + { + "category_id": 13, + "poly": [ + 732, + 1595, + 1031, + 1595, + 1031, + 1639, + 732, + 1639 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\theta _ { D } ^ { \\prime } = \\theta _ { D } - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 578, + 1904, + 683, + 1904, + 683, + 1937, + 578, + 1937 + ], + "score": 0.92, + "latex": "x \\sim p ( x )" + }, + { + "category_id": 13, + "poly": [ + 397, + 1671, + 453, + 1671, + 453, + 1705, + 397, + 1705 + ], + "score": 0.92, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 687, + 1671, + 741, + 1671, + 741, + 1705, + 687, + 1705 + ], + "score": 0.92, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1602, + 1217, + 1602, + 1217, + 1636, + 1164, + 1636 + ], + "score": 0.92, + "latex": "p ( z )" + }, + { + "category_id": 13, + "poly": [ + 859, + 1639, + 999, + 1639, + 999, + 1675, + 859, + 1675 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { p ( x ) } \\left[ f ( x ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 901, + 1844, + 1009, + 1844, + 1009, + 1876, + 901, + 1876 + ], + "score": 0.91, + "latex": "D ( x ; \\theta _ { D } )" + }, + { + "category_id": 13, + "poly": [ + 890, + 1812, + 1049, + 1812, + 1049, + 1845, + 890, + 1845 + ], + "score": 0.91, + "latex": "x = G ( z ; \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1813, + 1392, + 1813, + 1392, + 1846, + 1287, + 1846 + ], + "score": 0.91, + "latex": "z \\sim p ( z )" + }, + { + "category_id": 14, + "poly": [ + 451, + 1989, + 1251, + 1989, + 1251, + 2042, + 451, + 2042 + ], + "score": 0.89, + "latex": "\\operatorname* { m i n } _ { \\theta _ { D } } \\operatorname* { m a x } _ { \\theta _ { G } } \\mathbb { E } _ { z \\sim p ( x ) } [ h _ { D } ( D ( x ; \\theta _ { D } ) ) ] + \\mathbb { E } _ { z \\sim p ( z ) } [ h _ { G } ( D ( G ( z ; \\theta _ { G } ) ; \\theta _ { D } ) ) ]" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1600, + 1108, + 1600, + 1108, + 1636, + 1052, + 1636 + ], + "score": 0.89, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1473, + 1402, + 1473, + 1402, + 1503, + 1358, + 1503 + ], + "score": 0.57, + "latex": "^ { 3 \\mathrm { ~ b ~ } }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 745, + 1402, + 745, + 1402, + 774, + 1357, + 774 + ], + "score": 0.54, + "latex": "^ { 3 \\mathrm { ~ b ~ } }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1475, + 1248, + 1475, + 1248, + 1502, + 1225, + 1502 + ], + "score": 0.29, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 841.0, + 1077.0, + 841.0, + 1077.0, + 1231.0, + 856.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1021.0, + 478.0, + 1021.0, + 478.0, + 1125.0, + 366.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1065.0, + 1332.0, + 1065.0, + 1332.0, + 1113.0, + 1257.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1171.0, + 1388.0, + 1171.0, + 1388.0, + 1363.0, + 1124.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1368.0, + 598.0, + 1368.0, + 598.0, + 1407.0, + 553.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1368.0, + 1152.0, + 1368.0, + 1152.0, + 1409.0, + 1100.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 545.0, + 839.0, + 545.0, + 839.0, + 658.0, + 316.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 655.0, + 599.0, + 655.0, + 599.0, + 691.0, + 554.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 654.0, + 1138.0, + 654.0, + 1138.0, + 690.0, + 1093.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 1403.0, + 712.0, + 1403.0, + 750.0, + 294.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 745.0, + 1356.0, + 745.0, + 1356.0, + 779.0, + 295.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 774.0, + 906.0, + 774.0, + 906.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1441.0, + 1405.0, + 1441.0, + 1405.0, + 1479.0, + 295.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1473.0, + 1224.0, + 1473.0, + 1224.0, + 1510.0, + 295.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1473.0, + 1357.0, + 1473.0, + 1357.0, + 1510.0, + 1249.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1510.0, + 1403.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1503.0, + 892.0, + 1503.0, + 892.0, + 1540.0, + 292.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1750.0, + 779.0, + 1750.0, + 779.0, + 1786.0, + 295.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1810.0, + 889.0, + 1810.0, + 889.0, + 1848.0, + 295.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1810.0, + 1286.0, + 1810.0, + 1286.0, + 1848.0, + 1050.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1810.0, + 1405.0, + 1810.0, + 1405.0, + 1848.0, + 1393.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1837.0, + 900.0, + 1837.0, + 900.0, + 1881.0, + 292.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1837.0, + 1406.0, + 1837.0, + 1406.0, + 1881.0, + 1010.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1870.0, + 1405.0, + 1870.0, + 1405.0, + 1909.0, + 294.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1902.0, + 297.0, + 1902.0, + 297.0, + 1940.0, + 292.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1902.0, + 577.0, + 1902.0, + 577.0, + 1940.0, + 460.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1902.0, + 1405.0, + 1902.0, + 1405.0, + 1940.0, + 684.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1933.0, + 835.0, + 1933.0, + 835.0, + 1969.0, + 294.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 731.0, + 1590.0, + 731.0, + 1647.0, + 292.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1590.0, + 1037.0, + 1590.0, + 1037.0, + 1647.0, + 1032.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1597.0, + 1051.0, + 1597.0, + 1051.0, + 1639.0, + 1041.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1597.0, + 1163.0, + 1597.0, + 1163.0, + 1639.0, + 1109.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1597.0, + 1405.0, + 1597.0, + 1405.0, + 1639.0, + 1218.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1634.0, + 858.0, + 1634.0, + 858.0, + 1679.0, + 292.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1634.0, + 1408.0, + 1634.0, + 1408.0, + 1679.0, + 1000.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 396.0, + 1668.0, + 396.0, + 1708.0, + 294.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1668.0, + 686.0, + 1668.0, + 686.0, + 1708.0, + 454.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1668.0, + 753.0, + 1668.0, + 753.0, + 1708.0, + 742.0, + 1708.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1602, + 1405, + 1602, + 1405, + 1854, + 296, + 1854 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 804, + 1404, + 804, + 1404, + 990, + 297, + 990 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 573, + 1404, + 573, + 1404, + 792, + 297, + 792 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1329, + 1404, + 1329, + 1404, + 1513, + 298, + 1513 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 417, + 413, + 1270, + 413, + 1270, + 513, + 417, + 513 + ], + "score": 0.959, + "html": "
BigGAN-DeepbaselineLOGAN (GD)LOGAN (NGD)
FID5.7 ± 0.34.92±0.054.86±0.093.36± 0.14
IS124.5 ± 2.0126.6 ± 1.3127.7 ± 3.5148.2 ±3.1
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1147, + 1404, + 1147, + 1404, + 1211, + 299, + 1211 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 664, + 1854, + 1036, + 1854, + 1036, + 1919, + 664, + 1919 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 1003, + 1400, + 1003, + 1400, + 1091, + 297, + 1091 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 559, + 1245, + 1135, + 1245, + 1135, + 1328, + 559, + 1328 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 600, + 1088, + 1096, + 1088, + 1096, + 1133, + 600, + 1133 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 300, + 1923, + 1401, + 1923, + 1401, + 1986, + 300, + 1986 + ], + "score": 0.934 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 1547, + 688, + 1547, + 688, + 1579, + 300, + 1579 + ], + "score": 0.912 + }, + { + "category_id": 6, + "poly": [ + 297, + 247, + 1403, + 247, + 1403, + 404, + 297, + 404 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1276, + 1400, + 1276, + 1400, + 1306, + 1366, + 1306 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1097, + 1400, + 1097, + 1400, + 1126, + 1366, + 1126 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1874, + 1400, + 1874, + 1400, + 1903, + 1366, + 1903 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.697 + }, + { + "category_id": 2, + "poly": [ + 318, + 2004, + 1371, + 2004, + 1371, + 2035, + 318, + 2035 + ], + "score": 0.667 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.363 + }, + { + "category_id": 1, + "poly": [ + 318, + 2004, + 1371, + 2004, + 1371, + 2035, + 318, + 2035 + ], + "score": 0.229 + }, + { + "category_id": 14, + "poly": [ + 662, + 1852, + 1040, + 1852, + 1040, + 1919, + 662, + 1919 + ], + "score": 0.94, + "latex": "\\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } \\qquad z ^ { \\prime } = z + \\Delta z" + }, + { + "category_id": 14, + "poly": [ + 560, + 1245, + 1138, + 1245, + 1138, + 1330, + 560, + 1330 + ], + "score": 0.94, + "latex": "g = \\left[ \\frac { \\partial L _ { D } ( z ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } \\right] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 435, + 1758, + 621, + 1758, + 621, + 1801, + 435, + 1801 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\nabla _ { z } f ( z ) = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 600, + 1085, + 1100, + 1085, + 1100, + 1131, + 600, + 1131 + ], + "score": 0.93, + "latex": "L ( z ) = \\left[ L _ { D } ( z ) , L _ { G } ( z ) \\right] ^ { T } = \\left[ f ( z ) , - f ( z ) \\right] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1794, + 1147, + 1794, + 1147, + 1828, + 1040, + 1828 + ], + "score": 0.92, + "latex": "z \\sim p ( z )" + }, + { + "category_id": 13, + "poly": [ + 615, + 759, + 670, + 759, + 670, + 792, + 615, + 792 + ], + "score": 0.92, + "latex": "f ( z )" + }, + { + "category_id": 13, + "poly": [ + 899, + 636, + 1021, + 636, + 1021, + 669, + 899, + 669 + ], + "score": 0.92, + "latex": "h _ { G } ( t ) = t" + }, + { + "category_id": 13, + "poly": [ + 702, + 636, + 846, + 636, + 846, + 669, + 702, + 669 + ], + "score": 0.91, + "latex": "h _ { D } ( t ) = - t" + }, + { + "category_id": 13, + "poly": [ + 926, + 727, + 1317, + 727, + 1317, + 760, + 926, + 760 + ], + "score": 0.91, + "latex": "f ( z ; \\theta _ { D } , \\bar { \\theta _ { G } } ) = D \\left( G \\left( z ; \\theta _ { G } \\right) ; \\theta _ { D } \\right)" + }, + { + "category_id": 13, + "poly": [ + 832, + 1149, + 866, + 1149, + 866, + 1179, + 832, + 1179 + ], + "score": 0.91, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 509, + 575, + 557, + 575, + 557, + 609, + 509, + 609 + ], + "score": 0.9, + "latex": "h ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 745, + 1149, + 781, + 1149, + 781, + 1179, + 745, + 1179 + ], + "score": 0.9, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 552, + 1452, + 586, + 1452, + 586, + 1481, + 552, + 1481 + ], + "score": 0.89, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 466, + 1451, + 502, + 1451, + 502, + 1481, + 466, + 1481 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1044, + 761, + 1080, + 761, + 1080, + 789, + 1044, + 789 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1131, + 761, + 1166, + 761, + 1166, + 789, + 1131, + 789 + ], + "score": 0.88, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1138, + 1036, + 1164, + 1036, + 1164, + 1062, + 1138, + 1062 + ], + "score": 0.84, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 979, + 807, + 1004, + 807, + 1004, + 833, + 979, + 833 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1036, + 1240, + 1036, + 1240, + 1062, + 1216, + 1062 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 904, + 807, + 931, + 807, + 931, + 833, + 904, + 833 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 996, + 1728, + 1023, + 1728, + 1023, + 1755, + 996, + 1755 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1764, + 1232, + 1764, + 1232, + 1791, + 1206, + 1791 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 448, + 1335, + 466, + 1335, + 466, + 1360, + 448, + 1360 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1733, + 1264, + 1733, + 1264, + 1755, + 1247, + 1755 + ], + "score": 0.76, + "latex": "z" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1547.0, + 691.0, + 1547.0, + 691.0, + 1583.0, + 295.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 248.0, + 1405.0, + 248.0, + 1405.0, + 285.0, + 295.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 280.0, + 1404.0, + 280.0, + 1404.0, + 313.0, + 297.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 1405.0, + 308.0, + 1405.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 375.0, + 292.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 372.0, + 1179.0, + 372.0, + 1179.0, + 406.0, + 296.0, + 406.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": [ + 332.0, + 1998.0, + 1377.0, + 1998.0, + 1377.0, + 2039.0, + 332.0, + 2039.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, + 1606.0, + 1406.0, + 1606.0, + 1406.0, + 1638.0, + 293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1636.0, + 1406.0, + 1636.0, + 1406.0, + 1671.0, + 294.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1667.0, + 1406.0, + 1667.0, + 1406.0, + 1701.0, + 295.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1694.0, + 1403.0, + 1694.0, + 1403.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 995.0, + 1728.0, + 995.0, + 1762.0, + 294.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1728.0, + 1246.0, + 1728.0, + 1246.0, + 1762.0, + 1024.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1728.0, + 1403.0, + 1728.0, + 1403.0, + 1762.0, + 1265.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1752.0, + 434.0, + 1752.0, + 434.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1752.0, + 1205.0, + 1752.0, + 1205.0, + 1805.0, + 622.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1805.0, + 1233.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1793.0, + 1039.0, + 1793.0, + 1039.0, + 1829.0, + 293.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1793.0, + 1405.0, + 1793.0, + 1405.0, + 1829.0, + 1148.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1826.0, + 523.0, + 1826.0, + 523.0, + 1858.0, + 295.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 804.0, + 903.0, + 804.0, + 903.0, + 841.0, + 294.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 804.0, + 978.0, + 804.0, + 978.0, + 841.0, + 932.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 804.0, + 1405.0, + 804.0, + 1405.0, + 841.0, + 1005.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 834.0, + 1404.0, + 834.0, + 1404.0, + 870.0, + 295.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 866.0, + 1405.0, + 866.0, + 1405.0, + 902.0, + 295.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 931.0, + 292.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 925.0, + 1405.0, + 925.0, + 1405.0, + 962.0, + 292.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 957.0, + 883.0, + 957.0, + 883.0, + 993.0, + 294.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 572.0, + 508.0, + 572.0, + 508.0, + 611.0, + 294.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 572.0, + 1404.0, + 572.0, + 1404.0, + 611.0, + 558.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 640.0, + 294.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 635.0, + 701.0, + 635.0, + 701.0, + 670.0, + 294.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 635.0, + 898.0, + 635.0, + 898.0, + 670.0, + 847.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 635.0, + 1404.0, + 635.0, + 1404.0, + 670.0, + 1022.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 666.0, + 1404.0, + 666.0, + 1404.0, + 701.0, + 294.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 694.0, + 1406.0, + 694.0, + 1406.0, + 735.0, + 291.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 727.0, + 925.0, + 727.0, + 925.0, + 762.0, + 295.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 727.0, + 1406.0, + 727.0, + 1406.0, + 762.0, + 1318.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 757.0, + 614.0, + 757.0, + 614.0, + 793.0, + 292.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 757.0, + 1043.0, + 757.0, + 1043.0, + 793.0, + 671.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 757.0, + 1130.0, + 757.0, + 1130.0, + 793.0, + 1081.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 757.0, + 1347.0, + 757.0, + 1347.0, + 793.0, + 1167.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1327.0, + 447.0, + 1327.0, + 447.0, + 1363.0, + 296.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1327.0, + 1406.0, + 1327.0, + 1406.0, + 1363.0, + 467.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1356.0, + 1407.0, + 1356.0, + 1407.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1387.0, + 1405.0, + 1387.0, + 1405.0, + 1425.0, + 292.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1417.0, + 1406.0, + 1417.0, + 1406.0, + 1455.0, + 292.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1450.0, + 465.0, + 1450.0, + 465.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1450.0, + 551.0, + 1450.0, + 551.0, + 1486.0, + 503.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1450.0, + 1405.0, + 1450.0, + 1405.0, + 1486.0, + 587.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 904.0, + 1481.0, + 904.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1147.0, + 744.0, + 1147.0, + 744.0, + 1183.0, + 297.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1147.0, + 831.0, + 1147.0, + 831.0, + 1183.0, + 782.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1147.0, + 1404.0, + 1147.0, + 1404.0, + 1183.0, + 867.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1091.0, + 1178.0, + 1091.0, + 1214.0, + 294.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1001.0, + 1406.0, + 1001.0, + 1406.0, + 1039.0, + 292.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1034.0, + 1137.0, + 1034.0, + 1137.0, + 1068.0, + 292.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1034.0, + 1215.0, + 1034.0, + 1215.0, + 1068.0, + 1165.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1034.0, + 1405.0, + 1034.0, + 1405.0, + 1068.0, + 1241.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1064.0, + 415.0, + 1064.0, + 415.0, + 1099.0, + 294.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1920.0, + 1405.0, + 1920.0, + 1405.0, + 1960.0, + 294.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1953.0, + 1161.0, + 1953.0, + 1161.0, + 1989.0, + 294.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1998.0, + 1377.0, + 1998.0, + 1377.0, + 2039.0, + 332.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1689, + 1404, + 1689, + 1404, + 1813, + 297, + 1813 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1403, + 1911, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 318, + 229, + 1370, + 229, + 1370, + 774, + 318, + 774 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 295, + 798, + 1406, + 798, + 1406, + 1014, + 295, + 1014 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 302, + 1619, + 795, + 1619, + 795, + 1655, + 302, + 1655 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 104, + 297, + 104 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.756 + }, + { + "category_id": 5, + "poly": [ + 305, + 1088, + 1397, + 1088, + 1397, + 1561, + 305, + 1561 + ], + "score": 0.752, + "html": "
Input: data distribution p(x),latent distribution p(z),D(:; 0D), G(-; 0g),learning rate α, batch size N repeat
Initialise discriminator and generator parameters 0D,0G fori=1 to Ndo
Sample z ~ p(z),x~p(x)
Compute the gradient D(G(z)) and use it to obtain △z from eq. 4 (GD) or eq. 12 (NGD) dz
Optimise the latent z' ← [+ △z],[:] indicates clipping the value between -1 and 1
= -D(G(z))
D(G(z'))-D(x) end for
Compute batch losses LG =N∑i=11 JN (i) and LD=∑=1 N L(i) LD
aLD aLG Update 0D and 0G with the gradients
0D, G
until reaches the maximum training steps
" + }, + { + "category_id": 0, + "poly": [ + 296, + 1852, + 973, + 1852, + 973, + 1885, + 296, + 1885 + ], + "score": 0.65 + }, + { + "category_id": 6, + "poly": [ + 298, + 1049, + 1074, + 1049, + 1074, + 1082, + 298, + 1082 + ], + "score": 0.557 + }, + { + "category_id": 0, + "poly": [ + 295, + 1852, + 967, + 1852, + 967, + 1885, + 295, + 1885 + ], + "score": 0.452 + }, + { + "category_id": 1, + "poly": [ + 305, + 1088, + 1397, + 1088, + 1397, + 1561, + 305, + 1561 + ], + "score": 0.319 + }, + { + "category_id": 0, + "poly": [ + 298, + 1049, + 1074, + 1049, + 1074, + 1082, + 298, + 1082 + ], + "score": 0.239 + }, + { + "category_id": 13, + "poly": [ + 991, + 951, + 1044, + 951, + 1044, + 985, + 991, + 985 + ], + "score": 0.91, + "latex": "p ( z )" + }, + { + "category_id": 13, + "poly": [ + 597, + 1089, + 650, + 1089, + 650, + 1123, + 597, + 1123 + ], + "score": 0.91, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 693, + 1382, + 984, + 1382, + 984, + 1423, + 693, + 1423 + ], + "score": 0.9, + "latex": "L _ { D } ^ { ( i ) } = D ( G ( z ^ { \\prime } ) ) - D ( x )" + }, + { + "category_id": 13, + "poly": [ + 601, + 1441, + 826, + 1441, + 826, + 1486, + 601, + 1486 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { L _ { G } = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } { L _ { G } ^ { ( i ) } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 650, + 1342, + 866, + 1342, + 866, + 1382, + 650, + 1382 + ], + "score": 0.89, + "latex": "L _ { G } ^ { ( i ) } = - D ( G ( z ^ { \\prime } ) )" + }, + { + "category_id": 13, + "poly": [ + 439, + 1487, + 475, + 1487, + 475, + 1517, + 439, + 1517 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1212, + 458, + 1212, + 458, + 1239, + 394, + 1239 + ], + "score": 0.89, + "latex": "i = 1" + }, + { + "category_id": 13, + "poly": [ + 526, + 1487, + 561, + 1487, + 561, + 1518, + 526, + 1518 + ], + "score": 0.89, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 892, + 1393, + 892, + 1393, + 922, + 1357, + 922 + ], + "score": 0.87, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 954, + 1281, + 994, + 1281, + 994, + 1307, + 954, + 1307 + ], + "score": 0.87, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 298, + 922, + 331, + 922, + 331, + 952, + 298, + 952 + ], + "score": 0.87, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 470, + 1242, + 573, + 1242, + 573, + 1275, + 470, + 1275 + ], + "score": 0.85, + "latex": "z \\sim p ( z )" + }, + { + "category_id": 13, + "poly": [ + 629, + 1273, + 730, + 1273, + 730, + 1313, + 629, + 1313 + ], + "score": 0.85, + "latex": "\\frac { \\partial D ( G ( z ) ) } { \\partial z }" + }, + { + "category_id": 13, + "poly": [ + 485, + 861, + 512, + 861, + 512, + 889, + 485, + 889 + ], + "score": 0.85, + "latex": "z ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 584, + 1241, + 691, + 1241, + 691, + 1273, + 584, + 1273 + ], + "score": 0.84, + "latex": "x \\sim p ( x )" + }, + { + "category_id": 13, + "poly": [ + 876, + 1440, + 1103, + 1440, + 1103, + 1485, + 876, + 1485 + ], + "score": 0.8, + "latex": "\\begin{array} { r } { L _ { D } = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } L _ { D } ^ { ( i ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1292, + 801, + 1319, + 801, + 1319, + 827, + 1292, + 827 + ], + "score": 0.79, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 772, + 1484, + 824, + 1484, + 824, + 1525, + 772, + 1525 + ], + "score": 0.78, + "latex": "\\frac { \\partial L _ { D } } { \\partial \\theta _ { D } }" + }, + { + "category_id": 13, + "poly": [ + 897, + 1182, + 932, + 1182, + 932, + 1211, + 897, + 1211 + ], + "score": 0.77, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 800, + 1236, + 800, + 1236, + 828, + 1210, + 828 + ], + "score": 0.77, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 598, + 1311, + 766, + 1311, + 766, + 1342, + 598, + 1342 + ], + "score": 0.77, + "latex": "z ^ { \\prime } \\gets [ \\tilde { z } + \\Delta z ]" + }, + { + "category_id": 13, + "poly": [ + 1046, + 1088, + 1147, + 1088, + 1147, + 1123, + 1046, + 1123 + ], + "score": 0.76, + "latex": "G \\left( \\because \\theta _ { G } \\right)" + }, + { + "category_id": 13, + "poly": [ + 492, + 1212, + 520, + 1212, + 520, + 1239, + 492, + 1239 + ], + "score": 0.75, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1312, + 1255, + 1312, + 1255, + 1339, + 1217, + 1339 + ], + "score": 0.73, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 464, + 836, + 481, + 836, + 481, + 858, + 464, + 858 + ], + "score": 0.69, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 930, + 1088, + 1033, + 1088, + 1033, + 1123, + 930, + 1123 + ], + "score": 0.69, + "latex": "D \\left( \\because \\theta _ { D } \\right)" + }, + { + "category_id": 13, + "poly": [ + 944, + 1182, + 979, + 1182, + 979, + 1212, + 944, + 1212 + ], + "score": 0.68, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 865, + 1089, + 916, + 1089, + 916, + 1123, + 865, + 1123 + ], + "score": 0.67, + "latex": "p ( z )" + }, + { + "category_id": 13, + "poly": [ + 838, + 1482, + 889, + 1482, + 889, + 1525, + 838, + 1525 + ], + "score": 0.63, + "latex": "\\frac { \\partial L _ { G } } { \\partial \\theta _ { G } }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1120, + 404, + 1120, + 404, + 1147, + 375, + 1147 + ], + "score": 0.62, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1097, + 1326, + 1097, + 1326, + 1118, + 1305, + 1118 + ], + "score": 0.56, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 778, + 1309, + 804, + 1309, + 804, + 1343, + 778, + 1343 + ], + "score": 0.37, + "latex": "[ \\cdot ]" + }, + { + "category_id": 13, + "poly": [ + 865, + 1087, + 1149, + 1087, + 1149, + 1124, + 865, + 1124 + ], + "score": 0.31, + "latex": "\\overline { { p ( z ) , D \\left( \\cdot ; \\theta _ { D } \\right) , G \\left( \\cdot ; \\theta _ { G } \\right) } }" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 224.0, + 1281.0, + 224.0, + 1281.0, + 254.0, + 987.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 255.0, + 486.0, + 255.0, + 486.0, + 363.0, + 327.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 251.0, + 846.0, + 251.0, + 846.0, + 369.0, + 669.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 253.0, + 1345.0, + 253.0, + 1345.0, + 310.0, + 1222.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 318.0, + 1114.0, + 318.0, + 1114.0, + 333.0, + 1100.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 299.0, + 1342.0, + 299.0, + 1342.0, + 332.0, + 1224.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 349.0, + 836.0, + 349.0, + 836.0, + 465.0, + 737.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 349.0, + 1193.0, + 349.0, + 1193.0, + 363.0, + 1176.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 355.0, + 403.0, + 355.0, + 403.0, + 457.0, + 326.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 366.0, + 906.0, + 366.0, + 906.0, + 384.0, + 886.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 429.0, + 908.0, + 429.0, + 908.0, + 448.0, + 886.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 471.0, + 429.0, + 471.0, + 429.0, + 547.0, + 370.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 460.0, + 810.0, + 460.0, + 810.0, + 549.0, + 720.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 455.0, + 914.0, + 455.0, + 914.0, + 512.0, + 866.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 558.0, + 405.0, + 558.0, + 405.0, + 570.0, + 395.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 554.0, + 910.0, + 554.0, + 910.0, + 573.0, + 887.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 557.0, + 1187.0, + 557.0, + 1187.0, + 567.0, + 1178.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 575.0, + 389.0, + 575.0, + 389.0, + 650.0, + 323.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 568.0, + 831.0, + 568.0, + 831.0, + 657.0, + 758.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 617.0, + 645.0, + 617.0, + 645.0, + 699.0, + 528.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 617.0, + 910.0, + 617.0, + 910.0, + 634.0, + 887.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 663.0, + 423.0, + 663.0, + 423.0, + 710.0, + 378.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 643.0, + 797.0, + 643.0, + 797.0, + 709.0, + 735.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 679.0, + 908.0, + 679.0, + 908.0, + 698.0, + 887.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 692.0, + 928.0, + 692.0, + 928.0, + 715.0, + 899.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 692.0, + 1017.0, + 692.0, + 1017.0, + 715.0, + 987.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 691.0, + 1106.0, + 691.0, + 1106.0, + 714.0, + 1074.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 690.0, + 1194.0, + 690.0, + 1194.0, + 716.0, + 1161.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 692.0, + 1281.0, + 692.0, + 1281.0, + 715.0, + 1251.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 694.0, + 1368.0, + 694.0, + 1368.0, + 715.0, + 1340.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 708.0, + 1199.0, + 708.0, + 1199.0, + 734.0, + 1066.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 737.0, + 602.0, + 737.0, + 602.0, + 779.0, + 552.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 737.0, + 1142.0, + 737.0, + 1142.0, + 779.0, + 1090.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 797.0, + 1209.0, + 797.0, + 1209.0, + 836.0, + 294.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 797.0, + 1291.0, + 797.0, + 1291.0, + 836.0, + 1237.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 797.0, + 1406.0, + 797.0, + 1406.0, + 836.0, + 1320.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 831.0, + 463.0, + 831.0, + 463.0, + 865.0, + 295.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 831.0, + 1406.0, + 831.0, + 1406.0, + 865.0, + 482.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 484.0, + 859.0, + 484.0, + 896.0, + 294.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 859.0, + 1404.0, + 859.0, + 1404.0, + 896.0, + 513.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 890.0, + 1356.0, + 890.0, + 1356.0, + 928.0, + 293.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 928.0, + 1394.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 922.0, + 297.0, + 922.0, + 297.0, + 957.0, + 294.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 922.0, + 1404.0, + 922.0, + 1404.0, + 957.0, + 332.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 952.0, + 990.0, + 952.0, + 990.0, + 986.0, + 294.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 952.0, + 1404.0, + 952.0, + 1404.0, + 986.0, + 1045.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1315.0, + 983.0, + 1315.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 799.0, + 1616.0, + 799.0, + 1659.0, + 292.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 974.0, + 1849.0, + 974.0, + 1890.0, + 292.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1048.0, + 1076.0, + 1048.0, + 1076.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 973.0, + 1849.0, + 973.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1048.0, + 1076.0, + 1048.0, + 1076.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 1404.0, + 1689.0, + 1404.0, + 1724.0, + 294.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1722.0, + 1404.0, + 1722.0, + 1404.0, + 1755.0, + 295.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1751.0, + 1407.0, + 1751.0, + 1407.0, + 1787.0, + 294.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1783.0, + 1239.0, + 1783.0, + 1239.0, + 1815.0, + 296.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1088.0, + 596.0, + 1088.0, + 596.0, + 1124.0, + 322.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1088.0, + 864.0, + 1088.0, + 864.0, + 1124.0, + 651.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1088.0, + 1304.0, + 1088.0, + 1304.0, + 1124.0, + 1150.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1088.0, + 1402.0, + 1088.0, + 1402.0, + 1124.0, + 1327.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1119.0, + 374.0, + 1119.0, + 374.0, + 1150.0, + 319.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1119.0, + 408.0, + 1119.0, + 408.0, + 1150.0, + 405.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1152.0, + 408.0, + 1152.0, + 408.0, + 1182.0, + 319.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1177.0, + 896.0, + 1177.0, + 896.0, + 1216.0, + 347.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1177.0, + 943.0, + 1177.0, + 943.0, + 1216.0, + 933.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1208.0, + 393.0, + 1208.0, + 393.0, + 1244.0, + 350.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1208.0, + 491.0, + 1208.0, + 491.0, + 1244.0, + 459.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1208.0, + 561.0, + 1208.0, + 561.0, + 1244.0, + 521.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1238.0, + 469.0, + 1238.0, + 469.0, + 1277.0, + 377.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1238.0, + 583.0, + 1238.0, + 583.0, + 1277.0, + 574.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1238.0, + 697.0, + 1238.0, + 697.0, + 1277.0, + 692.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1268.0, + 628.0, + 1268.0, + 628.0, + 1321.0, + 377.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1268.0, + 953.0, + 1268.0, + 953.0, + 1321.0, + 731.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1268.0, + 1371.0, + 1268.0, + 1371.0, + 1321.0, + 995.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1307.0, + 597.0, + 1307.0, + 597.0, + 1346.0, + 377.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1307.0, + 777.0, + 1307.0, + 777.0, + 1346.0, + 767.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1307.0, + 1216.0, + 1307.0, + 1216.0, + 1346.0, + 805.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1307.0, + 1328.0, + 1307.0, + 1328.0, + 1346.0, + 1256.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1328.0, + 649.0, + 1328.0, + 649.0, + 1403.0, + 368.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1328.0, + 872.0, + 1328.0, + 872.0, + 1403.0, + 867.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1372.0, + 692.0, + 1372.0, + 692.0, + 1436.0, + 369.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1372.0, + 995.0, + 1372.0, + 995.0, + 1436.0, + 985.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1415.0, + 447.0, + 1415.0, + 447.0, + 1451.0, + 350.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1424.0, + 875.0, + 1424.0, + 875.0, + 1498.0, + 827.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1424.0, + 1113.0, + 1424.0, + 1113.0, + 1498.0, + 1104.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1473.0, + 438.0, + 1473.0, + 438.0, + 1534.0, + 351.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1473.0, + 525.0, + 1473.0, + 525.0, + 1534.0, + 476.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1473.0, + 771.0, + 1473.0, + 771.0, + 1534.0, + 562.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1473.0, + 837.0, + 1473.0, + 837.0, + 1534.0, + 825.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1518.0, + 794.0, + 1518.0, + 794.0, + 1557.0, + 322.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1435.0, + 788.0, + 1435.0, + 788.0, + 1492.5, + 344.0, + 1492.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.75, + 1475.5, + 889.75, + 1475.5, + 889.75, + 1511.0, + 835.75, + 1511.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1068, + 1405, + 1068, + 1405, + 1276, + 297, + 1276 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1425, + 1404, + 1425, + 1404, + 1643, + 297, + 1643 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 580, + 1405, + 580, + 1405, + 735, + 297, + 735 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1879, + 1403, + 1879, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1288, + 1404, + 1288, + 1404, + 1413, + 299, + 1413 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1656, + 1403, + 1656, + 1403, + 1791, + 299, + 1791 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 351, + 297, + 351 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 318, + 828, + 1374, + 828, + 1374, + 1025, + 318, + 1025 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 368, + 475, + 1321, + 475, + 1321, + 564, + 368, + 564 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 295, + 748, + 1402, + 748, + 1402, + 811, + 295, + 811 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 295, + 395, + 1401, + 395, + 1401, + 459, + 295, + 459 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 298, + 1824, + 933, + 1824, + 933, + 1856, + 298, + 1856 + ], + "score": 0.9 + }, + { + "category_id": 8, + "poly": [ + 570, + 352, + 1127, + 352, + 1127, + 389, + 570, + 389 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1365, + 357, + 1400, + 357, + 1400, + 386, + 1365, + 386 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1366, + 508, + 1400, + 508, + 1400, + 537, + 1366, + 537 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1023, + 1400, + 1023, + 1400, + 1051, + 1366, + 1051 + ], + "score": 0.853 + }, + { + "category_id": 9, + "poly": [ + 1365, + 862, + 1401, + 862, + 1401, + 892, + 1365, + 892 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.742 + }, + { + "category_id": 13, + "poly": [ + 675, + 1133, + 834, + 1133, + 834, + 1177, + 675, + 1177 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\Delta z = \\alpha \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 824, + 1751, + 884, + 1751, + 884, + 1792, + 824, + 1792 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ) } { \\partial z }" + }, + { + "category_id": 14, + "poly": [ + 313, + 822, + 1383, + 822, + 1383, + 1029, + 313, + 1029 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } & { } & { \\left[ \\frac { d L _ { D } } { d \\theta _ { D } } , \\frac { d L _ { G } } { d \\theta _ { G } } \\right] } ^ { T } = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\left( \\frac { \\partial \\Delta { \\boldsymbol { z } } } { \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\Delta { \\boldsymbol { z } } } \\right] } ^ { T } { \\left( \\boldsymbol { \\hat { z } } ^ { \\prime } \\right) } } \\\\ & { } & { = { { \\left[ \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } , - \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\alpha \\left( \\frac { \\partial ^ { 2 } f ( { \\boldsymbol { z } } ) } { \\partial \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( { \\boldsymbol { z } } ^ { \\prime } ) } { \\partial { \\boldsymbol { z } } ^ { \\prime } } \\right] } ^ { T } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 347, + 392, + 555, + 392, + 555, + 431, + 347, + 431 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { A = \\frac 1 2 ( H - H ^ { T } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1301, + 1131, + 1406, + 1131, + 1406, + 1177, + 1301, + 1177 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 843, + 1070, + 905, + 1070, + 905, + 1104, + 843, + 1104 + ], + "score": 0.92, + "latex": "f ( z ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 618, + 1100, + 681, + 1100, + 681, + 1134, + 618, + 1134 + ], + "score": 0.92, + "latex": "f ( z ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 300, + 1172, + 369, + 1172, + 369, + 1219, + 300, + 1219 + ], + "score": 0.92, + "latex": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 293, + 1126, + 293, + 1126, + 323, + 1005, + 323 + ], + "score": 0.92, + "latex": "H = \\nabla _ { \\theta } g" + }, + { + "category_id": 14, + "poly": [ + 370, + 470, + 1326, + 470, + 1326, + 569, + 370, + 569 + ], + "score": 0.91, + "latex": "g ^ { \\ast } = \\left[ \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } , - \\frac { \\partial f ( z ) } { \\partial \\theta _ { G } } + \\lambda \\left( \\frac { \\partial ^ { 2 } f ( z ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ) } { \\partial \\theta _ { D } } \\right] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 823, + 583, + 853, + 583, + 853, + 613, + 823, + 613 + ], + "score": 0.89, + "latex": "g ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1979, + 1030, + 1979, + 1030, + 2000, + 1005, + 2000 + ], + "score": 0.88, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1181, + 1402, + 1181, + 1402, + 1210, + 1308, + 1210 + ], + "score": 0.88, + "latex": "\\Delta z = 0" + }, + { + "category_id": 13, + "poly": [ + 754, + 2009, + 776, + 2009, + 776, + 2030, + 754, + 2030 + ], + "score": 0.88, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1116, + 750, + 1142, + 750, + 1142, + 777, + 1116, + 777 + ], + "score": 0.87, + "latex": "z ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 509, + 1756, + 549, + 1756, + 549, + 1783, + 509, + 1783 + ], + "score": 0.87, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 474, + 586, + 492, + 586, + 492, + 612, + 474, + 612 + ], + "score": 0.82, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 397, + 613, + 425, + 613, + 425, + 639, + 397, + 639 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 492, + 1945, + 516, + 1945, + 516, + 1970, + 492, + 1970 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 477, + 614, + 502, + 614, + 502, + 639, + 477, + 639 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 14, + "poly": [ + 572, + 348, + 1131, + 348, + 1131, + 389, + 572, + 389 + ], + "score": 0.8, + "latex": "g ^ { * } = g + \\lambda A ^ { T } g \\quad { \\mathrm { w h e r e ~ } } \\lambda { \\mathrm { ~ i s ~ a ~ p o s i t i v e ~ c o n s t a n t } }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 267, + 1108, + 267, + 1108, + 293, + 1090, + 293 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 433, + 1463, + 451, + 1463, + 451, + 1486, + 433, + 1486 + ], + "score": 0.75, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1912, + 1401, + 1912, + 1401, + 1939, + 1374, + 1939 + ], + "score": 0.74, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 967, + 1618, + 983, + 1618, + 983, + 1637, + 967, + 1637 + ], + "score": 0.73, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1188, + 1145, + 1207, + 1145, + 1207, + 1167, + 1188, + 1167 + ], + "score": 0.72, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 724, + 1523, + 741, + 1523, + 741, + 1547, + 724, + 1547 + ], + "score": 0.71, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1345, + 1944, + 1385, + 1944, + 1385, + 1971, + 1345, + 1971 + ], + "score": 0.5, + "latex": "{ } 4 \\mathbf { b }" + }, + { + "category_id": 13, + "poly": [ + 866, + 356, + 887, + 356, + 887, + 384, + 866, + 384 + ], + "score": 0.36, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 936.0, + 1824.0, + 936.0, + 1860.0, + 295.0, + 1860.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, + 1070.0, + 842.0, + 1070.0, + 842.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1070.0, + 1403.0, + 1070.0, + 1403.0, + 1103.0, + 906.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1101.0, + 617.0, + 1101.0, + 617.0, + 1135.0, + 295.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1101.0, + 1407.0, + 1101.0, + 1407.0, + 1135.0, + 682.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 674.0, + 1125.0, + 674.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1125.0, + 1187.0, + 1125.0, + 1187.0, + 1183.0, + 835.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1125.0, + 1300.0, + 1125.0, + 1300.0, + 1183.0, + 1208.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1245.0, + 295.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1245.0, + 1210.0, + 1245.0, + 1210.0, + 1275.0, + 297.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1168.5, + 1413.0, + 1168.5, + 1413.0, + 1225.0, + 288.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1426.0, + 1405.0, + 1426.0, + 1405.0, + 1464.0, + 295.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 432.0, + 1459.0, + 432.0, + 1494.0, + 295.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1459.0, + 1406.0, + 1459.0, + 1406.0, + 1494.0, + 452.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1489.0, + 1405.0, + 1489.0, + 1405.0, + 1524.0, + 295.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 723.0, + 1520.0, + 723.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1520.0, + 1404.0, + 1520.0, + 1404.0, + 1554.0, + 742.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1548.0, + 1404.0, + 1548.0, + 1404.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1580.0, + 1405.0, + 1580.0, + 1405.0, + 1615.0, + 294.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1611.0, + 966.0, + 1611.0, + 966.0, + 1646.0, + 295.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1611.0, + 1404.0, + 1611.0, + 1404.0, + 1646.0, + 984.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 473.0, + 579.0, + 473.0, + 616.0, + 295.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 579.0, + 822.0, + 579.0, + 822.0, + 616.0, + 493.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 579.0, + 1405.0, + 579.0, + 1405.0, + 616.0, + 854.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 610.0, + 396.0, + 610.0, + 396.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 610.0, + 476.0, + 610.0, + 476.0, + 646.0, + 426.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 610.0, + 1403.0, + 610.0, + 1403.0, + 646.0, + 503.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 640.0, + 1405.0, + 640.0, + 1405.0, + 677.0, + 295.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 704.0, + 904.0, + 704.0, + 904.0, + 737.0, + 296.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1373.0, + 1910.0, + 1373.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 1402.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 491.0, + 1941.0, + 491.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1941.0, + 1344.0, + 1941.0, + 1344.0, + 1978.0, + 517.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 1386.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1004.0, + 1970.0, + 1004.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2008.0, + 1031.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 753.0, + 2001.0, + 753.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 2001.0, + 786.0, + 2001.0, + 786.0, + 2037.0, + 777.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 1406.0, + 1288.0, + 1406.0, + 1325.0, + 295.0, + 1325.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": [ + 294.0, + 1353.0, + 1404.0, + 1353.0, + 1404.0, + 1383.0, + 294.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1256.0, + 1382.0, + 1256.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 1407.0, + 1656.0, + 1407.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 1404.0, + 1717.0, + 1404.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 508.0, + 1746.0, + 508.0, + 1797.0, + 294.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1746.0, + 823.0, + 1746.0, + 823.0, + 1797.0, + 550.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1746.0, + 889.0, + 1746.0, + 889.0, + 1797.0, + 885.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1754.0, + 1136.0, + 1754.0, + 1136.0, + 1790.0, + 877.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1089.0, + 260.0, + 1089.0, + 295.0, + 292.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 295.0, + 1109.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 291.0, + 1004.0, + 291.0, + 1004.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 327.0, + 1127.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 320.0, + 398.0, + 320.0, + 398.0, + 354.0, + 290.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 745.0, + 1115.0, + 745.0, + 1115.0, + 786.0, + 293.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 745.0, + 1405.0, + 745.0, + 1405.0, + 786.0, + 1143.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 610.0, + 780.0, + 610.0, + 815.0, + 295.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 391.0, + 346.0, + 391.0, + 346.0, + 431.0, + 293.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 391.0, + 1406.0, + 391.0, + 1406.0, + 431.0, + 556.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 424.0, + 952.0, + 424.0, + 952.0, + 462.0, + 291.0, + 462.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1579, + 1404, + 1579, + 1404, + 1857, + 297, + 1857 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1152, + 1404, + 1152, + 1404, + 1370, + 297, + 1370 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 953, + 1404, + 953, + 1404, + 1140, + 298, + 1140 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 325, + 224, + 1367, + 224, + 1367, + 657, + 325, + 657 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 296, + 683, + 1406, + 683, + 1406, + 837, + 296, + 837 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1403, + 1972, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 634, + 1527, + 1064, + 1527, + 1064, + 1572, + 634, + 1572 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 297, + 1383, + 1025, + 1383, + 1025, + 1426, + 297, + 1426 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 297, + 1486, + 877, + 1486, + 877, + 1518, + 297, + 1518 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 296, + 1870, + 1405, + 1870, + 1405, + 1932, + 296, + 1932 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 764, + 1438, + 936, + 1438, + 936, + 1476, + 764, + 1476 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 746, + 1929, + 953, + 1929, + 953, + 1967, + 746, + 1967 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 297, + 885, + 1016, + 885, + 1016, + 922, + 297, + 922 + ], + "score": 0.918 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1533, + 1399, + 1533, + 1399, + 1564, + 1353, + 1564 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1934, + 1399, + 1934, + 1399, + 1964, + 1352, + 1964 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1444, + 1400, + 1444, + 1400, + 1473, + 1366, + 1473 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 104, + 297, + 104 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.804 + }, + { + "category_id": 13, + "poly": [ + 388, + 743, + 592, + 743, + 592, + 777, + 388, + 777 + ], + "score": 0.93, + "latex": "\\lVert \\Delta \\boldsymbol { \\theta } _ { D } \\rVert - \\lVert \\Delta \\boldsymbol { \\theta } _ { G } \\rVert" + }, + { + "category_id": 14, + "poly": [ + 631, + 1527, + 1066, + 1527, + 1066, + 1571, + 631, + 1571 + ], + "score": 0.93, + "latex": "F = \\mathbb { E } _ { p ( t \\mid z ) } \\left[ \\nabla \\ln p ( t | z ) \\nabla \\ln p ( t | z ) ^ { T } \\right]" + }, + { + "category_id": 14, + "poly": [ + 746, + 1927, + 955, + 1927, + 955, + 1967, + 746, + 1967 + ], + "score": 0.93, + "latex": "F ^ { \\prime } = g \\cdot g ^ { T } + \\beta I" + }, + { + "category_id": 13, + "poly": [ + 611, + 1581, + 710, + 1581, + 710, + 1615, + 611, + 1615 + ], + "score": 0.93, + "latex": "\\ln { p ( t | z ) }" + }, + { + "category_id": 14, + "poly": [ + 763, + 1436, + 938, + 1436, + 938, + 1476, + 763, + 1476 + ], + "score": 0.92, + "latex": "\\Delta z = \\alpha { \\cal F } ^ { - 1 } g" + }, + { + "category_id": 13, + "poly": [ + 567, + 1383, + 681, + 1383, + 681, + 1428, + 567, + 1428 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { g = \\frac { \\partial f ( z ) } { \\partial z } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1765, + 1314, + 1765, + 1314, + 1797, + 1239, + 1797 + ], + "score": 0.92, + "latex": "L _ { G } ( z )" + }, + { + "category_id": 13, + "poly": [ + 1110, + 684, + 1193, + 684, + 1193, + 715, + 1110, + 715 + ], + "score": 0.92, + "latex": "\\beta = 5" + }, + { + "category_id": 13, + "poly": [ + 833, + 1873, + 865, + 1873, + 865, + 1900, + 833, + 1900 + ], + "score": 0.88, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 946, + 2005, + 976, + 2005, + 976, + 2030, + 946, + 2030 + ], + "score": 0.87, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 706, + 1489, + 730, + 1489, + 730, + 1515, + 706, + 1515 + ], + "score": 0.86, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 297, + 1974, + 329, + 1974, + 329, + 2000, + 297, + 2000 + ], + "score": 0.85, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1211, + 987, + 1253, + 987, + 1253, + 1014, + 1211, + 1014 + ], + "score": 0.84, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 370, + 2004, + 391, + 2004, + 391, + 2035, + 370, + 2035 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 996, + 1979, + 1013, + 1979, + 1013, + 2005, + 996, + 2005 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 422, + 1769, + 441, + 1769, + 441, + 1792, + 422, + 1792 + ], + "score": 0.76, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1736, + 1285, + 1736, + 1285, + 1765, + 1250, + 1765 + ], + "score": 0.75, + "latex": "( z )" + }, + { + "category_id": 13, + "poly": [ + 1077, + 962, + 1094, + 962, + 1094, + 983, + 1077, + 983 + ], + "score": 0.64, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 540, + 1398, + 556, + 1398, + 556, + 1418, + 540, + 1418 + ], + "score": 0.6, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1108, + 1277, + 1108, + 1277, + 1137, + 1236, + 1137 + ], + "score": 0.41, + "latex": "3 \\mathbf { b }" + }, + { + "category_id": 13, + "poly": [ + 1142, + 583, + 1209, + 583, + 1209, + 612, + 1142, + 612 + ], + "score": 0.28, + "latex": "( \\times 1 0 ^ { 3 } )" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 223.0, + 414.0, + 223.0, + 414.0, + 261.0, + 349.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 253.0, + 803.0, + 253.0, + 803.0, + 278.0, + 759.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 280.0, + 777.0, + 280.0, + 777.0, + 297.0, + 762.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 283.0, + 409.0, + 283.0, + 409.0, + 322.0, + 349.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 298.0, + 941.0, + 298.0, + 941.0, + 332.0, + 894.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 304.0, + 777.0, + 304.0, + 777.0, + 320.0, + 762.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 306.0, + 903.0, + 306.0, + 903.0, + 489.0, + 861.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 324.0, + 784.0, + 324.0, + 784.0, + 344.0, + 762.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 345.0, + 409.0, + 345.0, + 409.0, + 437.0, + 321.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 361.0, + 946.0, + 361.0, + 946.0, + 400.0, + 892.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 406.0, + 403.0, + 406.0, + 403.0, + 444.0, + 346.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 430.0, + 947.0, + 430.0, + 947.0, + 465.0, + 895.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 467.0, + 403.0, + 467.0, + 403.0, + 507.0, + 349.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 469.0, + 1337.0, + 469.0, + 1337.0, + 496.0, + 1216.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 498.0, + 946.0, + 498.0, + 946.0, + 532.0, + 895.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 492.0, + 1333.0, + 492.0, + 1333.0, + 545.0, + 1215.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 527.0, + 415.0, + 527.0, + 415.0, + 570.0, + 349.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 554.0, + 412.0, + 554.0, + 412.0, + 579.0, + 393.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 549.0, + 496.0, + 549.0, + 496.0, + 582.0, + 470.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 550.0, + 580.0, + 550.0, + 580.0, + 582.0, + 552.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 550.0, + 658.0, + 550.0, + 658.0, + 580.0, + 635.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 551.0, + 741.0, + 551.0, + 741.0, + 581.0, + 718.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 550.0, + 831.0, + 550.0, + 831.0, + 583.0, + 791.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 548.0, + 1371.0, + 548.0, + 1371.0, + 586.0, + 929.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 576.0, + 634.0, + 576.0, + 634.0, + 621.0, + 580.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 577.0, + 1141.0, + 577.0, + 1141.0, + 617.0, + 1066.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 577.0, + 1223.0, + 577.0, + 1223.0, + 617.0, + 1210.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 620.0, + 603.0, + 620.0, + 603.0, + 662.0, + 552.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 618.0, + 1145.0, + 618.0, + 1145.0, + 663.0, + 1090.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 679.0, + 1109.0, + 679.0, + 1109.0, + 722.0, + 291.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 679.0, + 1407.0, + 679.0, + 1407.0, + 722.0, + 1194.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 712.0, + 1404.0, + 712.0, + 1404.0, + 747.0, + 293.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 739.0, + 387.0, + 739.0, + 387.0, + 783.0, + 291.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 739.0, + 1406.0, + 739.0, + 1406.0, + 783.0, + 593.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 773.0, + 1406.0, + 773.0, + 1406.0, + 810.0, + 295.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 804.0, + 784.0, + 804.0, + 784.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 885.0, + 1018.0, + 885.0, + 1018.0, + 926.0, + 294.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1578.0, + 610.0, + 1578.0, + 610.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1578.0, + 1406.0, + 1578.0, + 1406.0, + 1620.0, + 711.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1652.0, + 291.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1641.0, + 1407.0, + 1641.0, + 1407.0, + 1680.0, + 291.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 1404.0, + 1672.0, + 1404.0, + 1709.0, + 295.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 1406.0, + 1701.0, + 1406.0, + 1739.0, + 294.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1734.0, + 1249.0, + 1734.0, + 1249.0, + 1771.0, + 295.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1734.0, + 1404.0, + 1734.0, + 1404.0, + 1771.0, + 1286.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1764.0, + 421.0, + 1764.0, + 421.0, + 1801.0, + 295.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1764.0, + 1238.0, + 1764.0, + 1238.0, + 1801.0, + 442.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1764.0, + 1405.0, + 1764.0, + 1405.0, + 1801.0, + 1315.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1795.0, + 1405.0, + 1795.0, + 1405.0, + 1832.0, + 295.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 591.0, + 1824.0, + 591.0, + 1861.0, + 295.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1154.0, + 1404.0, + 1154.0, + 1404.0, + 1189.0, + 294.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1214.0, + 1404.0, + 1214.0, + 1404.0, + 1251.0, + 292.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1245.0, + 1405.0, + 1245.0, + 1405.0, + 1282.0, + 294.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1275.0, + 1404.0, + 1275.0, + 1404.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1307.0, + 1406.0, + 1307.0, + 1406.0, + 1342.0, + 292.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1338.0, + 854.0, + 1338.0, + 854.0, + 1373.0, + 295.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 954.0, + 1076.0, + 954.0, + 1076.0, + 990.0, + 296.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 954.0, + 1404.0, + 954.0, + 1404.0, + 990.0, + 1095.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 986.0, + 1210.0, + 986.0, + 1210.0, + 1018.0, + 296.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 986.0, + 1404.0, + 986.0, + 1404.0, + 1018.0, + 1254.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1014.0, + 1405.0, + 1014.0, + 1405.0, + 1052.0, + 295.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1045.0, + 1406.0, + 1045.0, + 1406.0, + 1081.0, + 294.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1075.0, + 1407.0, + 1075.0, + 1407.0, + 1114.0, + 292.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1108.0, + 1235.0, + 1108.0, + 1235.0, + 1144.0, + 294.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1108.0, + 1296.0, + 1108.0, + 1296.0, + 1144.0, + 1278.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1967.0, + 995.0, + 1967.0, + 995.0, + 2011.0, + 330.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1967.0, + 1404.0, + 1967.0, + 1404.0, + 2011.0, + 1014.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 369.0, + 2002.0, + 369.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 2002.0, + 945.0, + 2002.0, + 945.0, + 2038.0, + 392.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 977.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 539.0, + 1388.0, + 539.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1388.0, + 566.0, + 1388.0, + 566.0, + 1427.0, + 557.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.25, + 1380.0, + 1026.25, + 1380.0, + 1026.25, + 1429.0, + 613.25, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1486.0, + 705.0, + 1486.0, + 705.0, + 1522.0, + 297.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1486.0, + 878.0, + 1486.0, + 878.0, + 1522.0, + 731.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1868.0, + 832.0, + 1868.0, + 832.0, + 1909.0, + 291.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1868.0, + 1405.0, + 1868.0, + 1405.0, + 1909.0, + 866.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1900.0, + 437.0, + 1900.0, + 437.0, + 1936.0, + 291.0, + 1936.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1061, + 1405, + 1061, + 1405, + 1237, + 298, + 1237 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1347, + 1404, + 1347, + 1404, + 1471, + 299, + 1471 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1741, + 1403, + 1741, + 1403, + 1896, + 297, + 1896 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1565, + 1403, + 1565, + 1403, + 1729, + 298, + 1729 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1403, + 1910, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 324, + 222, + 1374, + 222, + 1374, + 663, + 324, + 663 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 296, + 689, + 1405, + 689, + 1405, + 845, + 296, + 845 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 519, + 973, + 1181, + 973, + 1181, + 1052, + 519, + 1052 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 295, + 898, + 1398, + 898, + 1398, + 961, + 295, + 961 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 301, + 1280, + 783, + 1280, + 783, + 1316, + 301, + 1316 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1353, + 997, + 1399, + 997, + 1399, + 1029, + 1353, + 1029 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 299, + 1508, + 665, + 1508, + 665, + 1540, + 299, + 1540 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 104, + 297, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.663 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.267 + }, + { + "category_id": 13, + "poly": [ + 512, + 1093, + 757, + 1093, + 757, + 1148, + 512, + 1148 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { c = \\frac { 1 } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 517, + 972, + 1183, + 972, + 1183, + 1052, + 517, + 1052 + ], + "score": 0.94, + "latex": "\\Delta z = \\alpha \\left( \\frac { I } { \\beta } - \\frac { g g ^ { T } } { \\beta ^ { 2 } + \\beta g ^ { T } g } \\right) g = \\frac { \\alpha } { \\beta } \\left( 1 - \\frac { \\| g \\| ^ { 2 } } { \\beta + \\| g \\| ^ { 2 } } \\right) g" + }, + { + "category_id": 13, + "poly": [ + 938, + 1627, + 1045, + 1627, + 1045, + 1661, + 938, + 1661 + ], + "score": 0.93, + "latex": "\\mathcal { U } ( - 1 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1689, + 1284, + 1689, + 1284, + 1733, + 1223, + 1733 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ) } { \\partial z }" + }, + { + "category_id": 13, + "poly": [ + 432, + 1658, + 523, + 1658, + 523, + 1692, + 432, + 1692 + ], + "score": 0.93, + "latex": "\\mathcal { N } ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 566, + 1658, + 618, + 1658, + 618, + 1692, + 566, + 1692 + ], + "score": 0.91, + "latex": "p ( z )" + }, + { + "category_id": 13, + "poly": [ + 910, + 1912, + 1009, + 1912, + 1009, + 1943, + 910, + 1943 + ], + "score": 0.91, + "latex": "\\beta = 5 . 0" + }, + { + "category_id": 13, + "poly": [ + 998, + 1942, + 1053, + 1942, + 1053, + 1972, + 998, + 1972 + ], + "score": 0.88, + "latex": "5 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 1944, + 394, + 1944, + 394, + 1971, + 297, + 1971 + ], + "score": 0.88, + "latex": "\\alpha = 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1350, + 1402, + 1350, + 1402, + 1379, + 1279, + 1379 + ], + "score": 0.88, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 1035, + 2004, + 1075, + 2004, + 1075, + 2031, + 1035, + 2031 + ], + "score": 0.85, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 658, + 691, + 699, + 691, + 699, + 719, + 658, + 719 + ], + "score": 0.85, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 597, + 589, + 664, + 589, + 664, + 618, + 597, + 618 + ], + "score": 0.83, + "latex": "( \\times 1 0 ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1145, + 317, + 1145, + 317, + 1176, + 298, + 1176 + ], + "score": 0.79, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 645, + 1211, + 662, + 1211, + 662, + 1237, + 645, + 1237 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1088, + 1946, + 1105, + 1946, + 1105, + 1970, + 1088, + 1970 + ], + "score": 0.75, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1167, + 695, + 1184, + 695, + 1184, + 718, + 1167, + 718 + ], + "score": 0.74, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 916, + 691, + 943, + 691, + 943, + 718, + 916, + 718 + ], + "score": 0.73, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 569, + 1978, + 587, + 1978, + 587, + 2000, + 569, + 2000 + ], + "score": 0.73, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1155, + 588, + 1225, + 588, + 1225, + 618, + 1155, + 618 + ], + "score": 0.73, + "latex": "( \\times 1 0 ^ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 494, + 1634, + 512, + 1634, + 512, + 1655, + 494, + 1655 + ], + "score": 0.55, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1174, + 1190, + 1174, + 1190, + 1203, + 1144, + 1203 + ], + "score": 0.5, + "latex": "4 \\ \\mathbf { b }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1974, + 1136, + 1974, + 1136, + 2001, + 1092, + 2001 + ], + "score": 0.49, + "latex": "\\mathbf { W } \\mathbf { u }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1104, + 900, + 1104, + 900, + 1132, + 857, + 1132 + ], + "score": 0.49, + "latex": "{ \\textbf { 4 a } }" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 230.0, + 402.0, + 230.0, + 402.0, + 266.0, + 352.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 222.0, + 959.0, + 222.0, + 959.0, + 260.0, + 890.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 253.0, + 789.0, + 253.0, + 789.0, + 285.0, + 706.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 249.0, + 1359.0, + 249.0, + 1359.0, + 278.0, + 1220.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 268.0, + 360.0, + 268.0, + 360.0, + 534.0, + 322.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 274.0, + 797.0, + 274.0, + 797.0, + 306.0, + 708.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 276.0, + 397.0, + 276.0, + 397.0, + 342.0, + 347.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 276.0, + 1248.0, + 276.0, + 1248.0, + 299.0, + 1225.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 319.0, + 395.0, + 319.0, + 395.0, + 377.0, + 351.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 300.0, + 951.0, + 300.0, + 951.0, + 339.0, + 889.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 295.0, + 1301.0, + 295.0, + 1301.0, + 349.0, + 1221.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 383.0, + 394.0, + 383.0, + 394.0, + 439.0, + 353.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 362.0, + 960.0, + 362.0, + 960.0, + 442.0, + 851.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 424.0, + 393.0, + 424.0, + 393.0, + 485.0, + 354.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 456.0, + 953.0, + 456.0, + 953.0, + 492.0, + 904.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 469.0, + 977.0, + 469.0, + 977.0, + 493.0, + 960.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 482.0, + 391.0, + 482.0, + 391.0, + 516.0, + 354.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 542.0, + 406.0, + 542.0, + 406.0, + 583.0, + 370.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 554.0, + 829.0, + 554.0, + 829.0, + 587.0, + 414.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 535.0, + 960.0, + 535.0, + 960.0, + 584.0, + 922.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 554.0, + 1042.0, + 554.0, + 1042.0, + 586.0, + 999.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 550.0, + 1254.0, + 550.0, + 1254.0, + 589.0, + 1056.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 585.0, + 596.0, + 585.0, + 596.0, + 621.0, + 518.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 585.0, + 678.0, + 585.0, + 678.0, + 621.0, + 665.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 583.0, + 1154.0, + 583.0, + 1154.0, + 622.0, + 1074.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 583.0, + 1240.0, + 583.0, + 1240.0, + 622.0, + 1226.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 626.0, + 603.0, + 626.0, + 603.0, + 670.0, + 552.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 625.0, + 1144.0, + 625.0, + 1144.0, + 671.0, + 1089.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.75, + 346.0, + 618.75, + 346.0, + 618.75, + 367.0, + 516.75, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 691.0, + 657.0, + 691.0, + 657.0, + 724.0, + 295.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 691.0, + 915.0, + 691.0, + 915.0, + 724.0, + 700.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 691.0, + 1166.0, + 691.0, + 1166.0, + 724.0, + 944.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 691.0, + 1403.0, + 691.0, + 1403.0, + 724.0, + 1185.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 719.0, + 1403.0, + 719.0, + 1403.0, + 755.0, + 294.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 750.0, + 1403.0, + 750.0, + 1403.0, + 787.0, + 294.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 818.0, + 291.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 810.0, + 1187.0, + 810.0, + 1187.0, + 851.0, + 294.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1276.0, + 786.0, + 1276.0, + 786.0, + 1321.0, + 292.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1508.0, + 668.0, + 1508.0, + 668.0, + 1544.0, + 295.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1062.0, + 1403.0, + 1062.0, + 1403.0, + 1096.0, + 296.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1093.0, + 511.0, + 1093.0, + 511.0, + 1146.0, + 291.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1100.0, + 856.0, + 1100.0, + 856.0, + 1142.0, + 758.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1100.0, + 1408.0, + 1100.0, + 1408.0, + 1142.0, + 901.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1142.0, + 1403.0, + 1142.0, + 1403.0, + 1179.0, + 318.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1172.0, + 1143.0, + 1172.0, + 1143.0, + 1207.0, + 293.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1207.0, + 1191.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1206.0, + 644.0, + 1206.0, + 644.0, + 1236.0, + 296.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1206.0, + 1361.0, + 1206.0, + 1361.0, + 1236.0, + 663.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1349.0, + 1278.0, + 1349.0, + 1278.0, + 1382.0, + 297.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 1405.0, + 1410.0, + 1405.0, + 1446.0, + 292.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1439.0, + 948.0, + 1439.0, + 948.0, + 1472.0, + 295.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1407.0, + 1741.0, + 1407.0, + 1779.0, + 295.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1808.0, + 292.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1833.0, + 1405.0, + 1833.0, + 1405.0, + 1870.0, + 293.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1864.0, + 944.0, + 1864.0, + 944.0, + 1899.0, + 292.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 1405.0, + 1596.0, + 1405.0, + 1631.0, + 294.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1628.0, + 493.0, + 1628.0, + 493.0, + 1661.0, + 296.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1628.0, + 937.0, + 1628.0, + 937.0, + 1661.0, + 513.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1661.0, + 1046.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 431.0, + 1658.0, + 431.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1658.0, + 565.0, + 1658.0, + 565.0, + 1694.0, + 524.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1658.0, + 1407.0, + 1658.0, + 1407.0, + 1694.0, + 619.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 1222.0, + 1688.0, + 1222.0, + 1738.0, + 293.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1688.0, + 1292.0, + 1688.0, + 1292.0, + 1738.0, + 1285.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 909.0, + 1910.0, + 909.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1910.0, + 1408.0, + 1910.0, + 1408.0, + 1947.0, + 1010.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 296.0, + 1941.0, + 296.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1941.0, + 997.0, + 1941.0, + 997.0, + 1978.0, + 395.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1941.0, + 1087.0, + 1941.0, + 1087.0, + 1978.0, + 1054.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 1106.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 568.0, + 1974.0, + 568.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1974.0, + 1091.0, + 1974.0, + 1091.0, + 2006.0, + 588.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2006.0, + 1137.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1034.0, + 2002.0, + 1034.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 2002.0, + 1408.0, + 2002.0, + 1408.0, + 2038.0, + 1076.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 898.0, + 1403.0, + 898.0, + 1403.0, + 933.0, + 295.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 928.0, + 992.0, + 928.0, + 992.0, + 964.0, + 295.0, + 964.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 607, + 1404, + 607, + 1404, + 885, + 297, + 885 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1404, + 1758, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1169, + 1404, + 1169, + 1404, + 1445, + 297, + 1445 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1559, + 1403, + 1559, + 1403, + 1743, + 298, + 1743 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 438, + 1404, + 438, + 1404, + 593, + 298, + 593 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 999, + 1403, + 999, + 1403, + 1154, + 298, + 1154 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 323, + 299, + 323 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 300, + 936, + 602, + 936, + 602, + 968, + 300, + 968 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 301, + 1495, + 702, + 1495, + 702, + 1527, + 301, + 1527 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 299, + 375, + 556, + 375, + 556, + 407, + 299, + 407 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.795 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.748 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 104, + 298, + 104 + ], + "score": 0.184 + }, + { + "category_id": 13, + "poly": [ + 1096, + 1297, + 1275, + 1297, + 1275, + 1359, + 1096, + 1359 + ], + "score": 0.93, + "latex": "\\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { G } } \\right) ^ { T } \\ \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1353, + 477, + 1353, + 477, + 1417, + 298, + 1417 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\left( \\frac { \\partial \\Delta z } { \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1168, + 1115, + 1168, + 1115, + 1211, + 1053, + 1211 + ], + "score": 0.92, + "latex": "\\frac { \\partial f ( z ) } { \\partial z }" + }, + { + "category_id": 13, + "poly": [ + 329, + 791, + 567, + 791, + 567, + 825, + 329, + 825 + ], + "score": 0.92, + "latex": "\\| f ( z + \\Delta z ) - f ( z ) \\|" + }, + { + "category_id": 13, + "poly": [ + 297, + 1651, + 402, + 1651, + 402, + 1685, + 297, + 1685 + ], + "score": 0.91, + "latex": "\\mathcal { U } ( - 1 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 975, + 1591, + 1092, + 1591, + 1092, + 1622, + 975, + 1622 + ], + "score": 0.91, + "latex": "z \\sim p ( z )" + }, + { + "category_id": 13, + "poly": [ + 486, + 761, + 552, + 761, + 552, + 793, + 486, + 793 + ], + "score": 0.9, + "latex": "| | \\Delta z | |" + }, + { + "category_id": 13, + "poly": [ + 988, + 1621, + 1079, + 1621, + 1079, + 1653, + 988, + 1653 + ], + "score": 0.9, + "latex": "\\mathcal { N } ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 989, + 1654, + 1107, + 1654, + 1107, + 1682, + 989, + 1682 + ], + "score": 0.9, + "latex": "0 \\leq s \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 827, + 1654, + 930, + 1654, + 930, + 1680, + 827, + 1680 + ], + "score": 0.9, + "latex": "\\bar { z } = s \\cdot z" + }, + { + "category_id": 13, + "poly": [ + 951, + 1063, + 1091, + 1063, + 1091, + 1091, + 951, + 1091 + ], + "score": 0.88, + "latex": "\\alpha = 0 . 0 0 0 1" + }, + { + "category_id": 13, + "poly": [ + 707, + 732, + 748, + 732, + 748, + 759, + 707, + 759 + ], + "score": 0.85, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 1131, + 645, + 1150, + 645, + 1150, + 667, + 1131, + 667 + ], + "score": 0.76, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1086, + 762, + 1113, + 762, + 1113, + 789, + 1086, + 789 + ], + "score": 0.75, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1122, + 676, + 1141, + 676, + 1141, + 697, + 1122, + 697 + ], + "score": 0.74, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 485, + 829, + 503, + 829, + 503, + 849, + 485, + 849 + ], + "score": 0.7, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1267, + 1324, + 1267, + 1324, + 1295, + 1279, + 1295 + ], + "score": 0.69, + "latex": "{ \\bf 5 \\ B }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1038, + 1145, + 1038, + 1145, + 1060, + 1128, + 1060 + ], + "score": 0.64, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 378, + 1760, + 423, + 1760, + 423, + 1788, + 378, + 1788 + ], + "score": 0.6, + "latex": "^ { 3 \\mathrm { ~ b ~ } }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1796, + 1003, + 1796, + 1003, + 1817, + 987, + 1817 + ], + "score": 0.56, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1341, + 531, + 1402, + 531, + 1402, + 561, + 1341, + 561 + ], + "score": 0.33, + "latex": "3 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 643, + 609, + 712, + 609, + 712, + 638, + 643, + 638 + ], + "score": 0.3, + "latex": "2 - 3" + }, + { + "category_id": 13, + "poly": [ + 984, + 793, + 1010, + 793, + 1010, + 820, + 984, + 820 + ], + "score": 0.29, + "latex": "\\mathrm { D }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 933.0, + 607.0, + 933.0, + 607.0, + 973.0, + 294.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 706.0, + 1495.0, + 706.0, + 1531.0, + 295.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 372.0, + 559.0, + 372.0, + 559.0, + 412.0, + 294.0, + 412.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 606.0, + 642.0, + 606.0, + 642.0, + 645.0, + 294.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 606.0, + 1406.0, + 606.0, + 1406.0, + 645.0, + 713.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 638.0, + 1130.0, + 638.0, + 1130.0, + 674.0, + 294.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 638.0, + 1404.0, + 638.0, + 1404.0, + 674.0, + 1151.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 671.0, + 1121.0, + 671.0, + 1121.0, + 704.0, + 295.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 671.0, + 1405.0, + 671.0, + 1405.0, + 704.0, + 1142.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 699.0, + 1405.0, + 699.0, + 1405.0, + 735.0, + 294.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 726.0, + 706.0, + 726.0, + 706.0, + 770.0, + 291.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 726.0, + 1407.0, + 726.0, + 1407.0, + 770.0, + 749.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 758.0, + 485.0, + 758.0, + 485.0, + 796.0, + 294.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 758.0, + 1085.0, + 758.0, + 1085.0, + 796.0, + 553.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 758.0, + 1406.0, + 758.0, + 1406.0, + 796.0, + 1114.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 791.0, + 328.0, + 791.0, + 328.0, + 827.0, + 294.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 791.0, + 983.0, + 791.0, + 983.0, + 827.0, + 568.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 791.0, + 1406.0, + 791.0, + 1406.0, + 827.0, + 1011.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 821.0, + 484.0, + 821.0, + 484.0, + 858.0, + 292.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 821.0, + 1407.0, + 821.0, + 1407.0, + 858.0, + 504.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 852.0, + 625.0, + 852.0, + 625.0, + 889.0, + 293.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 377.0, + 1760.0, + 377.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1793.0, + 424.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 986.0, + 1789.0, + 986.0, + 1826.0, + 294.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1826.0, + 1004.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1327.0, + 2002.0, + 1327.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1160.0, + 1052.0, + 1160.0, + 1052.0, + 1243.0, + 292.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1160.0, + 1405.0, + 1160.0, + 1405.0, + 1243.0, + 1116.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1237.0, + 1404.0, + 1237.0, + 1404.0, + 1269.0, + 296.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1265.0, + 1278.0, + 1265.0, + 1278.0, + 1302.0, + 296.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 1265.0, + 1406.0, + 1265.0, + 1406.0, + 1302.0, + 1325.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1310.0, + 1095.0, + 1310.0, + 1095.0, + 1353.0, + 294.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1297.0, + 1404.0, + 1297.0, + 1404.0, + 1355.0, + 1276.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1354.0, + 1405.0, + 1354.0, + 1405.0, + 1417.0, + 478.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1004.0, + 1410.0, + 1004.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1324.0, + 1165.0, + 1324.0, + 1165.0, + 1356.5, + 1112.0, + 1356.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1561.0, + 1404.0, + 1561.0, + 1404.0, + 1593.0, + 297.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1591.0, + 974.0, + 1591.0, + 974.0, + 1623.0, + 296.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1591.0, + 1404.0, + 1591.0, + 1404.0, + 1623.0, + 1093.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1618.0, + 987.0, + 1618.0, + 987.0, + 1656.0, + 291.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1618.0, + 1407.0, + 1618.0, + 1407.0, + 1656.0, + 1080.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 296.0, + 1651.0, + 296.0, + 1687.0, + 293.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1651.0, + 826.0, + 1651.0, + 826.0, + 1687.0, + 403.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1651.0, + 988.0, + 1651.0, + 988.0, + 1687.0, + 931.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1687.0, + 1108.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1683.0, + 1404.0, + 1683.0, + 1404.0, + 1714.0, + 297.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1714.0, + 835.0, + 1714.0, + 835.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 440.0, + 1404.0, + 440.0, + 1404.0, + 473.0, + 296.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 466.0, + 1404.0, + 466.0, + 1404.0, + 508.0, + 293.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 500.0, + 1405.0, + 500.0, + 1405.0, + 537.0, + 293.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 529.0, + 1340.0, + 529.0, + 1340.0, + 569.0, + 293.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 559.0, + 597.0, + 559.0, + 597.0, + 598.0, + 294.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1034.0, + 297.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1127.0, + 1030.0, + 1127.0, + 1067.0, + 293.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1030.0, + 1405.0, + 1030.0, + 1405.0, + 1067.0, + 1146.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1062.0, + 950.0, + 1062.0, + 950.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1062.0, + 1404.0, + 1062.0, + 1404.0, + 1095.0, + 1092.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1092.0, + 1403.0, + 1092.0, + 1403.0, + 1126.0, + 296.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1123.0, + 1223.0, + 1123.0, + 1223.0, + 1156.0, + 296.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 493.0, + 291.0, + 493.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 557, + 1404, + 557, + 1404, + 803, + 297, + 803 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1403, + 229, + 1403, + 445, + 297, + 445 + ], + "score": 0.973 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 488, + 544, + 488, + 544, + 523, + 299, + 523 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 299, + 848, + 488, + 848, + 488, + 881, + 299, + 881 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 292, + 897, + 1406, + 897, + 1406, + 2044, + 292, + 2044 + ], + "score": 0.655 + }, + { + "category_id": 13, + "poly": [ + 968, + 353, + 1012, + 353, + 1012, + 382, + 968, + 382 + ], + "score": 0.62, + "latex": "^ { 3 \\mathrm { ~ b ~ } }" + }, + { + "category_id": 13, + "poly": [ + 1181, + 594, + 1199, + 594, + 1199, + 616, + 1181, + 616 + ], + "score": 0.61, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 871, + 384, + 912, + 384, + 912, + 412, + 871, + 412 + ], + "score": 0.49, + "latex": "^ { 2 \\mathbf { b } }" + }, + { + "category_id": 13, + "poly": [ + 448, + 990, + 588, + 990, + 588, + 1024, + 448, + 1024 + ], + "score": 0.33, + "latex": "\\left( \\left\\{ O S D I \\right\\} \\ I \\bar { \\ 6 } \\right)" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 481.0, + 550.0, + 481.0, + 550.0, + 532.0, + 292.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 848.0, + 490.0, + 848.0, + 490.0, + 885.0, + 297.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 555.0, + 1405.0, + 555.0, + 1405.0, + 595.0, + 292.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 588.0, + 1180.0, + 588.0, + 1180.0, + 625.0, + 291.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 588.0, + 1405.0, + 588.0, + 1405.0, + 625.0, + 1200.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 620.0, + 1402.0, + 620.0, + 1402.0, + 654.0, + 295.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 685.0, + 292.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 679.0, + 1404.0, + 679.0, + 1404.0, + 715.0, + 294.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 710.0, + 1405.0, + 710.0, + 1405.0, + 746.0, + 291.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 740.0, + 1405.0, + 740.0, + 1405.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 773.0, + 1143.0, + 773.0, + 1143.0, + 806.0, + 295.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1403.0, + 320.0, + 1403.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 967.0, + 348.0, + 967.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 348.0, + 1407.0, + 348.0, + 1407.0, + 389.0, + 1013.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 383.0, + 870.0, + 383.0, + 870.0, + 417.0, + 293.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 383.0, + 1407.0, + 383.0, + 1407.0, + 417.0, + 913.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 415.0, + 1295.0, + 415.0, + 1295.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 899.0, + 1405.0, + 899.0, + 1405.0, + 935.0, + 294.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 929.0, + 1402.0, + 929.0, + 1402.0, + 968.0, + 321.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 959.0, + 1405.0, + 959.0, + 1405.0, + 1000.0, + 321.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 991.0, + 447.0, + 991.0, + 447.0, + 1028.0, + 320.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 991.0, + 821.0, + 991.0, + 821.0, + 1028.0, + 589.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1041.0, + 1402.0, + 1041.0, + 1402.0, + 1080.0, + 293.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1073.0, + 449.0, + 1073.0, + 449.0, + 1107.0, + 323.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 1404.0, + 1124.0, + 1404.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1156.0, + 611.0, + 1156.0, + 611.0, + 1187.0, + 322.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 1404.0, + 1207.0, + 1404.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1238.0, + 1404.0, + 1238.0, + 1404.0, + 1274.0, + 322.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1265.0, + 922.0, + 1265.0, + 922.0, + 1306.0, + 319.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1320.0, + 1402.0, + 1320.0, + 1402.0, + 1352.0, + 296.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1348.0, + 1371.0, + 1348.0, + 1371.0, + 1386.0, + 320.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1404.0, + 1398.0, + 1404.0, + 1437.0, + 294.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1432.0, + 506.0, + 1432.0, + 506.0, + 1464.0, + 323.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1482.0, + 1402.0, + 1482.0, + 1402.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1515.0, + 1050.0, + 1515.0, + 1050.0, + 1547.0, + 323.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1603.0, + 292.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1596.0, + 1405.0, + 1596.0, + 1405.0, + 1629.0, + 324.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1624.0, + 1244.0, + 1624.0, + 1244.0, + 1660.0, + 323.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1673.0, + 1404.0, + 1673.0, + 1404.0, + 1713.0, + 294.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1708.0, + 773.0, + 1708.0, + 773.0, + 1741.0, + 323.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1789.0, + 729.0, + 1789.0, + 729.0, + 1821.0, + 322.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1405.0, + 1835.0, + 1405.0, + 1878.0, + 294.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1871.0, + 609.0, + 1871.0, + 609.0, + 1902.0, + 322.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1958.0, + 293.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 2006.0, + 462.0, + 2006.0, + 462.0, + 2036.0, + 326.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 293, + 1438, + 1402, + 1438, + 1402, + 1504, + 293, + 1504 + ], + "score": 0.742 + }, + { + "category_id": 1, + "poly": [ + 293, + 1520, + 1402, + 1520, + 1402, + 1588, + 293, + 1588 + ], + "score": 0.728 + }, + { + "category_id": 1, + "poly": [ + 295, + 738, + 1403, + 738, + 1403, + 803, + 295, + 803 + ], + "score": 0.722 + }, + { + "category_id": 1, + "poly": [ + 290, + 1354, + 1402, + 1354, + 1402, + 1421, + 290, + 1421 + ], + "score": 0.716 + }, + { + "category_id": 1, + "poly": [ + 298, + 1605, + 1401, + 1605, + 1401, + 1701, + 298, + 1701 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 293, + 1271, + 1400, + 1271, + 1400, + 1336, + 293, + 1336 + ], + "score": 0.695 + }, + { + "category_id": 1, + "poly": [ + 292, + 1720, + 1401, + 1720, + 1401, + 1784, + 292, + 1784 + ], + "score": 0.693 + }, + { + "category_id": 1, + "poly": [ + 298, + 1103, + 1404, + 1103, + 1404, + 1198, + 298, + 1198 + ], + "score": 0.661 + }, + { + "category_id": 1, + "poly": [ + 300, + 511, + 1400, + 511, + 1400, + 604, + 300, + 604 + ], + "score": 0.656 + }, + { + "category_id": 1, + "poly": [ + 295, + 1019, + 1399, + 1019, + 1399, + 1085, + 295, + 1085 + ], + "score": 0.654 + }, + { + "category_id": 1, + "poly": [ + 296, + 936, + 1398, + 936, + 1398, + 1002, + 296, + 1002 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 295, + 1804, + 1400, + 1804, + 1400, + 1868, + 295, + 1868 + ], + "score": 0.625 + }, + { + "category_id": 1, + "poly": [ + 286, + 1216, + 1323, + 1216, + 1323, + 1254, + 286, + 1254 + ], + "score": 0.609 + }, + { + "category_id": 1, + "poly": [ + 299, + 395, + 1399, + 395, + 1399, + 491, + 299, + 491 + ], + "score": 0.598 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1396, + 1971, + 1396, + 2035, + 297, + 2035 + ], + "score": 0.598 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1401, + 228, + 1401, + 294, + 294, + 294 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 297, + 1887, + 1398, + 1887, + 1398, + 1953, + 297, + 1953 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 295, + 625, + 1406, + 625, + 1406, + 721, + 295, + 721 + ], + "score": 0.45 + }, + { + "category_id": 1, + "poly": [ + 293, + 312, + 1400, + 312, + 1400, + 378, + 293, + 378 + ], + "score": 0.367 + }, + { + "category_id": 1, + "poly": [ + 296, + 820, + 1406, + 820, + 1406, + 917, + 296, + 917 + ], + "score": 0.33 + }, + { + "category_id": 13, + "poly": [ + 940, + 1609, + 960, + 1609, + 960, + 1640, + 940, + 1640 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1435.0, + 1405.0, + 1435.0, + 1405.0, + 1478.0, + 292.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1470.0, + 611.0, + 1470.0, + 611.0, + 1501.0, + 321.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 1404.0, + 1520.0, + 1404.0, + 1558.0, + 293.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1553.0, + 1182.0, + 1553.0, + 1182.0, + 1588.0, + 322.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 734.0, + 1405.0, + 734.0, + 1405.0, + 777.0, + 292.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 768.0, + 561.0, + 768.0, + 561.0, + 804.0, + 323.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1354.0, + 1404.0, + 1354.0, + 1404.0, + 1391.0, + 292.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1385.0, + 1376.0, + 1385.0, + 1376.0, + 1421.0, + 322.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1605.0, + 939.0, + 1605.0, + 939.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1605.0, + 1402.0, + 1605.0, + 1402.0, + 1643.0, + 961.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1676.0, + 321.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1669.0, + 645.0, + 1669.0, + 645.0, + 1702.0, + 322.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 1406.0, + 1269.0, + 1406.0, + 1309.0, + 292.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1301.0, + 599.0, + 1301.0, + 599.0, + 1337.0, + 321.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1716.0, + 1404.0, + 1716.0, + 1404.0, + 1758.0, + 294.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1751.0, + 597.0, + 1751.0, + 597.0, + 1781.0, + 322.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1141.0, + 293.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1135.0, + 1405.0, + 1135.0, + 1405.0, + 1169.0, + 322.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1165.0, + 518.0, + 1165.0, + 518.0, + 1199.0, + 322.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 507.0, + 1403.0, + 507.0, + 1403.0, + 553.0, + 293.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 538.0, + 1404.0, + 538.0, + 1404.0, + 582.0, + 320.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 568.0, + 505.0, + 568.0, + 505.0, + 606.0, + 322.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1016.0, + 1404.0, + 1016.0, + 1404.0, + 1060.0, + 294.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1051.0, + 691.0, + 1051.0, + 691.0, + 1086.0, + 323.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 937.0, + 1403.0, + 937.0, + 1403.0, + 973.0, + 297.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 968.0, + 1225.0, + 968.0, + 1225.0, + 1003.0, + 321.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 1404.0, + 1801.0, + 1404.0, + 1840.0, + 293.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1831.0, + 399.0, + 1831.0, + 399.0, + 1871.0, + 322.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1216.0, + 1327.0, + 1216.0, + 1327.0, + 1255.0, + 292.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 393.0, + 1405.0, + 393.0, + 1405.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 428.0, + 1403.0, + 428.0, + 1403.0, + 463.0, + 324.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 459.0, + 883.0, + 459.0, + 883.0, + 493.0, + 323.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1401.0, + 1970.0, + 1401.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2000.0, + 1344.0, + 2000.0, + 1344.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 261.0, + 1184.0, + 261.0, + 1184.0, + 295.0, + 319.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 1403.0, + 1885.0, + 1403.0, + 1925.0, + 295.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1920.0, + 1300.0, + 1920.0, + 1300.0, + 1954.0, + 322.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 623.0, + 1404.0, + 623.0, + 1404.0, + 663.0, + 293.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 653.0, + 1406.0, + 653.0, + 1406.0, + 694.0, + 322.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 688.0, + 1056.0, + 688.0, + 1056.0, + 722.0, + 323.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 351.0, + 293.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 344.0, + 855.0, + 344.0, + 855.0, + 379.0, + 322.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 820.0, + 1404.0, + 820.0, + 1404.0, + 859.0, + 295.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 855.0, + 1404.0, + 855.0, + 1404.0, + 889.0, + 324.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 885.0, + 722.0, + 885.0, + 722.0, + 919.0, + 324.0, + 919.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1513, + 1404, + 1513, + 1404, + 1738, + 297, + 1738 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1337, + 1405, + 1337, + 1405, + 1463, + 297, + 1463 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1153, + 1405, + 1153, + 1405, + 1247, + 298, + 1247 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 578, + 1897, + 1114, + 1897, + 1114, + 2045, + 578, + 2045 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 455, + 1791, + 1233, + 1791, + 1233, + 1854, + 455, + 1854 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 724, + 1470, + 973, + 1470, + 973, + 1510, + 724, + 1510 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 980, + 1401, + 980, + 1401, + 1043, + 297, + 1043 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 299, + 1860, + 1129, + 1860, + 1129, + 1891, + 299, + 1891 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 298, + 1281, + 1011, + 1281, + 1011, + 1314, + 298, + 1314 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1810, + 1400, + 1810, + 1400, + 1840, + 1352, + 1840 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 298, + 1085, + 1046, + 1085, + 1046, + 1123, + 298, + 1123 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1476, + 1399, + 1476, + 1399, + 1506, + 1352, + 1506 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1955, + 1401, + 1955, + 1401, + 1986, + 1351, + 1986 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.874 + }, + { + "category_id": 0, + "poly": [ + 300, + 912, + 897, + 912, + 897, + 948, + 300, + 948 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 301, + 1752, + 725, + 1752, + 725, + 1784, + 301, + 1784 + ], + "score": 0.71 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 292, + 226, + 1406, + 226, + 1406, + 860, + 292, + 860 + ], + "score": 0.604 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.215 + }, + { + "category_id": 14, + "poly": [ + 577, + 1897, + 1118, + 1897, + 1118, + 2045, + 577, + 2045 + ], + "score": 0.94, + "latex": "H = \\left[ \\begin{array} { c c c } { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z ^ { 2 } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { - \\eta \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } ^ { 2 } } } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } ^ { 2 } } } \\end{array} \\right]" + }, + { + "category_id": 13, + "poly": [ + 545, + 1639, + 710, + 1639, + 710, + 1679, + 545, + 1679 + ], + "score": 0.93, + "latex": "\\textstyle \\sum _ { n = 1 } ^ { N } L _ { G } ( z _ { n } ^ { \\prime } )" + }, + { + "category_id": 14, + "poly": [ + 723, + 1469, + 976, + 1469, + 976, + 1510, + 723, + 1510 + ], + "score": 0.93, + "latex": "L = [ \\eta L _ { G } , L _ { D } , L _ { G } ] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1607, + 1178, + 1607, + 1178, + 1642, + 1095, + 1642 + ], + "score": 0.93, + "latex": "L _ { G } ( z ^ { \\prime } )" + }, + { + "category_id": 14, + "poly": [ + 458, + 1789, + 1237, + 1789, + 1237, + 1855, + 458, + 1855 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { g = \\left[ \\eta \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial L _ { D } ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , \\frac { \\partial L _ { G } ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } = \\left[ - \\eta \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } , \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } , - \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } \\right] ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 616, + 1401, + 721, + 1401, + 721, + 1434, + 616, + 1434 + ], + "score": 0.92, + "latex": "z \\sim p ( z )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1514, + 466, + 1514, + 466, + 1552, + 374, + 1552 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\eta \\ : = \\ : \\frac { 1 } { N } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1547, + 1242, + 1547, + 1242, + 1577, + 1207, + 1577 + ], + "score": 0.88, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1547, + 1326, + 1547, + 1326, + 1577, + 1292, + 1577 + ], + "score": 0.88, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1517, + 1056, + 1517, + 1056, + 1544, + 1015, + 1544 + ], + "score": 0.87, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1341, + 1122, + 1341, + 1122, + 1368, + 1081, + 1368 + ], + "score": 0.85, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1371, + 1394, + 1371, + 1394, + 1399, + 1354, + 1399 + ], + "score": 0.83, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 894, + 1581, + 912, + 1581, + 912, + 1608, + 894, + 1608 + ], + "score": 0.82, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 781, + 1711, + 798, + 1711, + 798, + 1732, + 781, + 1732 + ], + "score": 0.74, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 482, + 1516, + 510, + 1516, + 510, + 1544, + 482, + 1544 + ], + "score": 0.73, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 382, + 1554, + 399, + 1554, + 399, + 1574, + 382, + 1574 + ], + "score": 0.71, + "latex": "z" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1281.0, + 1014.0, + 1281.0, + 1014.0, + 1316.0, + 295.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1082.0, + 1049.0, + 1082.0, + 1049.0, + 1128.0, + 293.0, + 1128.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, + 910.0, + 898.0, + 910.0, + 898.0, + 953.0, + 295.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1509.0, + 373.0, + 1509.0, + 373.0, + 1557.0, + 292.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1509.0, + 481.0, + 1509.0, + 481.0, + 1557.0, + 467.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1509.0, + 1014.0, + 1509.0, + 1014.0, + 1557.0, + 511.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1509.0, + 1407.0, + 1509.0, + 1407.0, + 1557.0, + 1057.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1546.0, + 381.0, + 1546.0, + 381.0, + 1581.0, + 294.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1546.0, + 1206.0, + 1546.0, + 1206.0, + 1581.0, + 400.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1546.0, + 1291.0, + 1546.0, + 1291.0, + 1581.0, + 1243.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1546.0, + 1404.0, + 1546.0, + 1404.0, + 1581.0, + 1327.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1576.0, + 893.0, + 1576.0, + 893.0, + 1612.0, + 295.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1612.0, + 913.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1608.0, + 1094.0, + 1608.0, + 1094.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1608.0, + 1404.0, + 1608.0, + 1404.0, + 1643.0, + 1179.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1624.0, + 544.0, + 1624.0, + 544.0, + 1709.0, + 283.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1624.0, + 1414.0, + 1624.0, + 1414.0, + 1709.0, + 711.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1704.0, + 780.0, + 1704.0, + 780.0, + 1740.0, + 296.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1704.0, + 810.0, + 1704.0, + 810.0, + 1740.0, + 799.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1336.0, + 1080.0, + 1336.0, + 1080.0, + 1375.0, + 292.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1336.0, + 1405.0, + 1336.0, + 1405.0, + 1375.0, + 1123.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1353.0, + 1372.0, + 1353.0, + 1405.0, + 294.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1372.0, + 1403.0, + 1372.0, + 1403.0, + 1405.0, + 1395.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1400.0, + 615.0, + 1400.0, + 615.0, + 1436.0, + 292.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1400.0, + 1406.0, + 1400.0, + 1406.0, + 1436.0, + 722.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1433.0, + 935.0, + 1433.0, + 935.0, + 1466.0, + 294.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1190.0, + 292.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1184.0, + 1403.0, + 1184.0, + 1403.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 705.0, + 1217.0, + 705.0, + 1248.0, + 293.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 978.0, + 1405.0, + 978.0, + 1405.0, + 1017.0, + 293.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1010.0, + 620.0, + 1010.0, + 620.0, + 1045.0, + 295.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1856.0, + 1129.0, + 1856.0, + 1129.0, + 1896.0, + 293.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1749.0, + 728.0, + 1749.0, + 728.0, + 1789.0, + 296.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 300.0, + 322.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 292.0, + 574.0, + 292.0, + 574.0, + 325.0, + 321.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 340.0, + 1403.0, + 340.0, + 1403.0, + 376.0, + 295.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 371.0, + 986.0, + 371.0, + 986.0, + 405.0, + 320.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 419.0, + 1404.0, + 419.0, + 1404.0, + 455.0, + 295.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 486.0, + 323.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 482.0, + 395.0, + 482.0, + 395.0, + 512.0, + 323.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 529.0, + 1402.0, + 529.0, + 1402.0, + 563.0, + 294.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 561.0, + 1173.0, + 561.0, + 1173.0, + 597.0, + 323.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 605.0, + 1404.0, + 605.0, + 1404.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 640.0, + 915.0, + 640.0, + 915.0, + 674.0, + 318.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 1404.0, + 688.0, + 1404.0, + 724.0, + 294.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 720.0, + 1390.0, + 720.0, + 1390.0, + 756.0, + 324.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 769.0, + 1402.0, + 769.0, + 1402.0, + 804.0, + 294.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 799.0, + 1404.0, + 799.0, + 1404.0, + 835.0, + 324.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 830.0, + 801.0, + 830.0, + 801.0, + 863.0, + 323.0, + 863.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1375, + 1405, + 1375, + 1405, + 1530, + 296, + 1530 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1132, + 1402, + 1132, + 1402, + 1244, + 297, + 1244 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 302, + 416, + 1396, + 416, + 1396, + 518, + 302, + 518 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 303, + 1862, + 1404, + 1862, + 1404, + 1957, + 303, + 1957 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 447, + 270, + 1248, + 270, + 1248, + 410, + 447, + 410 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 361, + 1706, + 1403, + 1706, + 1403, + 1842, + 361, + 1842 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 301, + 528, + 1401, + 528, + 1401, + 621, + 301, + 621 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 600, + 1251, + 1101, + 1251, + 1101, + 1326, + 600, + 1326 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 299, + 872, + 1401, + 872, + 1401, + 949, + 299, + 949 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 479, + 1965, + 1221, + 1965, + 1221, + 2045, + 479, + 2045 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 297, + 1622, + 1400, + 1622, + 1400, + 1686, + 297, + 1686 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 795, + 1402, + 795, + 1402, + 859, + 299, + 859 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 599, + 1042, + 1099, + 1042, + 1099, + 1122, + 599, + 1122 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 597, + 956, + 1078, + 956, + 1078, + 1035, + 597, + 1035 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 430, + 710, + 1266, + 710, + 1266, + 790, + 430, + 790 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 859, + 74, + 859, + 106, + 297, + 106 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1073, + 228, + 1073, + 263, + 298, + 263 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 302, + 1565, + 790, + 1565, + 790, + 1598, + 302, + 1598 + ], + "score": 0.918 + }, + { + "category_id": 8, + "poly": [ + 430, + 625, + 1248, + 625, + 1248, + 706, + 430, + 706 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1274, + 1400, + 1274, + 1400, + 1306, + 1351, + 1306 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 319, + 1329, + 1115, + 1329, + 1115, + 1362, + 319, + 1362 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1068, + 1400, + 1068, + 1400, + 1099, + 1351, + 1099 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1991, + 1400, + 1991, + 1400, + 2022, + 1351, + 2022 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1351, + 983, + 1400, + 983, + 1400, + 1013, + 1351, + 1013 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1351, + 738, + 1400, + 738, + 1400, + 768, + 1351, + 768 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1351, + 653, + 1400, + 653, + 1400, + 684, + 1351, + 684 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1351, + 324, + 1400, + 324, + 1400, + 355, + 1351, + 355 + ], + "score": 0.755 + }, + { + "category_id": 9, + "poly": [ + 1351, + 324, + 1401, + 324, + 1401, + 355, + 1351, + 355 + ], + "score": 0.219 + }, + { + "category_id": 13, + "poly": [ + 723, + 903, + 897, + 903, + 897, + 949, + 723, + 949 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\Delta z } = \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 599, + 1250, + 1101, + 1250, + 1101, + 1326, + 599, + 1326 + ], + "score": 0.94, + "latex": "\\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } } \\qquad \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } \\approx \\frac { \\partial ^ { 2 } f ( z ) } { \\partial z \\partial \\theta _ { D } }" + }, + { + "category_id": 13, + "poly": [ + 507, + 1170, + 588, + 1170, + 588, + 1218, + 507, + 1218 + ], + "score": 0.94, + "latex": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\boldsymbol { z } ^ { \\prime } \\partial \\theta _ { D } }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1170, + 722, + 1170, + 722, + 1218, + 642, + 1218 + ], + "score": 0.94, + "latex": "\\frac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\boldsymbol { z } ^ { \\prime } \\partial \\theta _ { D } }" + }, + { + "category_id": 13, + "poly": [ + 419, + 479, + 605, + 479, + 605, + 520, + 419, + 520 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\gamma = \\frac { 1 + \\eta } { 2 } \\approx \\frac { 1 - \\eta } { 2 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 445, + 268, + 1253, + 268, + 1253, + 413, + 445, + 413 + ], + "score": 0.93, + "latex": "A = \\frac { 1 } { 2 } ( H - H ^ { T } ) = \\left[ \\begin{array} { c c c } { 0 } & { - \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { D } } } & { \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\Delta z \\partial \\theta _ { G } } } \\\\ { \\frac { 1 + \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\Delta z } } & { 0 } & { \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } } \\\\ { - \\frac { 1 - \\eta } { 2 } \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\Delta z } } & { - \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } } & { 0 } \\end{array} \\right]" + }, + { + "category_id": 13, + "poly": [ + 1006, + 1128, + 1076, + 1128, + 1076, + 1174, + 1006, + 1174 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }" + }, + { + "category_id": 14, + "poly": [ + 598, + 953, + 1099, + 953, + 1099, + 1126, + 598, + 1126 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { { g _ { D } ^ { * } \\approx { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { D } } } + \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { D } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\\\ { { g _ { G } ^ { * } \\approx - { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial \\theta _ { G } } } - \\lambda \\gamma ~ \\left( { \\displaystyle \\frac { \\partial ^ { 2 } f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } \\partial \\theta _ { G } } } \\right) ^ { T } ~ { \\displaystyle \\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } } } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 432, + 621, + 1258, + 621, + 1258, + 794, + 432, + 794 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { g _ { D } ^ { * } = \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } + \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } } \\\\ & { g _ { G } ^ { * } = - \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { G } } - \\lambda \\gamma \\left( \\cfrac { \\partial ^ { 2 } f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\Delta \\boldsymbol { z } } + \\lambda \\left( \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\cfrac { \\partial f ( \\boldsymbol { z } ^ { \\prime } ) } { \\partial \\theta _ { D } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 480, + 1961, + 1220, + 1961, + 1220, + 2045, + 480, + 2045 + ], + "score": 0.93, + "latex": "f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) \\approx f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 633, + 558, + 833, + 558, + 833, + 593, + 633, + 593 + ], + "score": 0.92, + "latex": "g ^ { * } g + \\lambda A ^ { T } g" + }, + { + "category_id": 13, + "poly": [ + 849, + 1894, + 1051, + 1894, + 1051, + 1928, + 849, + 1928 + ], + "score": 0.92, + "latex": "\\theta _ { D } ^ { \\prime } = \\theta _ { D } + \\Delta \\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 444, + 1134, + 444, + 1134, + 483, + 1082, + 483 + ], + "score": 0.92, + "latex": "\\scriptstyle { \\frac { 1 } { 2 0 4 8 } }" + }, + { + "category_id": 13, + "poly": [ + 850, + 443, + 882, + 443, + 882, + 483, + 850, + 483 + ], + "score": 0.9, + "latex": "\\frac { 1 } { 6 4 }" + }, + { + "category_id": 13, + "poly": [ + 449, + 447, + 528, + 447, + 528, + 477, + 449, + 477 + ], + "score": 0.89, + "latex": "\\eta \\ll 1" + }, + { + "category_id": 13, + "poly": [ + 493, + 1926, + 528, + 1926, + 528, + 1955, + 493, + 1955 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 498, + 912, + 533, + 912, + 533, + 942, + 498, + 942 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 344, + 827, + 378, + 827, + 378, + 858, + 344, + 858 + ], + "score": 0.89, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1365, + 797, + 1400, + 797, + 1400, + 827, + 1365, + 827 + ], + "score": 0.88, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1408, + 678, + 1408, + 678, + 1438, + 642, + 1438 + ], + "score": 0.88, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 734, + 1408, + 770, + 1408, + 770, + 1438, + 734, + 1438 + ], + "score": 0.88, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 585, + 911, + 619, + 911, + 619, + 943, + 585, + 943 + ], + "score": 0.88, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 624, + 797, + 664, + 797, + 664, + 823, + 624, + 823 + ], + "score": 0.87, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 824, + 1810, + 849, + 1810, + 849, + 1836, + 824, + 1836 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 747, + 1810, + 774, + 1810, + 774, + 1836, + 747, + 1836 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 734, + 1780, + 761, + 1780, + 761, + 1806, + 734, + 1806 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1780, + 1128, + 1780, + 1128, + 1806, + 1103, + 1806 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1564.0, + 792.0, + 1564.0, + 792.0, + 1600.0, + 295.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1373.0, + 1405.0, + 1373.0, + 1405.0, + 1413.0, + 293.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1407.0, + 641.0, + 1407.0, + 641.0, + 1443.0, + 293.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1407.0, + 733.0, + 1407.0, + 733.0, + 1443.0, + 679.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1443.0, + 771.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1472.0, + 293.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1464.0, + 1405.0, + 1464.0, + 1405.0, + 1503.0, + 293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1494.0, + 398.0, + 1494.0, + 398.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1124.0, + 506.0, + 1124.0, + 506.0, + 1226.0, + 296.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1124.0, + 641.0, + 1124.0, + 641.0, + 1226.0, + 589.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1124.0, + 1005.0, + 1124.0, + 1005.0, + 1226.0, + 723.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1124.0, + 1406.0, + 1124.0, + 1406.0, + 1226.0, + 1077.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1212.0, + 627.0, + 1212.0, + 627.0, + 1248.0, + 295.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.75, + 1173.5, + 592.75, + 1173.5, + 592.75, + 1221.0, + 292.75, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 414.0, + 1401.0, + 414.0, + 1401.0, + 449.0, + 296.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 448.0, + 443.0, + 448.0, + 487.0, + 294.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 443.0, + 849.0, + 443.0, + 849.0, + 487.0, + 529.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 443.0, + 1081.0, + 443.0, + 1081.0, + 487.0, + 883.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 443.0, + 1403.0, + 443.0, + 1403.0, + 482.0, + 1135.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 454.0, + 1138.0, + 454.0, + 1138.0, + 485.0, + 1135.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 481.0, + 418.0, + 481.0, + 418.0, + 516.0, + 296.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.25, + 474.0, + 558.25, + 474.0, + 558.25, + 512.0, + 470.25, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 475.0, + 854.0, + 475.0, + 854.0, + 520.5, + 549.0, + 520.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1862.0, + 1401.0, + 1862.0, + 1401.0, + 1900.0, + 297.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1891.0, + 848.0, + 1891.0, + 848.0, + 1931.0, + 294.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1891.0, + 1404.0, + 1891.0, + 1404.0, + 1931.0, + 1052.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1925.0, + 492.0, + 1925.0, + 492.0, + 1959.0, + 297.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1925.0, + 540.0, + 1925.0, + 540.0, + 1959.0, + 529.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1706.0, + 1403.0, + 1706.0, + 1403.0, + 1742.0, + 361.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1740.0, + 971.0, + 1740.0, + 971.0, + 1774.0, + 394.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1775.0, + 733.0, + 1775.0, + 733.0, + 1815.0, + 356.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1775.0, + 1102.0, + 1775.0, + 1102.0, + 1815.0, + 762.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1775.0, + 1404.0, + 1775.0, + 1404.0, + 1815.0, + 1129.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1808.0, + 746.0, + 1808.0, + 746.0, + 1843.0, + 394.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1808.0, + 823.0, + 1808.0, + 823.0, + 1843.0, + 775.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1808.0, + 1058.0, + 1808.0, + 1058.0, + 1843.0, + 850.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 527.0, + 1406.0, + 527.0, + 1406.0, + 565.0, + 293.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 558.0, + 632.0, + 558.0, + 632.0, + 595.0, + 293.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 558.0, + 1405.0, + 558.0, + 1405.0, + 595.0, + 834.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 368.0, + 589.0, + 368.0, + 624.0, + 293.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 869.0, + 1403.0, + 869.0, + 1403.0, + 909.0, + 293.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 901.0, + 497.0, + 901.0, + 497.0, + 958.0, + 297.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 901.0, + 584.0, + 901.0, + 584.0, + 958.0, + 534.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 901.0, + 722.0, + 901.0, + 722.0, + 958.0, + 620.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 901.0, + 1355.0, + 901.0, + 1355.0, + 955.0, + 898.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1660.0, + 292.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 1192.0, + 1653.0, + 1192.0, + 1689.0, + 293.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 623.0, + 789.0, + 623.0, + 833.0, + 294.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 789.0, + 1364.0, + 789.0, + 1364.0, + 833.0, + 665.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 822.0, + 343.0, + 822.0, + 343.0, + 864.0, + 292.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 822.0, + 394.0, + 822.0, + 394.0, + 864.0, + 379.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1073.0, + 228.0, + 1073.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1327.0, + 1119.0, + 1327.0, + 1119.0, + 1366.0, + 314.0, + 1366.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1052, + 1405, + 1052, + 1405, + 1301, + 296, + 1301 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 1313, + 1404, + 1313, + 1404, + 1439, + 296, + 1439 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 867, + 1401, + 867, + 1401, + 961, + 297, + 961 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 545, + 1404, + 545, + 1404, + 638, + 296, + 638 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 296, + 652, + 1404, + 652, + 1404, + 759, + 296, + 759 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 354, + 284, + 1302, + 284, + 1302, + 365, + 354, + 365 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 355, + 449, + 1303, + 449, + 1303, + 531, + 355, + 531 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 297, + 376, + 1407, + 376, + 1407, + 438, + 297, + 438 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 606, + 1452, + 1092, + 1452, + 1092, + 1491, + 606, + 1491 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 354, + 774, + 1298, + 774, + 1298, + 856, + 354, + 856 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 572, + 1578, + 1125, + 1578, + 1125, + 1618, + 572, + 1618 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 300, + 1629, + 1400, + 1629, + 1400, + 1694, + 300, + 1694 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 859, + 73, + 859, + 106, + 297, + 106 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 297, + 995, + 1038, + 995, + 1038, + 1030, + 297, + 1030 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 299, + 1501, + 1400, + 1501, + 1400, + 1565, + 299, + 1565 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 294, + 221, + 1318, + 221, + 1318, + 269, + 294, + 269 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 296, + 1705, + 1403, + 1705, + 1403, + 1770, + 296, + 1770 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1455, + 1400, + 1455, + 1400, + 1485, + 1351, + 1485 + ], + "score": 0.902 + }, + { + "category_id": 8, + "poly": [ + 395, + 1782, + 1303, + 1782, + 1303, + 2032, + 395, + 2032 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1581, + 1400, + 1581, + 1400, + 1612, + 1351, + 1612 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 311, + 1400, + 311, + 1400, + 342, + 1351, + 342 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1977, + 1401, + 1977, + 1401, + 2008, + 1351, + 2008 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1352, + 801, + 1400, + 801, + 1400, + 832, + 1352, + 832 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1351, + 477, + 1401, + 477, + 1401, + 507, + 1351, + 507 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1809, + 1401, + 1809, + 1401, + 1839, + 1351, + 1839 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 8, + "poly": [ + 396, + 1781, + 1302, + 1781, + 1302, + 2032, + 396, + 2032 + ], + "score": 0.158 + }, + { + "category_id": 14, + "poly": [ + 396, + 1779, + 1303, + 1779, + 1303, + 2037, + 396, + 2037 + ], + "score": 0.95, + "latex": "\\begin{array} { c } { { f ( z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } + \\epsilon ( \\Delta \\theta _ { G } ) } } \\\\ { { f ( z + \\Delta z ; \\theta _ { d } , \\theta _ { G } + \\delta \\theta _ { G } ) = f ( z ; \\theta _ { D } , \\theta _ { G } ) + \\displaystyle \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } } } \\\\ { { \\Delta z + \\displaystyle \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 299, + 592, + 428, + 592, + 428, + 643, + 299, + 643 + ], + "score": 0.94, + "latex": "\\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } ^ { \\prime } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } }" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1376, + 1219, + 1376, + 1219, + 1410, + 1028, + 1410 + ], + "score": 0.93, + "latex": "\\Delta \\theta _ { G } = \\theta _ { G } ^ { \\prime } - \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1176, + 1008, + 1176, + 1008, + 1210, + 945, + 1210 + ], + "score": 0.93, + "latex": "( \\tau , \\delta )" + }, + { + "category_id": 14, + "poly": [ + 352, + 281, + 1299, + 281, + 1299, + 366, + 352, + 366 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 713, + 445, + 713, + 445, + 760, + 297, + 760 + ], + "score": 0.93, + "latex": "\\alpha \\frac { \\partial f ( z ; \\mathbf { \\bar { \\theta } } _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }" + }, + { + "category_id": 13, + "poly": [ + 861, + 544, + 1172, + 544, + 1172, + 597, + 861, + 597 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } & { { } \\approx } & { \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { D } ^ { \\prime } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 415, + 224, + 678, + 224, + 678, + 270, + 415, + 270 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 356, + 771, + 1299, + 771, + 1299, + 856, + 356, + 856 + ], + "score": 0.92, + "latex": "\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) } { \\partial \\theta _ { D } } \\approx \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } + 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } \\partial \\theta _ { D } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1628, + 1208, + 1628, + 1208, + 1662, + 1065, + 1662 + ], + "score": 0.92, + "latex": "f ( z ; \\theta _ { D } , \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 609, + 1706, + 889, + 1706, + 889, + 1741, + 609, + 1741 + ], + "score": 0.92, + "latex": "f ( z + \\Delta ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 412, + 1706, + 555, + 1706, + 555, + 1741, + 412, + 1741 + ], + "score": 0.92, + "latex": "f ( z ; \\theta _ { D } , \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 1200, + 1660, + 1392, + 1660, + 1392, + 1694, + 1200, + 1694 + ], + "score": 0.92, + "latex": "\\lVert \\delta \\theta _ { G } \\rVert < \\lVert \\Delta \\theta _ { G } \\rVert" + }, + { + "category_id": 14, + "poly": [ + 354, + 445, + 1300, + 445, + 1300, + 531, + 354, + 531 + ], + "score": 0.91, + "latex": "\\frac { \\partial f ( z ; \\theta _ { D } + \\Delta \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } = \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial \\theta _ { G } } - 2 \\alpha \\left( \\frac { \\partial ^ { 2 } f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } \\partial \\theta _ { G } } \\right) ^ { T } \\frac { \\partial f ( z ; \\theta _ { D } ^ { \\prime } , \\theta _ { G } ) } { \\partial ( \\theta _ { D } ^ { \\prime } ) }" + }, + { + "category_id": 13, + "poly": [ + 592, + 1502, + 752, + 1502, + 752, + 1532, + 592, + 1532 + ], + "score": 0.91, + "latex": "z ^ { \\prime } = z + \\Delta z" + }, + { + "category_id": 13, + "poly": [ + 387, + 1662, + 421, + 1662, + 421, + 1691, + 387, + 1691 + ], + "score": 0.91, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1078, + 1663, + 1134, + 1663, + 1134, + 1691, + 1078, + 1691 + ], + "score": 0.91, + "latex": "\\Delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1503, + 1065, + 1503, + 1065, + 1534, + 1017, + 1534 + ], + "score": 0.9, + "latex": "\\delta \\theta _ { G }" + }, + { + "category_id": 14, + "poly": [ + 606, + 1451, + 1093, + 1451, + 1093, + 1489, + 606, + 1489 + ], + "score": 0.9, + "latex": "\\rho = - f ( z ; \\theta _ { D } , \\theta _ { G } + \\Delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 365, + 1739, + 399, + 1739, + 399, + 1768, + 365, + 1768 + ], + "score": 0.9, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 685, + 1126, + 685, + 1126, + 715, + 1090, + 715 + ], + "score": 0.9, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 545, + 1404, + 545, + 1404, + 594, + 1233, + 594 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { G } } \\approx } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 599, + 1630, + 634, + 1630, + 634, + 1660, + 599, + 1660 + ], + "score": 0.89, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 822, + 655, + 858, + 655, + 858, + 685, + 822, + 685 + ], + "score": 0.89, + "latex": "\\theta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 1126, + 232, + 1160, + 232, + 1160, + 261, + 1126, + 261 + ], + "score": 0.89, + "latex": "\\theta _ { G }" + }, + { + "category_id": 14, + "poly": [ + 577, + 1578, + 1124, + 1578, + 1124, + 1617, + 577, + 1617 + ], + "score": 0.88, + "latex": "\\rho = - f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } + \\delta \\theta _ { G } ) + f ( z ; \\theta _ { D } , \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 706, + 1408, + 746, + 1408, + 746, + 1438, + 706, + 1438 + ], + "score": 0.88, + "latex": "L _ { G }" + }, + { + "category_id": 13, + "poly": [ + 566, + 1376, + 600, + 1376, + 600, + 1407, + 566, + 1407 + ], + "score": 0.88, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1310, + 685, + 1404, + 685, + 1404, + 717, + 1310, + 717 + ], + "score": 0.88, + "latex": "\\Delta \\theta _ { G } =" + }, + { + "category_id": 13, + "poly": [ + 647, + 686, + 672, + 686, + 672, + 712, + 647, + 712 + ], + "score": 0.84, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1325, + 656, + 1352, + 656, + 1352, + 682, + 1325, + 682 + ], + "score": 0.83, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 567, + 656, + 594, + 656, + 594, + 682, + 567, + 682 + ], + "score": 0.8, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 298, + 686, + 322, + 686, + 322, + 712, + 298, + 712 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 298, + 1238, + 342, + 1238, + 342, + 1269, + 298, + 1269 + ], + "score": 0.79, + "latex": "( D )" + }, + { + "category_id": 13, + "poly": [ + 824, + 1117, + 851, + 1117, + 851, + 1143, + 824, + 1143 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 787, + 1239, + 804, + 1239, + 804, + 1265, + 787, + 1265 + ], + "score": 0.77, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1635, + 1264, + 1635, + 1264, + 1661, + 1247, + 1661 + ], + "score": 0.77, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 490, + 1635, + 508, + 1635, + 508, + 1657, + 490, + 1657 + ], + "score": 0.77, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 297, + 1743, + 315, + 1743, + 315, + 1765, + 297, + 1765 + ], + "score": 0.76, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 491, + 1207, + 533, + 1207, + 533, + 1238, + 491, + 1238 + ], + "score": 0.75, + "latex": "( G )" + }, + { + "category_id": 13, + "poly": [ + 1369, + 1117, + 1394, + 1117, + 1394, + 1143, + 1369, + 1143 + ], + "score": 0.73, + "latex": "G" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1041.0, + 995.0, + 1041.0, + 1033.0, + 294.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1090.0, + 293.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 1405.0, + 1086.0, + 1405.0, + 1120.0, + 294.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 823.0, + 1116.0, + 823.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1116.0, + 1368.0, + 1116.0, + 1368.0, + 1150.0, + 852.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1116.0, + 1405.0, + 1116.0, + 1405.0, + 1150.0, + 1395.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1181.0, + 293.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1175.0, + 944.0, + 1175.0, + 944.0, + 1210.0, + 293.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1175.0, + 1405.0, + 1175.0, + 1405.0, + 1210.0, + 1009.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 490.0, + 1203.0, + 490.0, + 1242.0, + 293.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1242.0, + 534.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1235.0, + 297.0, + 1235.0, + 297.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1235.0, + 786.0, + 1235.0, + 786.0, + 1276.0, + 343.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1276.0, + 805.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1269.0, + 932.0, + 1269.0, + 932.0, + 1303.0, + 296.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1312.0, + 1405.0, + 1312.0, + 1405.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1405.0, + 1344.0, + 1405.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 565.0, + 1375.0, + 565.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1375.0, + 1027.0, + 1375.0, + 1027.0, + 1410.0, + 601.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1375.0, + 1405.0, + 1375.0, + 1405.0, + 1410.0, + 1220.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1408.0, + 705.0, + 1408.0, + 705.0, + 1441.0, + 294.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1408.0, + 758.0, + 1408.0, + 758.0, + 1441.0, + 747.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 906.0, + 293.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 933.0, + 292.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 927.0, + 443.0, + 927.0, + 443.0, + 963.0, + 293.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 856.0, + 552.0, + 856.0, + 590.0, + 294.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 539.0, + 1232.0, + 539.0, + 1232.0, + 601.0, + 1173.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 588.0, + 864.0, + 588.0, + 864.0, + 648.0, + 429.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.25, + 563.0, + 1133.25, + 563.0, + 1133.25, + 603.0, + 1078.25, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 652.0, + 566.0, + 652.0, + 566.0, + 685.0, + 296.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 652.0, + 821.0, + 652.0, + 821.0, + 685.0, + 595.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 652.0, + 1324.0, + 652.0, + 1324.0, + 685.0, + 859.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 652.0, + 1402.0, + 652.0, + 1402.0, + 685.0, + 1353.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 681.0, + 297.0, + 681.0, + 297.0, + 720.0, + 293.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 681.0, + 646.0, + 681.0, + 646.0, + 720.0, + 323.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 681.0, + 1089.0, + 681.0, + 1089.0, + 720.0, + 673.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 681.0, + 1309.0, + 681.0, + 1309.0, + 720.0, + 1127.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 708.0, + 460.0, + 708.0, + 460.0, + 745.0, + 446.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 730.0, + 408.0, + 730.0, + 408.0, + 769.0, + 355.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 373.0, + 1405.0, + 373.0, + 1405.0, + 413.0, + 292.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 405.0, + 380.0, + 405.0, + 380.0, + 439.0, + 291.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1624.0, + 489.0, + 1624.0, + 489.0, + 1667.0, + 293.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1624.0, + 598.0, + 1624.0, + 598.0, + 1667.0, + 509.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1624.0, + 1064.0, + 1624.0, + 1064.0, + 1667.0, + 635.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1624.0, + 1246.0, + 1624.0, + 1246.0, + 1667.0, + 1209.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1624.0, + 1405.0, + 1624.0, + 1405.0, + 1667.0, + 1265.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 386.0, + 1658.0, + 386.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1658.0, + 1077.0, + 1658.0, + 1077.0, + 1696.0, + 422.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1658.0, + 1199.0, + 1658.0, + 1199.0, + 1696.0, + 1135.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1658.0, + 1404.0, + 1658.0, + 1404.0, + 1696.0, + 1393.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 591.0, + 1497.0, + 591.0, + 1539.0, + 293.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1497.0, + 1016.0, + 1497.0, + 1016.0, + 1539.0, + 753.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1497.0, + 1405.0, + 1497.0, + 1405.0, + 1539.0, + 1066.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1534.0, + 537.0, + 1534.0, + 537.0, + 1566.0, + 295.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 414.0, + 228.0, + 414.0, + 262.0, + 294.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 218.0, + 1329.0, + 218.0, + 1329.0, + 269.0, + 536.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1701.0, + 411.0, + 1701.0, + 411.0, + 1744.0, + 293.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1701.0, + 608.0, + 1701.0, + 608.0, + 1744.0, + 556.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1744.0, + 890.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1732.0, + 296.0, + 1732.0, + 296.0, + 1774.0, + 292.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1732.0, + 364.0, + 1732.0, + 364.0, + 1774.0, + 316.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1732.0, + 414.0, + 1732.0, + 414.0, + 1774.0, + 400.0, + 1774.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1737, + 1405, + 1737, + 1405, + 1832, + 297, + 1832 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 360, + 1366, + 1404, + 1366, + 1404, + 1627, + 360, + 1627 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 1109, + 1406, + 1109, + 1406, + 1230, + 298, + 1230 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 492, + 594, + 1216, + 594, + 1216, + 678, + 492, + 678 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 931, + 1405, + 931, + 1405, + 995, + 297, + 995 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1241, + 1406, + 1241, + 1406, + 1344, + 298, + 1344 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1403, + 228, + 1403, + 293, + 295, + 293 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 719, + 465, + 982, + 465, + 982, + 535, + 719, + 535 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 731, + 878, + 975, + 878, + 975, + 918, + 731, + 918 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 516, + 754, + 1181, + 754, + 1181, + 824, + 516, + 824 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 296, + 691, + 1401, + 691, + 1401, + 752, + 296, + 752 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 683, + 1999, + 1017, + 1999, + 1017, + 2038, + 683, + 2038 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 296, + 1844, + 1404, + 1844, + 1404, + 1907, + 296, + 1907 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 314, + 1009, + 1326, + 1009, + 1326, + 1094, + 314, + 1094 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 298, + 546, + 675, + 546, + 675, + 580, + 298, + 580 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 295, + 1950, + 921, + 1950, + 921, + 1984, + 295, + 1984 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 315, + 308, + 1342, + 308, + 1342, + 391, + 315, + 391 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 744, + 1907, + 953, + 1907, + 953, + 1943, + 744, + 1943 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 292, + 405, + 1264, + 405, + 1264, + 450, + 292, + 450 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 859, + 74, + 859, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 9, + "poly": [ + 1351, + 881, + 1400, + 881, + 1400, + 912, + 1351, + 912 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2003, + 1401, + 2003, + 1401, + 2034, + 1351, + 2034 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 297, + 1666, + 950, + 1666, + 950, + 1704, + 297, + 1704 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1909, + 1400, + 1909, + 1400, + 1939, + 1351, + 1939 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1351, + 486, + 1401, + 486, + 1401, + 518, + 1351, + 518 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1351, + 623, + 1400, + 623, + 1400, + 654, + 1351, + 654 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1351, + 772, + 1400, + 772, + 1400, + 804, + 1351, + 804 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1038, + 1400, + 1038, + 1400, + 1070, + 1354, + 1070 + ], + "score": 0.829 + }, + { + "category_id": 9, + "poly": [ + 1354, + 336, + 1401, + 336, + 1401, + 367, + 1354, + 367 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 298, + 829, + 696, + 829, + 696, + 863, + 298, + 863 + ], + "score": 0.654 + }, + { + "category_id": 13, + "poly": [ + 1282, + 1582, + 1344, + 1582, + 1344, + 1627, + 1282, + 1627 + ], + "score": 0.95, + "latex": "\\frac { \\partial f ( z ) } { \\partial z }" + }, + { + "category_id": 13, + "poly": [ + 753, + 406, + 957, + 406, + 957, + 451, + 753, + 451 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\Delta z \\propto \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { z } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 316, + 306, + 1345, + 306, + 1345, + 391, + 316, + 391 + ], + "score": 0.94, + "latex": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 953, + 1582, + 1023, + 1582, + 1023, + 1627, + 953, + 1627 + ], + "score": 0.94, + "latex": "\\frac { \\partial f ( z ^ { \\prime } ) } { \\partial z ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 979, + 1108, + 1258, + 1108, + 1258, + 1155, + 979, + 1155 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\Delta \\theta _ { D } = - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 776, + 1399, + 838, + 1399, + 838, + 1443, + 776, + 1443 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ) } { \\partial z }" + }, + { + "category_id": 14, + "poly": [ + 313, + 1008, + 1350, + 1008, + 1350, + 1093, + 313, + 1093 + ], + "score": 0.93, + "latex": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\Delta \\theta _ { D } = \\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\right) ^ { T } \\Delta z + \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { D } } \\right) ^ { T } \\delta \\theta _ { D } + \\epsilon" + }, + { + "category_id": 14, + "poly": [ + 718, + 463, + 984, + 463, + 984, + 535, + 718, + 535 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial z } \\Delta z > 0" + }, + { + "category_id": 14, + "poly": [ + 490, + 593, + 1217, + 593, + 1217, + 678, + 490, + 678 + ], + "score": 0.93, + "latex": "\\left( \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\Delta \\theta _ { G } < \\left( \\frac { \\partial f ( z + \\Delta z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\right) ^ { T } \\delta \\theta _ { G } + \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 484, + 1194, + 680, + 1194, + 680, + 1229, + 484, + 1229 + ], + "score": 0.93, + "latex": "\\lVert \\Delta \\theta _ { D } \\rVert < \\lVert \\delta \\theta _ { D } \\rVert" + }, + { + "category_id": 13, + "poly": [ + 295, + 1150, + 472, + 1150, + 472, + 1198, + 295, + 1198 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { - \\alpha \\frac { \\partial f ( \\boldsymbol { z } ; \\boldsymbol { \\theta } _ { D } , \\boldsymbol { \\theta } _ { G } ) } { \\partial \\boldsymbol { \\theta } _ { D } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 745, + 1906, + 956, + 1906, + 956, + 1943, + 745, + 1943 + ], + "score": 0.93, + "latex": "L _ { G } = - D \\left( G ( z ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 698, + 1241, + 803, + 1241, + 803, + 1286, + 698, + 1286 + ], + "score": 0.93, + "latex": "\\frac { \\partial f ( z ) } { \\partial z } \\Delta z" + }, + { + "category_id": 14, + "poly": [ + 681, + 2000, + 1019, + 2000, + 1019, + 2037, + 681, + 2037 + ], + "score": 0.92, + "latex": "L _ { G } = - \\ln p ( t = 1 ; D , G ( z ) )" + }, + { + "category_id": 13, + "poly": [ + 709, + 1117, + 859, + 1117, + 859, + 1148, + 709, + 1148 + ], + "score": 0.91, + "latex": "L _ { D } = - L _ { G }" + }, + { + "category_id": 14, + "poly": [ + 729, + 877, + 975, + 877, + 975, + 918, + 729, + 918 + ], + "score": 0.91, + "latex": "\\lVert \\Delta \\theta _ { G } \\rVert < \\lVert \\delta \\theta _ { G } \\rVert + \\epsilon" + }, + { + "category_id": 14, + "poly": [ + 514, + 750, + 1182, + 750, + 1182, + 825, + 514, + 825 + ], + "score": 0.91, + "latex": "\\Delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } } \\qquad \\delta \\theta _ { G } = \\alpha \\frac { \\partial f ( z ; \\theta _ { D } , \\theta _ { G } ) } { \\partial \\theta _ { G } }" + }, + { + "category_id": 13, + "poly": [ + 371, + 413, + 671, + 413, + 671, + 448, + 371, + 448 + ], + "score": 0.91, + "latex": "\\epsilon = \\epsilon ( \\Delta z , \\delta \\theta _ { G } ) - \\epsilon ( \\Delta \\theta _ { G } )" + }, + { + "category_id": 13, + "poly": [ + 546, + 693, + 603, + 693, + 603, + 724, + 546, + 724 + ], + "score": 0.91, + "latex": "\\Delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 661, + 693, + 709, + 693, + 709, + 724, + 661, + 724 + ], + "score": 0.9, + "latex": "\\delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1848, + 914, + 1848, + 914, + 1875, + 840, + 1875 + ], + "score": 0.9, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 563, + 1848, + 637, + 1848, + 637, + 1874, + 563, + 1874 + ], + "score": 0.9, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1196, + 1245, + 1196, + 1245, + 1226, + 1199, + 1226 + ], + "score": 0.9, + "latex": "\\delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1115, + 1403, + 1115, + 1403, + 1149, + 1316, + 1149 + ], + "score": 0.89, + "latex": "\\delta \\theta _ { D } =" + }, + { + "category_id": 13, + "poly": [ + 379, + 230, + 423, + 230, + 423, + 264, + 379, + 264 + ], + "score": 0.89, + "latex": "\\epsilon ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1160, + 1345, + 1160, + 1345, + 1190, + 1298, + 1190 + ], + "score": 0.87, + "latex": "\\delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 551, + 1450, + 591, + 1450, + 591, + 1476, + 551, + 1476 + ], + "score": 0.87, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 639, + 1522, + 680, + 1522, + 680, + 1550, + 639, + 1550 + ], + "score": 0.86, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 1045, + 963, + 1070, + 963, + 1070, + 990, + 1045, + 990 + ], + "score": 0.86, + "latex": "z ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1370, + 1132, + 1370, + 1132, + 1396, + 1091, + 1396 + ], + "score": 0.85, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1160, + 1242, + 1160, + 1242, + 1191, + 1185, + 1191 + ], + "score": 0.63, + "latex": "\\Delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1165, + 1375, + 1165, + 1375, + 1187, + 1358, + 1187 + ], + "score": 0.59, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1195, + 1147, + 1195, + 1147, + 1227, + 1039, + 1227 + ], + "score": 0.59, + "latex": "\\Delta z , \\Delta \\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1281, + 1179, + 1281, + 1179, + 1308, + 1155, + 1308 + ], + "score": 0.53, + "latex": "\\mathbf { G }" + }, + { + "category_id": 13, + "poly": [ + 470, + 1480, + 495, + 1480, + 495, + 1507, + 470, + 1507 + ], + "score": 0.46, + "latex": "\\mathbf { G }" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1160, + 1172, + 1160, + 1172, + 1189, + 1132, + 1189 + ], + "score": 0.43, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1281, + 1102, + 1281, + 1102, + 1308, + 1076, + 1308 + ], + "score": 0.43, + "latex": "\\mathbf { D }" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1196, + 1079, + 1196, + 1079, + 1224, + 1039, + 1224 + ], + "score": 0.37, + "latex": "\\Delta z" + }, + { + "category_id": 13, + "poly": [ + 395, + 1479, + 421, + 1479, + 421, + 1508, + 395, + 1508 + ], + "score": 0.34, + "latex": "\\mathbf { D }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1285, + 312, + 1285, + 312, + 1307, + 297, + 1307 + ], + "score": 0.31, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1663.0, + 951.0, + 1663.0, + 951.0, + 1710.0, + 295.0, + 1710.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": [ + 294.0, + 1737.0, + 1403.0, + 1737.0, + 1403.0, + 1775.0, + 294.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1769.0, + 1403.0, + 1769.0, + 1403.0, + 1803.0, + 295.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 1373.0, + 1798.0, + 1373.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1365.0, + 1090.0, + 1365.0, + 1090.0, + 1406.0, + 360.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1406.0, + 1133.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1397.0, + 775.0, + 1397.0, + 775.0, + 1437.0, + 393.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1397.0, + 844.0, + 1397.0, + 844.0, + 1437.0, + 839.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1421.0, + 826.0, + 1421.0, + 826.0, + 1449.0, + 791.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1445.0, + 550.0, + 1445.0, + 550.0, + 1487.0, + 357.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1445.0, + 1405.0, + 1445.0, + 1405.0, + 1487.0, + 592.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1480.0, + 469.0, + 1480.0, + 469.0, + 1512.0, + 422.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1480.0, + 826.0, + 1480.0, + 826.0, + 1512.0, + 496.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1520.0, + 638.0, + 1520.0, + 638.0, + 1557.0, + 358.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1557.0, + 681.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1549.0, + 1405.0, + 1549.0, + 1405.0, + 1589.0, + 393.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1582.0, + 952.0, + 1582.0, + 952.0, + 1633.0, + 396.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1582.0, + 1281.0, + 1582.0, + 1281.0, + 1633.0, + 1024.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1582.0, + 1349.0, + 1582.0, + 1349.0, + 1633.0, + 1345.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1100.0, + 708.0, + 1100.0, + 708.0, + 1163.0, + 296.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1100.0, + 978.0, + 1100.0, + 978.0, + 1163.0, + 860.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1100.0, + 1315.0, + 1100.0, + 1315.0, + 1163.0, + 1259.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1100.0, + 1407.0, + 1100.0, + 1407.0, + 1163.0, + 1404.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1143.0, + 1131.0, + 1143.0, + 1131.0, + 1206.0, + 473.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1143.0, + 1184.0, + 1143.0, + 1184.0, + 1206.0, + 1173.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1143.0, + 1297.0, + 1143.0, + 1297.0, + 1206.0, + 1243.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1143.0, + 1357.0, + 1143.0, + 1357.0, + 1206.0, + 1346.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1143.0, + 1410.0, + 1143.0, + 1410.0, + 1206.0, + 1376.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1193.0, + 483.0, + 1193.0, + 483.0, + 1230.0, + 293.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1193.0, + 1038.0, + 1193.0, + 1038.0, + 1230.0, + 681.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1193.0, + 1198.0, + 1193.0, + 1198.0, + 1230.0, + 1148.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1193.0, + 1256.0, + 1193.0, + 1256.0, + 1230.0, + 1246.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 931.0, + 1406.0, + 931.0, + 1406.0, + 967.0, + 296.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 963.0, + 1044.0, + 963.0, + 1044.0, + 995.0, + 296.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 963.0, + 1256.0, + 963.0, + 1256.0, + 995.0, + 1071.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1236.0, + 296.0, + 1236.0, + 296.0, + 1320.0, + 290.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1236.0, + 697.0, + 1236.0, + 697.0, + 1320.0, + 313.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1236.0, + 1075.0, + 1236.0, + 1075.0, + 1320.0, + 804.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1236.0, + 1154.0, + 1236.0, + 1154.0, + 1320.0, + 1103.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1236.0, + 1408.0, + 1236.0, + 1408.0, + 1320.0, + 1180.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1312.0, + 1167.0, + 1312.0, + 1167.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 378.0, + 224.0, + 378.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 224.0, + 1406.0, + 224.0, + 1406.0, + 268.0, + 424.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 607.0, + 262.0, + 607.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 689.0, + 545.0, + 689.0, + 545.0, + 728.0, + 292.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 689.0, + 660.0, + 689.0, + 660.0, + 728.0, + 604.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 689.0, + 1405.0, + 689.0, + 1405.0, + 728.0, + 710.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 719.0, + 453.0, + 719.0, + 453.0, + 760.0, + 292.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1842.0, + 562.0, + 1842.0, + 562.0, + 1881.0, + 295.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1842.0, + 839.0, + 1842.0, + 839.0, + 1881.0, + 638.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1842.0, + 1404.0, + 1842.0, + 1404.0, + 1881.0, + 915.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1877.0, + 527.0, + 1877.0, + 527.0, + 1910.0, + 294.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 540.0, + 674.0, + 540.0, + 674.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1948.0, + 922.0, + 1948.0, + 922.0, + 1989.0, + 293.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 410.0, + 370.0, + 410.0, + 370.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 410.0, + 752.0, + 410.0, + 752.0, + 449.0, + 672.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 425.0, + 914.0, + 425.0, + 914.0, + 459.0, + 875.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 399.5, + 1266.0, + 399.5, + 1266.0, + 453.0, + 817.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 829.0, + 695.0, + 829.0, + 695.0, + 866.0, + 298.0, + 866.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1833, + 1403, + 1833, + 1403, + 1957, + 298, + 1957 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 482, + 1403, + 482, + 1403, + 606, + 297, + 606 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1236, + 1403, + 1236, + 1403, + 1330, + 297, + 1330 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 307, + 1407, + 307, + 1407, + 400, + 296, + 400 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 295, + 1657, + 1403, + 1657, + 1403, + 1721, + 295, + 1721 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 745, + 621, + 951, + 621, + 951, + 693, + 745, + 693 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 958, + 1401, + 958, + 1401, + 1024, + 296, + 1024 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1400, + 1971, + 1400, + 2035, + 297, + 2035 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 656, + 1448, + 1043, + 1448, + 1043, + 1549, + 656, + 1549 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1403, + 227, + 1403, + 294, + 292, + 294 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 738, + 783, + 957, + 783, + 957, + 820, + 738, + 820 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 655, + 1348, + 869, + 1348, + 869, + 1437, + 655, + 1437 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 435, + 413, + 1270, + 413, + 1270, + 454, + 435, + 454 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 521, + 905, + 1183, + 905, + 1183, + 946, + 521, + 946 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 297, + 827, + 1408, + 827, + 1408, + 890, + 297, + 890 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 522, + 1036, + 1173, + 1036, + 1173, + 1077, + 522, + 1077 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 799, + 1590, + 898, + 1590, + 898, + 1650, + 799, + 1650 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 298, + 1166, + 1094, + 1166, + 1094, + 1205, + 298, + 1205 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 297, + 1763, + 963, + 1763, + 963, + 1801, + 297, + 1801 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 299, + 1563, + 662, + 1563, + 662, + 1595, + 299, + 1595 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 1090, + 683, + 1090, + 683, + 1126, + 297, + 1126 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 9, + "poly": [ + 1352, + 644, + 1400, + 644, + 1400, + 675, + 1352, + 675 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1041, + 1400, + 1041, + 1400, + 1072, + 1352, + 1072 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1484, + 1400, + 1484, + 1400, + 1514, + 1352, + 1514 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1377, + 1400, + 1377, + 1400, + 1407, + 1352, + 1407 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 910, + 1399, + 910, + 1399, + 940, + 1352, + 940 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1352, + 787, + 1399, + 787, + 1399, + 817, + 1352, + 817 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1352, + 417, + 1400, + 417, + 1400, + 448, + 1352, + 448 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.863 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1602, + 1400, + 1602, + 1400, + 1634, + 1352, + 1634 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 295, + 720, + 1403, + 720, + 1403, + 782, + 295, + 782 + ], + "score": 0.431 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1602, + 1400, + 1602, + 1400, + 1634, + 1352, + 1634 + ], + "score": 0.337 + }, + { + "category_id": 14, + "poly": [ + 747, + 619, + 952, + 619, + 952, + 694, + 747, + 694 + ], + "score": 0.95, + "latex": "p ( k ; \\lambda ) = \\frac { \\lambda ^ { k } e ^ { - \\lambda } } { k ! }" + }, + { + "category_id": 13, + "poly": [ + 760, + 959, + 921, + 959, + 921, + 994, + 760, + 994 + ], + "score": 0.93, + "latex": "D \\left( G ( z ) \\right) > 0" + }, + { + "category_id": 13, + "poly": [ + 1040, + 338, + 1233, + 338, + 1233, + 372, + 1040, + 372 + ], + "score": 0.93, + "latex": "\\beta _ { G } \\ \\bar { = } \\ D \\left( G ( z ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 740, + 779, + 958, + 779, + 958, + 821, + 740, + 821 + ], + "score": 0.92, + "latex": "p ( k = 0 ; \\lambda ) = e ^ { - \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 930, + 1238, + 985, + 1238, + 985, + 1271, + 930, + 1271 + ], + "score": 0.92, + "latex": "f ( z )" + }, + { + "category_id": 14, + "poly": [ + 654, + 1343, + 1047, + 1343, + 1047, + 1553, + 654, + 1553 + ], + "score": 0.92, + "latex": "\\begin{array} { l } { \\displaystyle \\mu _ { t } = \\frac { 1 } { N } \\sum _ { u = t } ^ { t + N - 1 } x _ { u } } \\\\ { \\displaystyle \\sigma _ { t } = \\sqrt { \\frac { 1 } { N - 1 } \\sum _ { u = t } ^ { t + N - 1 } ( x _ { u } - \\mu _ { u } ) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 857, + 481, + 857, + 481, + 891, + 297, + 891 + ], + "score": 0.92, + "latex": "\\lambda = - D \\left( G ( z ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 380, + 1091, + 541, + 1091, + 541, + 1126, + 380, + 1126 + ], + "score": 0.92, + "latex": "D \\left( G ( z ) \\right) < 0" + }, + { + "category_id": 13, + "poly": [ + 1044, + 231, + 1104, + 231, + 1104, + 264, + 1044, + 264 + ], + "score": 0.92, + "latex": "G ( z )" + }, + { + "category_id": 13, + "poly": [ + 360, + 230, + 559, + 230, + 559, + 264, + 360, + 264 + ], + "score": 0.91, + "latex": "p ( t = 1 ; z , D , G )" + }, + { + "category_id": 13, + "poly": [ + 1341, + 724, + 1400, + 724, + 1400, + 755, + 1341, + 755 + ], + "score": 0.91, + "latex": "G ( z )" + }, + { + "category_id": 14, + "poly": [ + 799, + 1589, + 901, + 1589, + 901, + 1653, + 799, + 1653 + ], + "score": 0.91, + "latex": "\\bar { x } _ { t } = \\frac { x _ { t } } { \\sigma _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 574, + 1243, + 741, + 1243, + 741, + 1270, + 574, + 1270 + ], + "score": 0.9, + "latex": "x _ { 1 } , x _ { 2 } , \\ldots , x _ { T }" + }, + { + "category_id": 13, + "poly": [ + 297, + 337, + 647, + 337, + 647, + 373, + 297, + 373 + ], + "score": 0.9, + "latex": "p ( t ; \\beta _ { G } ) \\mathbf { \\bar { \\alpha } } = \\mathbf { \\alpha } \\beta _ { G } ^ { t } \\cdot ( 1 - \\beta _ { G } ) ^ { 1 - t }" + }, + { + "category_id": 14, + "poly": [ + 518, + 903, + 1183, + 903, + 1183, + 946, + 518, + 946 + ], + "score": 0.9, + "latex": "- \\ln p \\big ( k = 0 ; D , G ( z ) \\big ) = - \\ln p ( k = 0 ; \\lambda ) = - D \\left( G ( z ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 433, + 412, + 1269, + 412, + 1269, + 455, + 433, + 455 + ], + "score": 0.89, + "latex": "- \\ln P \\big ( t = 1 ; D , G ( z ) \\big ) = - \\ln p ( t = 1 ; \\beta _ { G } ) = - \\ln \\beta _ { G } = - \\ln D \\left( G ( z ) \\right)" + }, + { + "category_id": 14, + "poly": [ + 524, + 1033, + 1175, + 1033, + 1175, + 1077, + 524, + 1077 + ], + "score": 0.89, + "latex": "{ \\cal L } _ { D } = - \\operatorname * { m i n } \\left( 0 , - 1 + D ( x ) \\right) - \\operatorname * { m i n } \\left( 0 , - 1 - D ( G ( z ) ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 954, + 546, + 973, + 546, + 973, + 572, + 954, + 572 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 717, + 576, + 737, + 576, + 737, + 602, + 717, + 602 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1130, + 1299, + 1158, + 1299, + 1158, + 1326, + 1130, + 1326 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1659, + 1276, + 1659, + 1276, + 1685, + 1248, + 1685 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 483, + 515, + 522, + 515, + 522, + 543, + 483, + 543 + ], + "score": 0.79, + "latex": " { { } ^ { 6 } } { 0 ^ { 9 } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 263, + 323, + 263, + 323, + 289, + 298, + 289 + ], + "score": 0.77, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 879, + 1244, + 897, + 1244, + 897, + 1265, + 879, + 1265 + ], + "score": 0.75, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 523, + 1659, + 563, + 1659, + 563, + 1687, + 523, + 1687 + ], + "score": 0.27, + "latex": "{ \\bf 5 a }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 1097.0, + 1165.0, + 1097.0, + 1209.0, + 294.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 964.0, + 1764.0, + 964.0, + 1805.0, + 294.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1867.0, + 296.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1897.0, + 296.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1894.0, + 1405.0, + 1894.0, + 1405.0, + 1932.0, + 291.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1927.0, + 727.0, + 1927.0, + 727.0, + 1959.0, + 294.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 483.0, + 1407.0, + 483.0, + 1407.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 514.0, + 482.0, + 514.0, + 482.0, + 546.0, + 295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 514.0, + 1403.0, + 514.0, + 1403.0, + 546.0, + 523.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 543.0, + 953.0, + 543.0, + 953.0, + 580.0, + 294.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 543.0, + 1404.0, + 543.0, + 1404.0, + 580.0, + 974.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 574.0, + 716.0, + 574.0, + 716.0, + 607.0, + 293.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 574.0, + 1022.0, + 574.0, + 1022.0, + 607.0, + 738.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1236.0, + 573.0, + 1236.0, + 573.0, + 1273.0, + 292.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1236.0, + 878.0, + 1236.0, + 878.0, + 1273.0, + 742.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1236.0, + 929.0, + 1236.0, + 929.0, + 1273.0, + 898.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1236.0, + 1405.0, + 1236.0, + 1405.0, + 1273.0, + 986.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 1405.0, + 1268.0, + 1405.0, + 1302.0, + 295.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1300.0, + 1129.0, + 1300.0, + 1129.0, + 1330.0, + 295.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1300.0, + 1172.0, + 1300.0, + 1172.0, + 1330.0, + 1159.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 305.0, + 1405.0, + 305.0, + 1405.0, + 343.0, + 295.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 334.0, + 296.0, + 334.0, + 296.0, + 375.0, + 291.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 334.0, + 1039.0, + 334.0, + 1039.0, + 375.0, + 648.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 334.0, + 1407.0, + 334.0, + 1407.0, + 375.0, + 1234.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 368.0, + 676.0, + 368.0, + 676.0, + 402.0, + 294.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1656.0, + 522.0, + 1656.0, + 522.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1656.0, + 1247.0, + 1656.0, + 1247.0, + 1692.0, + 564.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1656.0, + 1405.0, + 1656.0, + 1405.0, + 1692.0, + 1277.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1688.0, + 665.0, + 1688.0, + 665.0, + 1724.0, + 295.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 959.0, + 759.0, + 959.0, + 759.0, + 995.0, + 296.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 959.0, + 1403.0, + 959.0, + 1403.0, + 995.0, + 922.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 860.0, + 988.0, + 860.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1998.0, + 1405.0, + 1998.0, + 1405.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 359.0, + 227.0, + 359.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 227.0, + 1043.0, + 227.0, + 1043.0, + 267.0, + 560.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 267.0, + 1105.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 258.0, + 297.0, + 258.0, + 297.0, + 297.0, + 292.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 258.0, + 339.0, + 258.0, + 339.0, + 297.0, + 324.0, + 297.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": [ + 292.0, + 852.0, + 296.0, + 852.0, + 296.0, + 896.0, + 292.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 852.0, + 496.0, + 852.0, + 496.0, + 896.0, + 482.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1558.0, + 664.0, + 1558.0, + 664.0, + 1601.0, + 296.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1089.0, + 379.0, + 1089.0, + 379.0, + 1132.0, + 293.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1089.0, + 685.0, + 1089.0, + 685.0, + 1132.0, + 542.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 713.0, + 1340.0, + 713.0, + 1340.0, + 761.0, + 293.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 713.0, + 1405.0, + 713.0, + 1405.0, + 761.0, + 1401.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 752.0, + 638.0, + 752.0, + 638.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 308, + 1404, + 308, + 1404, + 522, + 298, + 522 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 536, + 1404, + 536, + 1404, + 662, + 298, + 662 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 534, + 817, + 1159, + 817, + 1159, + 917, + 534, + 917 + ], + "score": 0.962, + "html": "
SN-GANCS-GANLOGAN (NGD)
FID29.323.1 ± 0.517.7 ± 0.4
IS7.42 ± 0.087.80 ± 0.058.67 ± 0.05
" + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1402, + 228, + 1402, + 293, + 296, + 293 + ], + "score": 0.948 + }, + { + "category_id": 6, + "poly": [ + 297, + 713, + 1406, + 713, + 1406, + 807, + 297, + 807 + ], + "score": 0.942 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 13, + "poly": [ + 510, + 230, + 554, + 230, + 554, + 264, + 510, + 264 + ], + "score": 0.91, + "latex": "\\| z \\|" + }, + { + "category_id": 13, + "poly": [ + 371, + 230, + 473, + 230, + 473, + 262, + 371, + 262 + ], + "score": 0.89, + "latex": "\\beta = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 822, + 261, + 876, + 261, + 876, + 291, + 822, + 291 + ], + "score": 0.89, + "latex": "5 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 515, + 598, + 591, + 598, + 591, + 629, + 515, + 629 + ], + "score": 0.88, + "latex": "1 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 701, + 598, + 777, + 598, + 777, + 629, + 701, + 629 + ], + "score": 0.88, + "latex": "3 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 423, + 261, + 477, + 261, + 477, + 291, + 423, + 291 + ], + "score": 0.86, + "latex": "7 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 974, + 406, + 992, + 406, + 992, + 427, + 974, + 427 + ], + "score": 0.65, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1033, + 231, + 1077, + 231, + 1077, + 260, + 1033, + 260 + ], + "score": 0.27, + "latex": "\\mathbf { W } \\mathbf { u }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 714.0, + 1403.0, + 714.0, + 1403.0, + 748.0, + 295.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 745.0, + 1404.0, + 745.0, + 1404.0, + 779.0, + 296.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 776.0, + 1307.0, + 776.0, + 1307.0, + 810.0, + 294.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 344.0, + 293.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 340.0, + 1405.0, + 340.0, + 1405.0, + 371.0, + 296.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 403.0, + 292.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 400.0, + 973.0, + 400.0, + 973.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 400.0, + 1404.0, + 400.0, + 1404.0, + 435.0, + 993.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 431.0, + 1405.0, + 431.0, + 1405.0, + 462.0, + 296.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 495.0, + 293.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 491.0, + 462.0, + 491.0, + 462.0, + 523.0, + 296.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 535.0, + 1404.0, + 535.0, + 1404.0, + 572.0, + 293.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 1404.0, + 570.0, + 1404.0, + 603.0, + 294.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 597.0, + 514.0, + 597.0, + 514.0, + 636.0, + 293.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 597.0, + 700.0, + 597.0, + 700.0, + 636.0, + 592.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 597.0, + 1405.0, + 597.0, + 1405.0, + 636.0, + 778.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 630.0, + 1321.0, + 630.0, + 1321.0, + 666.0, + 293.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 370.0, + 227.0, + 370.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 227.0, + 509.0, + 227.0, + 509.0, + 267.0, + 474.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 227.0, + 1032.0, + 227.0, + 1032.0, + 267.0, + 555.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 267.0, + 1078.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 259.0, + 422.0, + 259.0, + 422.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 259.0, + 821.0, + 259.0, + 821.0, + 295.0, + 478.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 259.0, + 1404.0, + 259.0, + 1404.0, + 295.0, + 877.0, + 295.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 334, + 234, + 1360, + 234, + 1360, + 1951, + 334, + 1951 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 298, + 1970, + 1405, + 1970, + 1405, + 2064, + 298, + 2064 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 105, + 297, + 105 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 864, + 2087, + 864, + 2113, + 836, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 13, + "poly": [ + 1359, + 2001, + 1402, + 2001, + 1402, + 2030, + 1359, + 2030 + ], + "score": 0.54, + "latex": "^ { 3 \\mathrm { ~ b ~ } }" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 243.0, + 654.0, + 243.0, + 654.0, + 292.0, + 380.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 324.0, + 514.0, + 324.0, + 514.0, + 375.0, + 410.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 326.0, + 738.0, + 326.0, + 738.0, + 366.0, + 658.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 299.0, + 1123.0, + 299.0, + 1123.0, + 400.0, + 884.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 402.0, + 811.0, + 402.0, + 811.0, + 456.0, + 411.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 398.0, + 1038.0, + 398.0, + 1038.0, + 443.0, + 934.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 407.0, + 1234.0, + 407.0, + 1234.0, + 445.0, + 1041.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 481.0, + 1311.0, + 481.0, + 1311.0, + 562.0, + 339.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 661.0, + 947.0, + 661.0, + 947.0, + 723.0, + 754.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 730.0, + 1044.0, + 730.0, + 1044.0, + 819.0, + 850.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 752.0, + 821.0, + 752.0, + 821.0, + 786.0, + 771.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 763.0, + 873.0, + 763.0, + 873.0, + 780.0, + 858.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1000.0, + 484.0, + 1000.0, + 484.0, + 1030.0, + 404.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 996.0, + 821.0, + 996.0, + 821.0, + 1038.0, + 762.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 985.0, + 1003.0, + 985.0, + 1003.0, + 1047.0, + 858.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1689.0, + 475.0, + 1689.0, + 475.0, + 1710.0, + 443.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1692.0, + 554.0, + 1692.0, + 554.0, + 1708.0, + 532.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1691.0, + 643.0, + 1691.0, + 643.0, + 1710.0, + 610.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1689.0, + 730.0, + 1689.0, + 730.0, + 1710.0, + 693.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1687.0, + 812.0, + 1687.0, + 812.0, + 1715.0, + 766.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1687.0, + 930.0, + 1687.0, + 930.0, + 1713.0, + 886.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1691.0, + 1010.0, + 1691.0, + 1010.0, + 1717.0, + 969.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1689.0, + 1086.0, + 1689.0, + 1086.0, + 1704.0, + 1066.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1829.0, + 1254.0, + 1829.0, + 1254.0, + 1855.0, + 1216.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1840.0, + 1177.0, + 1840.0, + 1177.0, + 1853.0, + 1162.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1846.0, + 507.0, + 1846.0, + 507.0, + 1879.0, + 404.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1853.0, + 564.0, + 1853.0, + 564.0, + 1874.0, + 523.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1850.0, + 738.0, + 1850.0, + 738.0, + 1882.0, + 660.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1848.0, + 825.0, + 1848.0, + 825.0, + 1880.0, + 745.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1855.0, + 1030.0, + 1855.0, + 1030.0, + 1880.0, + 964.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1854.0, + 1188.0, + 1854.0, + 1188.0, + 1879.0, + 1111.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1853.0, + 1266.0, + 1853.0, + 1266.0, + 1872.0, + 1214.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1906.0, + 608.0, + 1906.0, + 608.0, + 1950.0, + 558.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1904.0, + 1138.0, + 1904.0, + 1138.0, + 1950.0, + 1084.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.25, + 1849.5, + 655.25, + 1849.5, + 655.25, + 1876.0, + 577.25, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1967.0, + 1403.0, + 1967.0, + 1403.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 1358.0, + 2000.0, + 1358.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2030.0, + 906.0, + 2030.0, + 906.0, + 2068.0, + 293.0, + 2068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 315, + 247, + 1385, + 247, + 1385, + 1887, + 315, + 1887 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 295, + 1905, + 1402, + 1905, + 1402, + 1999, + 295, + 1999 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.851 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 105, + 297, + 105 + ], + "score": 0.607 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 105, + 298, + 105 + ], + "score": 0.279 + }, + { + "category_id": 13, + "poly": [ + 1218, + 1937, + 1258, + 1937, + 1258, + 1966, + 1218, + 1966 + ], + "score": 0.47, + "latex": "^ { 3 } \\mathbf { b }" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1062.0, + 1334.0, + 1062.0, + 1334.0, + 1080.0, + 1298.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1123.0, + 1223.0, + 1123.0, + 1223.0, + 1308.0, + 529.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1835.0, + 598.0, + 1835.0, + 598.0, + 1872.0, + 554.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1832.0, + 1150.0, + 1832.0, + 1150.0, + 1874.0, + 1100.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1905.0, + 1405.0, + 1905.0, + 1405.0, + 1942.0, + 294.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1934.0, + 1217.0, + 1934.0, + 1217.0, + 1974.0, + 293.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1934.0, + 1403.0, + 1934.0, + 1403.0, + 1974.0, + 1259.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1968.0, + 744.0, + 1968.0, + 744.0, + 2002.0, + 297.0, + 2002.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": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 333, + 1394, + 1363, + 1394, + 1363, + 1929, + 333, + 1929 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 406, + 267, + 1291, + 267, + 1291, + 1134, + 406, + 1134 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 1172, + 1404, + 1172, + 1404, + 1297, + 296, + 1297 + ], + "score": 0.95 + }, + { + "category_id": 4, + "poly": [ + 478, + 1955, + 1219, + 1955, + 1219, + 1990, + 478, + 1990 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.858 + }, + { + "category_id": 13, + "poly": [ + 412, + 1204, + 458, + 1204, + 458, + 1233, + 412, + 1233 + ], + "score": 0.62, + "latex": "^ { 3 \\mathrm { ~ b ~ } }" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1453.0, + 770.0, + 1453.0, + 770.0, + 1524.0, + 704.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1465.0, + 1225.0, + 1465.0, + 1225.0, + 1512.0, + 1189.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1660.0, + 440.0, + 1660.0, + 440.0, + 1697.0, + 400.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1647.0, + 920.0, + 1647.0, + 920.0, + 1701.0, + 874.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1683.0, + 957.0, + 1683.0, + 957.0, + 1692.0, + 945.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1654.0, + 1042.0, + 1654.0, + 1042.0, + 1701.0, + 992.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1643.0, + 1241.0, + 1643.0, + 1241.0, + 1732.0, + 1115.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1657.0, + 1342.0, + 1657.0, + 1342.0, + 1698.0, + 1311.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1734.0, + 502.0, + 1734.0, + 502.0, + 1743.0, + 488.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1715.0, + 986.0, + 1715.0, + 986.0, + 1762.0, + 930.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1714.0, + 1043.0, + 1714.0, + 1043.0, + 1758.0, + 989.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1701.0, + 1233.0, + 1701.0, + 1233.0, + 1770.0, + 1114.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1700.0, + 1360.0, + 1700.0, + 1360.0, + 1778.0, + 1295.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1747.0, + 1276.0, + 1747.0, + 1276.0, + 1758.0, + 1258.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1764.0, + 1360.0, + 1764.0, + 1360.0, + 1837.0, + 1295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1765.0, + 1288.0, + 1765.0, + 1288.0, + 1827.0, + 1244.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1767.0, + 1273.0, + 1767.0, + 1273.0, + 1776.0, + 1258.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1775.0, + 823.0, + 1775.0, + 823.0, + 1832.0, + 647.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1781.0, + 1041.0, + 1781.0, + 1041.0, + 1821.0, + 994.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1852.0, + 700.0, + 1852.0, + 700.0, + 1877.0, + 661.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1850.0, + 980.0, + 1850.0, + 980.0, + 1882.0, + 938.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1835.0, + 1354.0, + 1835.0, + 1354.0, + 1887.0, + 1305.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1895.0, + 606.0, + 1895.0, + 606.0, + 1936.0, + 558.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1894.0, + 1134.0, + 1894.0, + 1134.0, + 1936.0, + 1087.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1722.5, + 1090.0, + 1722.5, + 1090.0, + 1750.0, + 1075.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 268.0, + 468.0, + 268.0, + 468.0, + 286.0, + 434.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 313.0, + 461.0, + 313.0, + 461.0, + 333.0, + 434.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 357.0, + 466.0, + 357.0, + 466.0, + 379.0, + 432.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 401.0, + 466.0, + 401.0, + 466.0, + 425.0, + 432.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 427.0, + 817.0, + 427.0, + 817.0, + 449.0, + 762.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 424.0, + 1002.0, + 424.0, + 1002.0, + 449.0, + 914.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 426.0, + 1233.0, + 426.0, + 1233.0, + 447.0, + 1148.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 446.0, + 468.0, + 446.0, + 468.0, + 471.0, + 424.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 493.0, + 467.0, + 493.0, + 467.0, + 515.0, + 425.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 537.0, + 469.0, + 537.0, + 469.0, + 562.0, + 424.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 583.0, + 468.0, + 583.0, + 468.0, + 608.0, + 424.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 630.0, + 463.0, + 630.0, + 463.0, + 652.0, + 426.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 672.0, + 433.0, + 672.0, + 433.0, + 708.0, + 406.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 675.0, + 461.0, + 675.0, + 461.0, + 698.0, + 425.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 718.0, + 468.0, + 718.0, + 468.0, + 744.0, + 425.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 765.0, + 468.0, + 765.0, + 468.0, + 790.0, + 425.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 773.0, + 1175.0, + 773.0, + 1175.0, + 794.0, + 1097.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 810.0, + 468.0, + 810.0, + 468.0, + 835.0, + 425.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 809.0, + 1251.0, + 809.0, + 1251.0, + 830.0, + 1177.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 856.0, + 468.0, + 856.0, + 468.0, + 881.0, + 425.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 903.0, + 467.0, + 903.0, + 467.0, + 925.0, + 426.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 947.0, + 466.0, + 947.0, + 466.0, + 971.0, + 426.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 992.0, + 468.0, + 992.0, + 468.0, + 1017.0, + 425.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1037.0, + 467.0, + 1037.0, + 467.0, + 1062.0, + 425.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1096.0, + 502.0, + 1096.0, + 502.0, + 1119.0, + 453.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1098.0, + 525.0, + 1098.0, + 525.0, + 1118.0, + 503.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1098.0, + 551.0, + 1098.0, + 551.0, + 1118.0, + 527.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1099.0, + 577.0, + 1099.0, + 577.0, + 1118.0, + 554.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1099.0, + 602.0, + 1099.0, + 602.0, + 1118.0, + 580.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1099.0, + 628.0, + 1099.0, + 628.0, + 1118.0, + 605.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1099.0, + 654.0, + 1099.0, + 654.0, + 1118.0, + 631.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1099.0, + 1269.0, + 1099.0, + 1269.0, + 1118.0, + 657.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1114.0, + 935.0, + 1114.0, + 935.0, + 1137.0, + 810.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 592.0, + 627.0, + 592.0, + 627.0, + 617.0, + 561.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 762.5, + 590.0, + 762.5, + 590.0, + 789.5, + 518.0, + 789.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1174.0, + 1404.0, + 1174.0, + 1404.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1202.0, + 411.0, + 1202.0, + 411.0, + 1238.0, + 293.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1202.0, + 1404.0, + 1202.0, + 1404.0, + 1238.0, + 459.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1233.0, + 1405.0, + 1233.0, + 1405.0, + 1270.0, + 294.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 449.0, + 1263.0, + 449.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1952.0, + 1220.0, + 1952.0, + 1220.0, + 1995.0, + 475.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/-2FCwDKRREu/0.png b/vlm/train/-2FCwDKRREu/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c20b10bf2de4b34a3f21cee523112bd650057be4 --- /dev/null +++ b/vlm/train/-2FCwDKRREu/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8ed9bb586af6700fdf19804ae1cec9c4fe846a6b34a1da2e46fccb21c26bfb +size 571024 diff --git a/vlm/train/-2FCwDKRREu/1.png b/vlm/train/-2FCwDKRREu/1.png new file mode 100644 index 0000000000000000000000000000000000000000..575c51616ecf29b1638290c3f0e3abc66379054b --- /dev/null +++ b/vlm/train/-2FCwDKRREu/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d0f60884eaadb8a8cef7eeec3e57fb7f95d829bddaa50d4aa5059e6d0fe8ee +size 610153 diff --git a/vlm/train/-2FCwDKRREu/10.png b/vlm/train/-2FCwDKRREu/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ee104a6cb423f1ddd388202a2b3793b2af372dba --- /dev/null +++ b/vlm/train/-2FCwDKRREu/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c80df4724ecfefed3392d4fa82c04abe3958de17d99a923bcdfdf5a672f988 +size 568406 diff --git a/vlm/train/-2FCwDKRREu/11.png b/vlm/train/-2FCwDKRREu/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa13deed50e2478fc850be6de7b72797365147d --- /dev/null +++ b/vlm/train/-2FCwDKRREu/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0829ab6f3c2ff211971c87bc7c452ae090ee8cbdfa6392275e69a4fac41219ae +size 127869 diff --git a/vlm/train/-2FCwDKRREu/12.png b/vlm/train/-2FCwDKRREu/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8608db82a6ddd5ff90fe2695ed5d5d28961bf27a --- /dev/null +++ b/vlm/train/-2FCwDKRREu/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4da6c0f4e4b837fc7085949b085f1375b4aa1a25349a133612494f9012f8a5 +size 480572 diff --git a/vlm/train/-2FCwDKRREu/13.png b/vlm/train/-2FCwDKRREu/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ffdd6979f6d1cc53cb15d7e3dfe05ed7023254eb --- /dev/null +++ b/vlm/train/-2FCwDKRREu/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195cb6f75b5d4ca8575f70382c9c01b610c22c319fd86f556f78ec239bc1753f +size 354919 diff --git a/vlm/train/-2FCwDKRREu/14.png b/vlm/train/-2FCwDKRREu/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4b469180b7d8da6bf03e536543bad19bc9ea290d --- /dev/null +++ b/vlm/train/-2FCwDKRREu/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e354898b1bf500a77def5906ab9b30ded1a4fbf9d3de4fae74a6aca67309ea83 +size 697963 diff --git a/vlm/train/-2FCwDKRREu/15.png b/vlm/train/-2FCwDKRREu/15.png new file mode 100644 index 0000000000000000000000000000000000000000..825dffaa40b1237b9b63cf0c3965479cedac2c6c --- /dev/null +++ b/vlm/train/-2FCwDKRREu/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658e009ad8270cac78d731e637ce7d36f0d5bdef739eb278518ee44e989f88e0 +size 727644 diff --git a/vlm/train/-2FCwDKRREu/16.png b/vlm/train/-2FCwDKRREu/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2e30b65acc324c2660b076121c04f3e2cf6e3734 --- /dev/null +++ b/vlm/train/-2FCwDKRREu/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d707e232c94350799eb3d8bb23ecb4a2616d4bdf0326080ffda14b4604588145 +size 454937 diff --git a/vlm/train/-2FCwDKRREu/2.png b/vlm/train/-2FCwDKRREu/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f93d2dbd110f84ba5375d760a714ee3ace7b423 --- /dev/null +++ b/vlm/train/-2FCwDKRREu/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad153ee3834c4758cd93420735d2fac1b201eef00ad8d2b531d4ae2e2185b93a +size 630712 diff --git a/vlm/train/-2FCwDKRREu/3.png b/vlm/train/-2FCwDKRREu/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6d3aae2ab93353828fa79a98055366e1b869b548 --- /dev/null +++ b/vlm/train/-2FCwDKRREu/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8c5ff0f14c8872c02c93083b6fe92c046d3c1d03c00adef3bb4090d90a5e60 +size 681183 diff --git a/vlm/train/-2FCwDKRREu/4.png b/vlm/train/-2FCwDKRREu/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7fae42113f9590d8f62b667294d28b97e21ba2cb --- /dev/null +++ b/vlm/train/-2FCwDKRREu/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2e9d8457711a622927839fe9b3dc42c51013ba00e48ff5db30f522f0fab002 +size 613004 diff --git a/vlm/train/-2FCwDKRREu/5.png b/vlm/train/-2FCwDKRREu/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c5bea84a6e579008aed2413adee8208f65d7cb05 --- /dev/null +++ b/vlm/train/-2FCwDKRREu/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61843302ad6525cc12649c9127eaa07e8cb473cb409d7c35ed8b6fd309bae9a +size 581811 diff --git a/vlm/train/-2FCwDKRREu/6.png b/vlm/train/-2FCwDKRREu/6.png new file mode 100644 index 0000000000000000000000000000000000000000..44eec67143115b92fcd4d2952637dcc39d8e3b0a --- /dev/null +++ b/vlm/train/-2FCwDKRREu/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32296e891baeee78a43630731f5628450d4510510530ed6683004cfbde558b03 +size 943224 diff --git a/vlm/train/-2FCwDKRREu/7.png b/vlm/train/-2FCwDKRREu/7.png new file mode 100644 index 0000000000000000000000000000000000000000..41b7f64583e0271f7b7ec4cb38fb91eefae81053 --- /dev/null +++ b/vlm/train/-2FCwDKRREu/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4644bdaf6064b08c97ce7a402369c5aa6cd1e5b7b440d6b0b02773ae9ad06d8e +size 797607 diff --git a/vlm/train/-2FCwDKRREu/8.png b/vlm/train/-2FCwDKRREu/8.png new file mode 100644 index 0000000000000000000000000000000000000000..26d4182a514f23bbe248e1934793f5a1ef05e41c --- /dev/null +++ b/vlm/train/-2FCwDKRREu/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2806636d62cfcc91e6d1338b2141255555e002c89dbcbd255a7e9846a0aa6c +size 999159 diff --git a/vlm/train/-2FCwDKRREu/9.png b/vlm/train/-2FCwDKRREu/9.png new file mode 100644 index 0000000000000000000000000000000000000000..06e3abfe711fe33693a02fe9b867877d854199fa --- /dev/null +++ b/vlm/train/-2FCwDKRREu/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230d146138ed7e749d85dc897efb6515b5f3d73a87100c73853e274cd2245f6c +size 554897 diff --git a/vlm/train/14nC8HNd4Ts/0.png b/vlm/train/14nC8HNd4Ts/0.png new file mode 100644 index 0000000000000000000000000000000000000000..00bc493efc954bc41a83663cf73722e2bd166072 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7eec0967c8724900bfdc3388d1506a6f73f7b25ec917d255f9956044ffa3199 +size 507289 diff --git a/vlm/train/14nC8HNd4Ts/1.png b/vlm/train/14nC8HNd4Ts/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1f82e51461e1e1111bc4455a36044863ac3638fd --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa417bbfa9097ea557def1b235a5aba629f092ae31c9af69bdb946f80a0fec8 +size 559423 diff --git a/vlm/train/14nC8HNd4Ts/10.png b/vlm/train/14nC8HNd4Ts/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b1337df7271387631c04ce2602ce465bb759f504 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73785a38fd165181f2ab97faa2c6ff6143e262039b54f5500ee33b8234384d9c +size 214878 diff --git a/vlm/train/14nC8HNd4Ts/11.png b/vlm/train/14nC8HNd4Ts/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b9cc734ce3c1a4888990dae1edda007d45bf3a6f --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842b5b0413177238c5a03ba91614114d90660ac844297bf059d9ef968481540d +size 349649 diff --git a/vlm/train/14nC8HNd4Ts/12.png b/vlm/train/14nC8HNd4Ts/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e8a2596f5ede4dfa656eeec982be7871765142f5 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfde0c81349a9a0ad59c6d813e5dab3482e09de30768b76be5680dda92f76c79 +size 377877 diff --git a/vlm/train/14nC8HNd4Ts/13.png b/vlm/train/14nC8HNd4Ts/13.png new file mode 100644 index 0000000000000000000000000000000000000000..70a364a98688d9df9b701922b907623d2e75a080 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2625271e44b9526e36592f8f97e925bce44762092bad3445c4bbc8a788a7bc +size 172292 diff --git a/vlm/train/14nC8HNd4Ts/14.png b/vlm/train/14nC8HNd4Ts/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ba047ed7769d0cd6e25db07ba2af4c3e60a8cdae --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b565ec7a50c439c669f994cfb8147d475496cdfddd49b5b9bf8d29dcdc4f1120 +size 215791 diff --git a/vlm/train/14nC8HNd4Ts/15.png b/vlm/train/14nC8HNd4Ts/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2ad67a3703535d6d7c4090ce42dee95c2117e790 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ccc35c56e22c036cee2647ebed1e2aa75d93bad802d5998e004a3da3d66e38 +size 351624 diff --git a/vlm/train/14nC8HNd4Ts/16.png b/vlm/train/14nC8HNd4Ts/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a32236557693507b6cd112f167fe70e1fcfc41f8 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168fec76f497073f7b70f41502f3bf2d23e9462624e0f3a15b09a76a6cd856fa +size 331460 diff --git a/vlm/train/14nC8HNd4Ts/17.png b/vlm/train/14nC8HNd4Ts/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d35f737bca68929ef1d4f0538f33a02941c19348 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5b715f0d261264ff9cb79ba4ae3ccf2d7e458274e813c7368752756b4acdcd +size 341006 diff --git a/vlm/train/14nC8HNd4Ts/2.png b/vlm/train/14nC8HNd4Ts/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a15c5f43e8ff4189cad7c237498755082c336d2 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2863f23bc9fe768145db9fcaa60ebea4f7cb657bb186d93b1af4fb57190c924 +size 586146 diff --git a/vlm/train/14nC8HNd4Ts/3.png b/vlm/train/14nC8HNd4Ts/3.png new file mode 100644 index 0000000000000000000000000000000000000000..09b7b5394cd2188eacab018857ae7ee664e8de6c --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1272eb04e0a40e77e11febe1067bbe7a214b6d20b62170a8d974f297fb78c34 +size 508633 diff --git a/vlm/train/14nC8HNd4Ts/4.png b/vlm/train/14nC8HNd4Ts/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9e2fa98531b6fb23945616d060c63cd6081ff844 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86b98c858fec7f613753ad9befb7692f60622bf43ed510f7123962d031b275a +size 448339 diff --git a/vlm/train/14nC8HNd4Ts/5.png b/vlm/train/14nC8HNd4Ts/5.png new file mode 100644 index 0000000000000000000000000000000000000000..913ff26a0adc530e2ef7f8a6e3c761cea160fa26 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ef7980a51b1a499072cf6a9650c775e6ab313ad8bca9d7d8821779e578c523 +size 372257 diff --git a/vlm/train/14nC8HNd4Ts/6.png b/vlm/train/14nC8HNd4Ts/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bb38c859c4c127bc211ec79e75e58a3a953f9744 --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e7d81c5bc044d0704e1ea712cf46ab9d7f479f5f4350560fc1617b73b70087 +size 394929 diff --git a/vlm/train/14nC8HNd4Ts/7.png b/vlm/train/14nC8HNd4Ts/7.png new file mode 100644 index 0000000000000000000000000000000000000000..77d7acac1b2ce80c52d7cc58205457ed19542deb --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395b54b4549a702c02a89ee678719c08fdf773dc18a413b3208b86d96614497f +size 553480 diff --git a/vlm/train/14nC8HNd4Ts/8.png b/vlm/train/14nC8HNd4Ts/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bf056f904bc1bd1a3a9030e51b9076f5bc78687c --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29def4c612e1d4a2395d0ddbf450de425225a82988971412ffa0897d41f41efa +size 557295 diff --git a/vlm/train/14nC8HNd4Ts/9.png b/vlm/train/14nC8HNd4Ts/9.png new file mode 100644 index 0000000000000000000000000000000000000000..34ffc54ce533574fd08c5c1eb582254477780bfb --- /dev/null +++ b/vlm/train/14nC8HNd4Ts/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0d34535f7396e0e23d331c1778e3eb522c154c96809da4b81b0f07b4573c32 +size 506908 diff --git a/vlm/train/2UyqK45_djA/0.png b/vlm/train/2UyqK45_djA/0.png new file mode 100644 index 0000000000000000000000000000000000000000..92e98c967dba7a76b88921534a08780b24866501 --- /dev/null +++ b/vlm/train/2UyqK45_djA/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee97cf6430239c7c160e3cded63b530ab0dbc67786082e1f62f1c68a24273df +size 439251 diff --git a/vlm/train/2UyqK45_djA/1.png b/vlm/train/2UyqK45_djA/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a07d559ff6deedf93d31ebd4186434dfd3204f1a --- /dev/null +++ b/vlm/train/2UyqK45_djA/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af3a3383ba65ae70723bffffcafb1ef154e5b1f012240cbae80525bceeaeaece +size 534938 diff --git a/vlm/train/2UyqK45_djA/10.png b/vlm/train/2UyqK45_djA/10.png new file mode 100644 index 0000000000000000000000000000000000000000..51fe82b66b96900d5bf19279bf6c84f76c65b970 --- /dev/null +++ b/vlm/train/2UyqK45_djA/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8b8307c8a24155534f50b6378d5a84e9e715a4323956a3fa0599cb6714a4f6 +size 350727 diff --git a/vlm/train/2UyqK45_djA/11.png b/vlm/train/2UyqK45_djA/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9f504f4a90c1fe5b352b4692fc4957757c15de56 --- /dev/null +++ b/vlm/train/2UyqK45_djA/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98f56bf0bd79a8f062abf0f00a94236c30bf18531cbdd07d2775c9522e9b11b +size 373849 diff --git a/vlm/train/2UyqK45_djA/2.png b/vlm/train/2UyqK45_djA/2.png new file mode 100644 index 0000000000000000000000000000000000000000..10c058135b4b8031ab4dec109928043be5746eda --- /dev/null +++ b/vlm/train/2UyqK45_djA/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28671f38077932e1c49838b5e573ee3f44f56653f553d7d3923a8a0114b0ca71 +size 498527 diff --git a/vlm/train/2UyqK45_djA/3.png b/vlm/train/2UyqK45_djA/3.png new file mode 100644 index 0000000000000000000000000000000000000000..eed339e322d25dc3a71af1116e99e779fc902ac0 --- /dev/null +++ b/vlm/train/2UyqK45_djA/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326033cd1e701095e539042184ac3c771f259e5c93d49a50407e85417e382820 +size 571773 diff --git a/vlm/train/2UyqK45_djA/4.png b/vlm/train/2UyqK45_djA/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e96a8f0d77699bdae67550f1c1675d1d72c6a1b8 --- /dev/null +++ b/vlm/train/2UyqK45_djA/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774917dac369796bc8eef25a80c6fc27880df3abd9fdf4af09d974b519d223dc +size 563783 diff --git a/vlm/train/2UyqK45_djA/5.png b/vlm/train/2UyqK45_djA/5.png new file mode 100644 index 0000000000000000000000000000000000000000..29a5c2f92f6e8c952059c24641758bd61a3d431c --- /dev/null +++ b/vlm/train/2UyqK45_djA/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f97e548227e083cbf0c13a5caab1676702ffbeee9e3252031d834307a533d1 +size 574777 diff --git a/vlm/train/2UyqK45_djA/6.png b/vlm/train/2UyqK45_djA/6.png new file mode 100644 index 0000000000000000000000000000000000000000..52f509a46b1c704c83b5186e2e5fc2162bc65445 --- /dev/null +++ b/vlm/train/2UyqK45_djA/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0672c2733e06774ddaf1d05bdded7a771123c389f0b4aa09418e4db1956671d0 +size 625969 diff --git a/vlm/train/2UyqK45_djA/7.png b/vlm/train/2UyqK45_djA/7.png new file mode 100644 index 0000000000000000000000000000000000000000..45cf426d122a7ebf3c3c2e7636cbe2638a06c02c --- /dev/null +++ b/vlm/train/2UyqK45_djA/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03780fed4bed3ebe120ba2cce031ba8a1314f994de385aa07a7782bb4902ed6 +size 647462 diff --git a/vlm/train/2UyqK45_djA/8.png b/vlm/train/2UyqK45_djA/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b045431b13a2cc126495712bae560f875265d7 --- /dev/null +++ b/vlm/train/2UyqK45_djA/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f591362ff948ab518cdcaa030d13143a4cffd446908099118f34fa3711e9378e +size 630880 diff --git a/vlm/train/2UyqK45_djA/9.png b/vlm/train/2UyqK45_djA/9.png new file mode 100644 index 0000000000000000000000000000000000000000..740ff24329bf6c888df62bcfe58326b78908c165 --- /dev/null +++ b/vlm/train/2UyqK45_djA/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae4c3c0f0c053819c119b01153b43ce228fe9ac58e85e8a2da0b6739511ee5f +size 577994 diff --git a/vlm/train/4-gBZAkF9ze/1.png b/vlm/train/4-gBZAkF9ze/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf91fcd4ba5c82913d1517e46625e0e69183756 --- /dev/null +++ b/vlm/train/4-gBZAkF9ze/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb610ebdca3b70d5499367ba553d5e37d6e5953f2ce50546a28515440bcf7e2 +size 540737 diff --git a/vlm/train/4-gBZAkF9ze/4.png b/vlm/train/4-gBZAkF9ze/4.png new file mode 100644 index 0000000000000000000000000000000000000000..afa57161cf0490e24cb377e322f5863215c9d7ca --- /dev/null +++ b/vlm/train/4-gBZAkF9ze/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc3a7bf31755d52a367c750e0d89136bfdeaf8bc7545300ab1c72626101abef +size 551994 diff --git a/vlm/train/4-gBZAkF9ze/5.png b/vlm/train/4-gBZAkF9ze/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6440a4c90d705775864a59ea7fd5257969ba26 --- /dev/null +++ b/vlm/train/4-gBZAkF9ze/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3807ff9ddc1bc5f7c8022a6b6448497a2e96d49bcc856abb799c91fa127d0fb5 +size 446076 diff --git a/vlm/train/4-gBZAkF9ze/7.png b/vlm/train/4-gBZAkF9ze/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a6f7a8bd3509b6cfdd962641f4c4cc7a855f80ad --- /dev/null +++ b/vlm/train/4-gBZAkF9ze/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca2e1345b5be5389b289ed57f356f9e8b3a2382293163755b2b30cb036dc673 +size 540845 diff --git a/vlm/train/4-gBZAkF9ze/8.png b/vlm/train/4-gBZAkF9ze/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e54059b09085c1520d33a113a327474ed9d98e95 --- /dev/null +++ b/vlm/train/4-gBZAkF9ze/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded4be97116d709cc2ba2a83de2e1d7bace15a925afed733ad444d34d82e0150 +size 588289 diff --git a/vlm/train/84gjULz1t5/0.png b/vlm/train/84gjULz1t5/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2ecb59fb779c0b4ae7756e99b967614fa63e9d74 --- /dev/null +++ b/vlm/train/84gjULz1t5/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8ba870f8c3606a30b652b6138b831b170916162dc13afca2369687fe2329f8 +size 466928 diff --git a/vlm/train/84gjULz1t5/1.png b/vlm/train/84gjULz1t5/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7f7ba3bb16e511be9dfe7e8ef52f5b2682bfd074 --- /dev/null +++ b/vlm/train/84gjULz1t5/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f3fd40b8c5d2851ed70035a3887ed00739a3aa722fff9cb1db9a789d0e3ba35 +size 630046 diff --git a/vlm/train/84gjULz1t5/10.png b/vlm/train/84gjULz1t5/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f9df1c674209e6d31b7563759ac988b950e7b368 --- /dev/null +++ b/vlm/train/84gjULz1t5/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e2de0766198d27bc0182890977855b2bde7ba560aafd06e1cd79809602182c +size 555319 diff --git a/vlm/train/84gjULz1t5/11.png b/vlm/train/84gjULz1t5/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d0ecbd1029cc19cf60e97c357b0b24f6fb3a07d6 --- /dev/null +++ b/vlm/train/84gjULz1t5/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:004cfc0f33e051f48233508b9d7a2cf1f0ab0d00e51f452c56c82b4e4ebd0180 +size 104919 diff --git a/vlm/train/84gjULz1t5/12.png b/vlm/train/84gjULz1t5/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f8528fa1208d79b046eea1909ddd91422cf73f --- /dev/null +++ b/vlm/train/84gjULz1t5/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62944a523c5023a27feddfbdefbffc08552f90c05717e3900c943c3e5aca1e74 +size 118666 diff --git a/vlm/train/84gjULz1t5/13.png b/vlm/train/84gjULz1t5/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2da107724959c1170547e80c9aae822f02caedb5 --- /dev/null +++ b/vlm/train/84gjULz1t5/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ae8ee29e1d509ed1c60efc337fe0165ca2891bd2d7f231dc3b728f2205eb10 +size 392976 diff --git a/vlm/train/84gjULz1t5/14.png b/vlm/train/84gjULz1t5/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0de130c062360a4180493dc861566c5421b5b7cd --- /dev/null +++ b/vlm/train/84gjULz1t5/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ffa07876cbd038396b1bb972ed3d9591867f5ab9aaa33d62a72ed42ead9f24 +size 323531 diff --git a/vlm/train/84gjULz1t5/15.png b/vlm/train/84gjULz1t5/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d4b28106358b7edcca46c115fa74a426476e891e --- /dev/null +++ b/vlm/train/84gjULz1t5/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9360bdb6b7022ecff67b9784f58efde70595105f512275122b8db5e67a2d9f +size 307677 diff --git a/vlm/train/84gjULz1t5/16.png b/vlm/train/84gjULz1t5/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d9db9141ebff53de3c6c0947258379585841f728 --- /dev/null +++ b/vlm/train/84gjULz1t5/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea718cf634f68bba86beac1cbae97a2e0af1d072a179dbc99096cef828227b5 +size 333017 diff --git a/vlm/train/84gjULz1t5/17.png b/vlm/train/84gjULz1t5/17.png new file mode 100644 index 0000000000000000000000000000000000000000..a553bad673fca4d877542bfbfb2fc9e2853d941f --- /dev/null +++ b/vlm/train/84gjULz1t5/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367eed25b0616253c8eda32bc708c7d6b6812aedad2c73bf01cd283228a8294e +size 318858 diff --git a/vlm/train/84gjULz1t5/18.png b/vlm/train/84gjULz1t5/18.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7bdfcedb3c78de788d34f29dbbfcc2424de125 --- /dev/null +++ b/vlm/train/84gjULz1t5/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7086dc5bfc97534d8996d6648c10ce9fe0531170ae5110e2e37be40b7054527 +size 282979 diff --git a/vlm/train/84gjULz1t5/19.png b/vlm/train/84gjULz1t5/19.png new file mode 100644 index 0000000000000000000000000000000000000000..b25dcfc2409d6f86076a7bcdeee60c4d085bc827 --- /dev/null +++ b/vlm/train/84gjULz1t5/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eefd8b44896eecd1dc165406a488dac4d0ff507fe68445432bd2ed50f56d45f +size 364766 diff --git a/vlm/train/84gjULz1t5/2.png b/vlm/train/84gjULz1t5/2.png new file mode 100644 index 0000000000000000000000000000000000000000..553d06a58e91aa472acee809f42bdfcceddc856e --- /dev/null +++ b/vlm/train/84gjULz1t5/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c2aade4ae8bfe9e27882768bc1d9050999c057433020bec17906a1573ca52c +size 568495 diff --git a/vlm/train/84gjULz1t5/20.png b/vlm/train/84gjULz1t5/20.png new file mode 100644 index 0000000000000000000000000000000000000000..19cc9367c181ba5c0054bbf07b72cc6d7dcdec58 --- /dev/null +++ b/vlm/train/84gjULz1t5/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c72dbe3632c6590b3e813f0e62d30ced8c1c3c585aebd647838f37472c77c1d +size 306865 diff --git a/vlm/train/84gjULz1t5/21.png b/vlm/train/84gjULz1t5/21.png new file mode 100644 index 0000000000000000000000000000000000000000..1b5cf0c48cb044afc363d2835cefd3bab4ed2159 --- /dev/null +++ b/vlm/train/84gjULz1t5/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee7c684b9c5d329992026bf3b81d68873de4052d7d30aac827d4ff097b49237 +size 274098 diff --git a/vlm/train/84gjULz1t5/22.png b/vlm/train/84gjULz1t5/22.png new file mode 100644 index 0000000000000000000000000000000000000000..29b3dcdad51d4c0705d1446b2a1c03cc1e952928 --- /dev/null +++ b/vlm/train/84gjULz1t5/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9faa6c29a53980acf54eacb056938cc419b6d1f378da672a37d2b23e6534f95 +size 318631 diff --git a/vlm/train/84gjULz1t5/23.png b/vlm/train/84gjULz1t5/23.png new file mode 100644 index 0000000000000000000000000000000000000000..1cc682c456662e42ddabfbf044c80e2ec261828c --- /dev/null +++ b/vlm/train/84gjULz1t5/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c9db6633739b4cd7459b7dd2456e6be8a272c7a0e1dc4f0775c42f01642502 +size 320530 diff --git a/vlm/train/84gjULz1t5/24.png b/vlm/train/84gjULz1t5/24.png new file mode 100644 index 0000000000000000000000000000000000000000..e78d555205568057bd2c8b0d0aaa042ae9d985f7 --- /dev/null +++ b/vlm/train/84gjULz1t5/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6231d28c9a36a82ab04d51506a7d3dabfe47d4be0026b445b4bd3cf3260a91e5 +size 244405 diff --git a/vlm/train/84gjULz1t5/25.png b/vlm/train/84gjULz1t5/25.png new file mode 100644 index 0000000000000000000000000000000000000000..a461852b5399df5fd108c8c5c6643cb79c8a1e8c --- /dev/null +++ b/vlm/train/84gjULz1t5/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e661a5482c101902903f37b099c591066dc7f4da56dd71e6667c704044a7067 +size 290537 diff --git a/vlm/train/84gjULz1t5/26.png b/vlm/train/84gjULz1t5/26.png new file mode 100644 index 0000000000000000000000000000000000000000..06a389c7438b020b304c50577cd6b4c021716008 --- /dev/null +++ b/vlm/train/84gjULz1t5/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9939b1365da575b2992885b0bc38e4a16f5e6d85a4de4207ac555673485012 +size 260220 diff --git a/vlm/train/84gjULz1t5/27.png b/vlm/train/84gjULz1t5/27.png new file mode 100644 index 0000000000000000000000000000000000000000..959c37465d4e6165bec814fe8b3c2da3bfbae5ef --- /dev/null +++ b/vlm/train/84gjULz1t5/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc801af7e24f40c8bbd671c4b9548bb8b9bb24c6fbe53ac11d7de59cc6f59b96 +size 299749 diff --git a/vlm/train/84gjULz1t5/28.png b/vlm/train/84gjULz1t5/28.png new file mode 100644 index 0000000000000000000000000000000000000000..4138ac42a8b929d70792f4201d48cadb8631e683 --- /dev/null +++ b/vlm/train/84gjULz1t5/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8116c1b42e940a665b86d96d224d9e518faa673edb85195e68746ccc24e40e +size 286310 diff --git a/vlm/train/84gjULz1t5/29.png b/vlm/train/84gjULz1t5/29.png new file mode 100644 index 0000000000000000000000000000000000000000..d302ab5a469460b091eabd0ba112767ee58ccd74 --- /dev/null +++ b/vlm/train/84gjULz1t5/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f422d0f60017ba8e1fd27714eabba6ff317edbf73ebc0fcd6094f0f0b2a09101 +size 116425 diff --git a/vlm/train/84gjULz1t5/3.png b/vlm/train/84gjULz1t5/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ae50c8d088d469b81c5fcf801c45e1952f98123 --- /dev/null +++ b/vlm/train/84gjULz1t5/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fbb5d7ec618df1b82c5fb7a93e8fb5566b2d67431d8197f2fc18cf2c21ea77 +size 484137 diff --git a/vlm/train/84gjULz1t5/4.png b/vlm/train/84gjULz1t5/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b00b923aba48cbea4fbc2557ba99f8d61be4874d --- /dev/null +++ b/vlm/train/84gjULz1t5/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:401bbaabe4e46a2216de83ecaad7352503b0b0f8275ced9b1a81c584eb9687d9 +size 566795 diff --git a/vlm/train/84gjULz1t5/5.png b/vlm/train/84gjULz1t5/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f65c2056a02c085a679d95393431632ec239bdd1 --- /dev/null +++ b/vlm/train/84gjULz1t5/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa5efda64fac69c3a9efdfd43ac510d440b520f01e992c7aa49b30409d4358d +size 470608 diff --git a/vlm/train/84gjULz1t5/6.png b/vlm/train/84gjULz1t5/6.png new file mode 100644 index 0000000000000000000000000000000000000000..320e19d59513a33ed2e145d95a63ccd57335056f --- /dev/null +++ b/vlm/train/84gjULz1t5/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070af01a8714ac68eaefa5ef4a8dda4023d79c6e91a8b0891eb3187af9492e96 +size 564068 diff --git a/vlm/train/84gjULz1t5/7.png b/vlm/train/84gjULz1t5/7.png new file mode 100644 index 0000000000000000000000000000000000000000..564c4b587f79a4b792fe2cb783b86b2e4508d4cc --- /dev/null +++ b/vlm/train/84gjULz1t5/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ae4ca6b460695c68504204fd57ae3d61133584435ffc2a8d3221de80e9d301 +size 456874 diff --git a/vlm/train/84gjULz1t5/8.png b/vlm/train/84gjULz1t5/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f516ba96a286d8632611895df417ec515744df29 --- /dev/null +++ b/vlm/train/84gjULz1t5/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f16987c8cb15c2873d3cf5f0fa8d6d4a4256961af6581a7751190d5545d140 +size 497107 diff --git a/vlm/train/84gjULz1t5/9.png b/vlm/train/84gjULz1t5/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a91c485b4806dcf6d2a54ba32305c681d2183217 --- /dev/null +++ b/vlm/train/84gjULz1t5/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3d889ef5b31dbf08a89390277ac3a296b9baa7b4be6efd2cdd12fdde5bc0ff +size 529771 diff --git a/vlm/train/8ygF02Zm51q/0.png b/vlm/train/8ygF02Zm51q/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f7352639c4742ade2918468deccce910b357ec --- /dev/null +++ b/vlm/train/8ygF02Zm51q/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19000eab5c41bf1ccef67a4e45a310d64499bd622e45d7ff5bdccb8aeb831dcd +size 439823 diff --git a/vlm/train/8ygF02Zm51q/1.png b/vlm/train/8ygF02Zm51q/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ebdb6d9529530112795577bcf00509d02056cfc9 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0533e87b5199b3954ef89c338d17c221a35aa80fc08153b67db14a493bcaf0f5 +size 536336 diff --git a/vlm/train/8ygF02Zm51q/10.png b/vlm/train/8ygF02Zm51q/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6d675d3aa767abdc797f9b3330e9ac5d817dc934 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2cae1ef28b690944ca79702504d546544c6949e9f33c7f13e9d9364614db1f +size 522495 diff --git a/vlm/train/8ygF02Zm51q/11.png b/vlm/train/8ygF02Zm51q/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee7b9d19603ded33766d7d09070348092c8ec7f --- /dev/null +++ b/vlm/train/8ygF02Zm51q/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fdc838b806d00388a92b07ab10e611c1d82dfaae6e5ccc2d16b466d52f84bf2 +size 522364 diff --git a/vlm/train/8ygF02Zm51q/12.png b/vlm/train/8ygF02Zm51q/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a86f4d27a3f2888a8881b88bec05804d7715788a --- /dev/null +++ b/vlm/train/8ygF02Zm51q/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04bec02c6fd6d077cc690f2ace82b87e5ac8361ef85ab2aefa2cc0e2aa3bf58 +size 276725 diff --git a/vlm/train/8ygF02Zm51q/2.png b/vlm/train/8ygF02Zm51q/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2dce871da2690dac16e10577813b63fa4e0b8234 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1229cfedeea64dfb1f19724572dceb9ded25b55e3c26916f3073b8eb784d6231 +size 549333 diff --git a/vlm/train/8ygF02Zm51q/3.png b/vlm/train/8ygF02Zm51q/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9bb50449cd985ef60eb3d1adf0ff1ffb7a697ea1 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7d42ef06590908c9d06ea7e8b97939923a97c0b3ce9c3c758eaaadfa8c9b30 +size 535609 diff --git a/vlm/train/8ygF02Zm51q/4.png b/vlm/train/8ygF02Zm51q/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a34bd621ec554da31101826439eba2cd56dc1d76 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ef426d42f9842d4979b3f3fe0b62344423ad5cb9cc4b55280a05941be54a0e +size 489582 diff --git a/vlm/train/8ygF02Zm51q/5.png b/vlm/train/8ygF02Zm51q/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a6bc5cae5a514e5c8c8ad6f6319f1beb86019e9a --- /dev/null +++ b/vlm/train/8ygF02Zm51q/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd7c83bf98b6ea340ee085779adbc6c98bb831ead45935d6174da7d093edaf3 +size 483189 diff --git a/vlm/train/8ygF02Zm51q/6.png b/vlm/train/8ygF02Zm51q/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e361e462762ff6afd99e7a8b9366b3357fe69526 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d3f0ebf28c0faca66d52bf11eb01723dda8aa709aca43c21b30efd62fdb9a6 +size 443597 diff --git a/vlm/train/8ygF02Zm51q/7.png b/vlm/train/8ygF02Zm51q/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c53a461f2a93c16404e0a98c3b75093c5fb6d0 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57ec9b8f9ffdb3ad795612b9a351cc9e0a58f34dad739c04e794782d8efcbf5 +size 443431 diff --git a/vlm/train/8ygF02Zm51q/8.png b/vlm/train/8ygF02Zm51q/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f462423b7ebdd736064b5a0ae69406e4b5b2d732 --- /dev/null +++ b/vlm/train/8ygF02Zm51q/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a2508bf3979fca683f19938f9f15e0740ff22e8bcfb3c8ccd5f90625750df1 +size 396006 diff --git a/vlm/train/8ygF02Zm51q/9.png b/vlm/train/8ygF02Zm51q/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fe298e8954037460e7bc71a573b226b3035de70d --- /dev/null +++ b/vlm/train/8ygF02Zm51q/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c43cbaf90c3a931257342b5e8c7575ef11483bac97a73c5a1bdd0b95ef352e +size 509062 diff --git a/vlm/train/B1x8anVFPr/0.png b/vlm/train/B1x8anVFPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3979aa69056c82bcfa42e1d8cd83c01244682dd5 --- /dev/null +++ b/vlm/train/B1x8anVFPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a0ed0de8866cb5eed4e9b7705773b91420a9048eeda37f07f430b86ca99df2 +size 482504 diff --git a/vlm/train/B1x8anVFPr/1.png b/vlm/train/B1x8anVFPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..14f8752c0dd724581cf91ed484fa0c82c5c65ba1 --- /dev/null +++ b/vlm/train/B1x8anVFPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01d3fec449f6e17cd974078baf2baa04629a442931296cdda2725a29ed24aeb +size 556641 diff --git a/vlm/train/B1x8anVFPr/10.png b/vlm/train/B1x8anVFPr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..14a14721db87a2cb0f319fe2353ff2c5094172e6 --- /dev/null +++ b/vlm/train/B1x8anVFPr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef669282d0b0ea80eea8463db3e23bccfdd4eefcdbb1a6724771b4924c398b0 +size 543022 diff --git a/vlm/train/B1x8anVFPr/11.png b/vlm/train/B1x8anVFPr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b67618d68801b9d487266ce7425da412550ca707 --- /dev/null +++ b/vlm/train/B1x8anVFPr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd94fe0281126cad710bd1d393a992464a36b0fe2260ad2ec3360535f773d1b +size 551419 diff --git a/vlm/train/B1x8anVFPr/12.png b/vlm/train/B1x8anVFPr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cff7a4c37577e71f6a8609b57ed4403db739d038 --- /dev/null +++ b/vlm/train/B1x8anVFPr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41fae10182bd1f90db492a1fe1c75fffbe0bec3a95bae5e28e0898e45f812bc +size 166793 diff --git a/vlm/train/B1x8anVFPr/13.png b/vlm/train/B1x8anVFPr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..fcbfdf481eecbfa96ed330548c875bfe6912e555 --- /dev/null +++ b/vlm/train/B1x8anVFPr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc535a153c265422174304015435efd0230477bdee43e279528f1c64df9a73e7 +size 501742 diff --git a/vlm/train/B1x8anVFPr/14.png b/vlm/train/B1x8anVFPr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0f6b5979a07a4d09be2d732dd60185c10f6ac47b --- /dev/null +++ b/vlm/train/B1x8anVFPr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735c75b4d0eb949e2ec9731fcbec3596bd09f3340fcf970e51cccf2ff2e20c9c +size 360363 diff --git a/vlm/train/B1x8anVFPr/15.png b/vlm/train/B1x8anVFPr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3214dc058079466388ed4bc1ec33c7df40bee2 --- /dev/null +++ b/vlm/train/B1x8anVFPr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca38a463cfb1eaf1d665b9f81ed5bb3ff3550b55d66c7b51334adbd768db3da +size 309351 diff --git a/vlm/train/B1x8anVFPr/16.png b/vlm/train/B1x8anVFPr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6108df38249c35a214aa75116315933b93356b12 --- /dev/null +++ b/vlm/train/B1x8anVFPr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c996ce6c22e4b6906c451723a50ca6eab50ab1361823a5250c64c3c43781d0a +size 269186 diff --git a/vlm/train/B1x8anVFPr/17.png b/vlm/train/B1x8anVFPr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..02608a7de2824536933746469a4cf1a5f175d0e5 --- /dev/null +++ b/vlm/train/B1x8anVFPr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd49202917dbe9cacb23257f44df8bac9b6bf34e8fc7c79bebeb9f3af68a107a +size 365163 diff --git a/vlm/train/B1x8anVFPr/18.png b/vlm/train/B1x8anVFPr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..eb2af67551455babbc83705732adbc0a77dd7dde --- /dev/null +++ b/vlm/train/B1x8anVFPr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6cf339d7e02a0baa5730c247a8b1cafaba614522446f065dc7d885afe124e7f +size 378564 diff --git a/vlm/train/B1x8anVFPr/19.png b/vlm/train/B1x8anVFPr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed05080bf41b8679dfbf76bde39875b316f30da --- /dev/null +++ b/vlm/train/B1x8anVFPr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4399abd015e875c5b7d32cb3e86cd4db2cc2da24de4479f0de9e69a7bb0098b8 +size 341574 diff --git a/vlm/train/B1x8anVFPr/2.png b/vlm/train/B1x8anVFPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6a28eda6ce9a4cb2b1ef0ea45a441fcb5f1f450b --- /dev/null +++ b/vlm/train/B1x8anVFPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37bd6abf6d716ca812f58cdfbf9cffd0137be96a63ac249efafa5ee2492d6f70 +size 518194 diff --git a/vlm/train/B1x8anVFPr/20.png b/vlm/train/B1x8anVFPr/20.png new file mode 100644 index 0000000000000000000000000000000000000000..c647eee32ec02cbcf796a9850513077d3d4fe0b0 --- /dev/null +++ b/vlm/train/B1x8anVFPr/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c483a34ec292eed9891a7d19273e334f8073ae1b1d4a14143a0e142f7deb1c +size 416391 diff --git a/vlm/train/B1x8anVFPr/21.png b/vlm/train/B1x8anVFPr/21.png new file mode 100644 index 0000000000000000000000000000000000000000..e277f3384500a1128c6ee12d0224d8718e9eda9f --- /dev/null +++ b/vlm/train/B1x8anVFPr/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7c2804f0e36169582c3a368038f6a0abee04f676230075c3a8e940df27f1d3 +size 441444 diff --git a/vlm/train/B1x8anVFPr/22.png b/vlm/train/B1x8anVFPr/22.png new file mode 100644 index 0000000000000000000000000000000000000000..1e682691e7e67f032111a8b90002e67b7abeab38 --- /dev/null +++ b/vlm/train/B1x8anVFPr/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9437bd2248979d8cfb287408178c53c63f573b5f6957332aa07636fcb7cb568 +size 283713 diff --git a/vlm/train/B1x8anVFPr/3.png b/vlm/train/B1x8anVFPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e413ca378f3b18e608328ade9c5df05270199946 --- /dev/null +++ b/vlm/train/B1x8anVFPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cf73289ba5ffed13ed78b42f2837427ab95be6aaeac823fd28d922cc1aafab +size 565561 diff --git a/vlm/train/B1x8anVFPr/4.png b/vlm/train/B1x8anVFPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..64e958f9b2dbfa60a2a05c905c6712ec08f2743e --- /dev/null +++ b/vlm/train/B1x8anVFPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ea5b24cc4e31669d2af6d93573026d19a1d214217d6fd2e335a3c40ac0a06c +size 490967 diff --git a/vlm/train/B1x8anVFPr/5.png b/vlm/train/B1x8anVFPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..268d7bf8e72cb71e4ed810e8b20be9e265ef2e53 --- /dev/null +++ b/vlm/train/B1x8anVFPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278aff0cdf4f1de015c2ad9f9a984ca3d3b5cf796880284f6d2dc0089fab54b5 +size 562012 diff --git a/vlm/train/B1x8anVFPr/6.png b/vlm/train/B1x8anVFPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7d606caee30b301becaf2dc24f22e9af331611d5 --- /dev/null +++ b/vlm/train/B1x8anVFPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22a9362928941bfc0cf7c4d23502ab336498247da4dda4e04b8a01660e9ef335 +size 529406 diff --git a/vlm/train/B1x8anVFPr/7.png b/vlm/train/B1x8anVFPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4b29af950352e99a76cf9511b204fa34cd059787 --- /dev/null +++ b/vlm/train/B1x8anVFPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bad00cb31b75370a5bcd57ee6d66e3720e7a012770adf3bdf48ccfacef9b2c3 +size 479567 diff --git a/vlm/train/B1x8anVFPr/8.png b/vlm/train/B1x8anVFPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0a17a606413c31ff6a4c075550ce02556fa07e --- /dev/null +++ b/vlm/train/B1x8anVFPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc3ac47cbd53effa58c32c04bb1f71d126ce1ac42e2a4c1c5948e63c9d2fd61 +size 483795 diff --git a/vlm/train/B1x8anVFPr/9.png b/vlm/train/B1x8anVFPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bf95ccbbfddff73d590e8f2c8cd5e57471bd98d4 --- /dev/null +++ b/vlm/train/B1x8anVFPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22e22a9e5e62befb95b4cbe04fc6c2b3c2f8339c169429b1949857d40f80056 +size 512107 diff --git a/vlm/train/BbNIbVPJ-42/0.png b/vlm/train/BbNIbVPJ-42/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3c5f6b987a9f22efa9f8d3bbdf70b2d051f2d442 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a9b46bdb5207b300da3269fe8b321370545b5df910ef8847055c86b8455be3 +size 527743 diff --git a/vlm/train/BbNIbVPJ-42/1.png b/vlm/train/BbNIbVPJ-42/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8825e36b0a754a3f1043ff81bc34b40130b6969d --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6864adab6f236c5be643d7ee273d4610de366d0b3f04d77666f871812d91440a +size 635392 diff --git a/vlm/train/BbNIbVPJ-42/10.png b/vlm/train/BbNIbVPJ-42/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2afa3f149d34e90c3692e1a4258756a0b207a59b --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c5fb34aca047f2b4538e2ab5262b2df89f3e4b773a60f49adcd67daa6c764e +size 542465 diff --git a/vlm/train/BbNIbVPJ-42/11.png b/vlm/train/BbNIbVPJ-42/11.png new file mode 100644 index 0000000000000000000000000000000000000000..255322020cc906f453f11c056ca3f24ddf00bafc --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ff4ccaed524eab8a039f730b234dab4277a21822f2f5fcc7c07539bd0f8fb6 +size 296504 diff --git a/vlm/train/BbNIbVPJ-42/12.png b/vlm/train/BbNIbVPJ-42/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0864e10c5eb3ced2de3ba31faa38af4c76c5b4fa --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418f71f3d86d97bd876acfe9d7159e1ede6804c42275283f5c1c00785575cfce +size 311436 diff --git a/vlm/train/BbNIbVPJ-42/13.png b/vlm/train/BbNIbVPJ-42/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9494260bd5806aeb457a39e9a681c2c422843899 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684e6f60635ae667847b0a286da28f062524684e3207a3d893c3b2d2d97039cb +size 370367 diff --git a/vlm/train/BbNIbVPJ-42/14.png b/vlm/train/BbNIbVPJ-42/14.png new file mode 100644 index 0000000000000000000000000000000000000000..49fe5383155bf8bef42e12dea10c74f52772a6a7 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae6239f9993e4bbf8f215502f5ec08242edb79c41b486c7a82e4706eb499c37 +size 328821 diff --git a/vlm/train/BbNIbVPJ-42/15.png b/vlm/train/BbNIbVPJ-42/15.png new file mode 100644 index 0000000000000000000000000000000000000000..dc39473da88123e65d941039e5faa079563f8024 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d949e3347c9c8d6e5ca0f814a9bc2f52f67bf786151dc490866d36f3c7ec78e5 +size 349636 diff --git a/vlm/train/BbNIbVPJ-42/16.png b/vlm/train/BbNIbVPJ-42/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7b231e6043984a44f758aa26b7b18058db839974 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e730c6b38529172460d84e8ca1c83242bda1c415dc8a20a822c135142e2a54c5 +size 543347 diff --git a/vlm/train/BbNIbVPJ-42/17.png b/vlm/train/BbNIbVPJ-42/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6c283ef91b20e94f885f51c6fac19780aa1817b9 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d03e31ef3244207f1b56caac3fce8a940a153387c3a1325c6735d3c1f047b42 +size 380425 diff --git a/vlm/train/BbNIbVPJ-42/18.png b/vlm/train/BbNIbVPJ-42/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a00ef9214fafe34394a93dbf5558dcc7d3af4023 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe2f0db90bd78906c1e42140169b14aa9e10145a7c6ea14a08b7b9907658723 +size 390143 diff --git a/vlm/train/BbNIbVPJ-42/19.png b/vlm/train/BbNIbVPJ-42/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c64dc35131d553f45df1945f7ccec5d729b583c5 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725815b1076eabe2beb51ef9bf66d5106ff7a89924d9b1e03fc56833412b6968 +size 406593 diff --git a/vlm/train/BbNIbVPJ-42/2.png b/vlm/train/BbNIbVPJ-42/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e94d04e0b9d8a8c8de9a77ba52905790e20409a --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61cef12278b4cc6e2bd71bbfd90ce04e56a28ebeb625a857ddb864f1257781e +size 516058 diff --git a/vlm/train/BbNIbVPJ-42/20.png b/vlm/train/BbNIbVPJ-42/20.png new file mode 100644 index 0000000000000000000000000000000000000000..c330948df0458ba3d22b3b67d7837963799e680c --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a55aefb452a5ec6f01ae33865860c013c13add78dd9f0640e2e3cd97a8d1d8 +size 376748 diff --git a/vlm/train/BbNIbVPJ-42/21.png b/vlm/train/BbNIbVPJ-42/21.png new file mode 100644 index 0000000000000000000000000000000000000000..ae631c21449d375139eefd01fe2c4e1efc0765af --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87cc7008057d24080d58d30c257c466360393f1411ee9a6f6f3f4306dda13d8b +size 298984 diff --git a/vlm/train/BbNIbVPJ-42/22.png b/vlm/train/BbNIbVPJ-42/22.png new file mode 100644 index 0000000000000000000000000000000000000000..75df4bb63435c1423e6b2d7e7ff19566930cb75b --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b2c6917c5b724f87c0faa355fb34ffa8302fd29ea917fb204227c300cf2f18 +size 466363 diff --git a/vlm/train/BbNIbVPJ-42/23.png b/vlm/train/BbNIbVPJ-42/23.png new file mode 100644 index 0000000000000000000000000000000000000000..b0f1632fb17a239f05322eceae26069337240d57 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abd506f0973b4e8ea57ba68a59b2fa14b942e137b5db67ce673aa7cf6d42e2b +size 490523 diff --git a/vlm/train/BbNIbVPJ-42/24.png b/vlm/train/BbNIbVPJ-42/24.png new file mode 100644 index 0000000000000000000000000000000000000000..5b8678965efeb293f6da4fdcd3586b3a6b4f3a68 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ed6580adc9ccfc9e2208281407233f9e6904e3ae7c51d505369c4f36ea1b244 +size 417021 diff --git a/vlm/train/BbNIbVPJ-42/25.png b/vlm/train/BbNIbVPJ-42/25.png new file mode 100644 index 0000000000000000000000000000000000000000..63bdea12ca57f6958ad7f870d799bd9c0af1bd0d --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30fd816bde4ec0d802ac4004d25f8a2945e90d2107b8f5fce7fb198c8a5f5a52 +size 293770 diff --git a/vlm/train/BbNIbVPJ-42/26.png b/vlm/train/BbNIbVPJ-42/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c0b0bce2c3e0482a9afc88ccdb9609cbecd99933 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8314c90401bbb71852deabad906b6f6b4b3fce9ceb0dcb12764eacdcde36bf +size 294075 diff --git a/vlm/train/BbNIbVPJ-42/3.png b/vlm/train/BbNIbVPJ-42/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9d4daca647b63226173d97749688894fb4915e09 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2ba9d4b8bc0cdcc4722c1b265d5d2acd024da36c0a4c7be22a90006c6a8c74 +size 587816 diff --git a/vlm/train/BbNIbVPJ-42/4.png b/vlm/train/BbNIbVPJ-42/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c2721bce9b6cb16c8fde6a9a0fc08cf194996d5d --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178d64a0ad6e7e9e188686185baef9177b87348e8a6d41c92b6e64b50d370344 +size 553328 diff --git a/vlm/train/BbNIbVPJ-42/5.png b/vlm/train/BbNIbVPJ-42/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2b318f0389e3c184ff83dde68e11118b4fec0874 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d966ffc7e3c693ab5dd3d91e29b296b74f6619114144eb3a88291e385deaef2 +size 602213 diff --git a/vlm/train/BbNIbVPJ-42/6.png b/vlm/train/BbNIbVPJ-42/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e7ac5d13d8b72f8ab4ce5a414a707472cc3e8caa --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd089a68c5c104710a15b91d384e454cfd57951d25b4a505ed6700ad53f1ab2 +size 541701 diff --git a/vlm/train/BbNIbVPJ-42/7.png b/vlm/train/BbNIbVPJ-42/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ccfb0aba2492ec566c66f5d3725d7ff16d923ec7 --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99e40f62a967438377c731ff2dc616b31d67d8982915e6003ac0c4fbbe9d166 +size 456563 diff --git a/vlm/train/BbNIbVPJ-42/8.png b/vlm/train/BbNIbVPJ-42/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4e65bae6d2dcf5e27c847d0b2a473f297945df9d --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e69cee6b5dcb60d33292fd09a512a31c45829f8dd6b801a688af9dc64c55696 +size 577696 diff --git a/vlm/train/BbNIbVPJ-42/9.png b/vlm/train/BbNIbVPJ-42/9.png new file mode 100644 index 0000000000000000000000000000000000000000..537e4292d568e8e09d30437da5cb258dc8b0877f --- /dev/null +++ b/vlm/train/BbNIbVPJ-42/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edeb69a7535fe8012b8437fd4bfa752aafc00166c0faffcd91a0bf8a1ba183c0 +size 537808 diff --git a/vlm/train/BkUDvt5gg/0.png b/vlm/train/BkUDvt5gg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6d9110402f5bd8fde10a1a98b77158895de2ed --- /dev/null +++ b/vlm/train/BkUDvt5gg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ad543cfc8cbe49ae6699e4a283a5ec02d43c9a5c39b3d22103711e8f1b2f16 +size 444272 diff --git a/vlm/train/BkUDvt5gg/1.png b/vlm/train/BkUDvt5gg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c6e8baf1ddf3ba8845724a8a42cbb59abd0a57d5 --- /dev/null +++ b/vlm/train/BkUDvt5gg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925f2d01f450ee26168c12b8cef20feca05e12d08f62f5b6d192c48b1a394c7a +size 554161 diff --git a/vlm/train/BkUDvt5gg/2.png b/vlm/train/BkUDvt5gg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d77466904c2941c4504cbc2777eefa8e51eed62d --- /dev/null +++ b/vlm/train/BkUDvt5gg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9cc6511391ff1c3d08a3f18ca7d08173c4256df4d43e9687b20023ed1375f6 +size 614999 diff --git a/vlm/train/BkUDvt5gg/3.png b/vlm/train/BkUDvt5gg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8369914a6690b1361ecdb3584d1b01c94deeef6c --- /dev/null +++ b/vlm/train/BkUDvt5gg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dacffd7da633238f5c4261cdb3cca4d6df3896de9de0f1cd3e60b588229c2d5 +size 464079 diff --git a/vlm/train/BkUDvt5gg/4.png b/vlm/train/BkUDvt5gg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2642ecbd7d6412ba7bd4cf6710c697639f9d9142 --- /dev/null +++ b/vlm/train/BkUDvt5gg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375fc53c2d4fbec5d6622193264fb820a7b71907abed19448ed5b1dcf758306b +size 411860 diff --git a/vlm/train/BkUDvt5gg/5.png b/vlm/train/BkUDvt5gg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a5bcb49a72da0fc3ab50cf8d647bcb42639abc04 --- /dev/null +++ b/vlm/train/BkUDvt5gg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c609822d7332088b07af719198e098f55879c53ff97d4d8d81e131365c04af +size 429339 diff --git a/vlm/train/BkUDvt5gg/6.png b/vlm/train/BkUDvt5gg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..013e1ba455da9250f9518d26fb603ad6fecfe41d --- /dev/null +++ b/vlm/train/BkUDvt5gg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79bec7be79d8adf6e384aa8c89f86281bea41c42d4269350a32f914da33d5dd +size 378754 diff --git a/vlm/train/BkUDvt5gg/7.png b/vlm/train/BkUDvt5gg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e7f6769dcd1d50d5952ae6c4aa7c7f23b34d7d --- /dev/null +++ b/vlm/train/BkUDvt5gg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6361145236b911efeeaad94753be4ee73004c8b3efed92ffb1c79bb8f09e0a94 +size 601970 diff --git a/vlm/train/BkUDvt5gg/8.png b/vlm/train/BkUDvt5gg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c098d541cfa1d8f6c9b687b8aaaa06cb7e4b4df1 --- /dev/null +++ b/vlm/train/BkUDvt5gg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4950a1d882a9bfd0db39682fa18feda0eb02412447f6ce04cd14d79f62e3a5 +size 178597 diff --git a/vlm/train/BkdpaH9ll/0.png b/vlm/train/BkdpaH9ll/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3bb1f63240d9b053442931a65abc4a3a1e30245f --- /dev/null +++ b/vlm/train/BkdpaH9ll/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad7ff8365f544b0d24f12e697a07c82d0db92cfbbeaab40494bbf5d36097749 +size 519076 diff --git a/vlm/train/BkdpaH9ll/1.png b/vlm/train/BkdpaH9ll/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5bf40ffcdec1fc259d4faeb291db464e3b639856 --- /dev/null +++ b/vlm/train/BkdpaH9ll/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ace364a878012e316e9ec123fd596fc82ead698b755ddadc4ed664632a78759 +size 586351 diff --git a/vlm/train/BkdpaH9ll/10.png b/vlm/train/BkdpaH9ll/10.png new file mode 100644 index 0000000000000000000000000000000000000000..12f6242f0dda923b908b245cd8febefd54a42bae --- /dev/null +++ b/vlm/train/BkdpaH9ll/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab25aa1537a1d571103d642d41455f97881299efdc885eadcd62759a21095657 +size 445466 diff --git a/vlm/train/BkdpaH9ll/11.png b/vlm/train/BkdpaH9ll/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2d4c21a1ff71349f0d4f5369f2b8836cd494397c --- /dev/null +++ b/vlm/train/BkdpaH9ll/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d2fc00e19b0897d25fc965557cfc34a50d3c95342787c69dd22e4290601a19 +size 494484 diff --git a/vlm/train/BkdpaH9ll/2.png b/vlm/train/BkdpaH9ll/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c750b5b233f072b3f4a733a5c233ed8c84ac4395 --- /dev/null +++ b/vlm/train/BkdpaH9ll/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b458985a7f570cc3f134cddc7b0741f7405f186346257dbf78df6c4c5695368 +size 508908 diff --git a/vlm/train/BkdpaH9ll/3.png b/vlm/train/BkdpaH9ll/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7ddbfecf782e44ae9b64490b8b16bf079973d5a0 --- /dev/null +++ b/vlm/train/BkdpaH9ll/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ea3f69625127f1eb4b46fc342f7f325d12244fef6ab3cbb7779418e4dfc9a1 +size 443281 diff --git a/vlm/train/BkdpaH9ll/4.png b/vlm/train/BkdpaH9ll/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3ecb8da16808caf35b83d7a5b22b97e250dfbe74 --- /dev/null +++ b/vlm/train/BkdpaH9ll/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527accb3d936d7f9f10ab2f1cd3fb23d33399515ca079fad6694ee7db522cd49 +size 500221 diff --git a/vlm/train/BkdpaH9ll/5.png b/vlm/train/BkdpaH9ll/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6e19f43f0f5f6279a845f789bcb0089773cdfce7 --- /dev/null +++ b/vlm/train/BkdpaH9ll/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f80851aa43829a835246267928d41d2965628f11d8c9b57ccef62112bafa4a0 +size 507796 diff --git a/vlm/train/BkdpaH9ll/6.png b/vlm/train/BkdpaH9ll/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9822f87dcbea4f583a93d26edf655895862cbfb9 --- /dev/null +++ b/vlm/train/BkdpaH9ll/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b5ae82783478d0ff3326fd8ce42b44626fabe3dc3f9131300f6e63772855c2 +size 558105 diff --git a/vlm/train/BkdpaH9ll/7.png b/vlm/train/BkdpaH9ll/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4170ba339b211e68cf6727c6025a7690c08d1fb5 --- /dev/null +++ b/vlm/train/BkdpaH9ll/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16160aeda52750f1f4c793df5955f00b41f58e8b657c707ec9bf5a23441f9d5a +size 637407 diff --git a/vlm/train/BkdpaH9ll/8.png b/vlm/train/BkdpaH9ll/8.png new file mode 100644 index 0000000000000000000000000000000000000000..568ba2604b3e412ed266a1e4ecbffae090115f23 --- /dev/null +++ b/vlm/train/BkdpaH9ll/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f111cff83ba810fab1747f667a9220b044c1a7840dc68c8d99be6fda7abcd0ba +size 630576 diff --git a/vlm/train/BkdpaH9ll/9.png b/vlm/train/BkdpaH9ll/9.png new file mode 100644 index 0000000000000000000000000000000000000000..818b49249938811c4fe4485f38648afb6d8aa3ba --- /dev/null +++ b/vlm/train/BkdpaH9ll/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80376a085c5afa740e832e0889144cca5ba67252a27a9cabaa1f0ffd125052f0 +size 765501 diff --git a/vlm/train/BkewX2C9tX/0.png b/vlm/train/BkewX2C9tX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d3f95b2cf20447ce6fa00991247fca822abf0ca0 --- /dev/null +++ b/vlm/train/BkewX2C9tX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227b534a3cabb1d5450d01300708f60d1696f4dc1d9e17eed59b694e3d958004 +size 496730 diff --git a/vlm/train/BkewX2C9tX/1.png b/vlm/train/BkewX2C9tX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dc77e9760aba523fad7c826cc9b7eb0f5cca643c --- /dev/null +++ b/vlm/train/BkewX2C9tX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e7d7c17ca6ef2c35d131012fb3c4a42f987e644e4e1537471186a0ccb35ca1 +size 590496 diff --git a/vlm/train/BkewX2C9tX/10.png b/vlm/train/BkewX2C9tX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..408dd476e61c13178efea42a50c28f5081573e76 --- /dev/null +++ b/vlm/train/BkewX2C9tX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e0179c133139a4594802c6910bfc3fa485187da606129771d7399c5da60bd8e +size 529526 diff --git a/vlm/train/BkewX2C9tX/11.png b/vlm/train/BkewX2C9tX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f223d3ca9360fc9c6b31080c4c72d3764cb651b4 --- /dev/null +++ b/vlm/train/BkewX2C9tX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26881e34696ce176b9b79e541ca082895736f9e04629d8a4269347b1cd618cc6 +size 488159 diff --git a/vlm/train/BkewX2C9tX/12.png b/vlm/train/BkewX2C9tX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3524bb07ae17e3bbaf3a6dc7ef438138553330f1 --- /dev/null +++ b/vlm/train/BkewX2C9tX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0da87433f6aadd9698676087fbe4d9aa969c0abe2e28777d08ebff7d222bf86 +size 461027 diff --git a/vlm/train/BkewX2C9tX/13.png b/vlm/train/BkewX2C9tX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..338c30d3fd549546b0b0ca415f18311a452c94a8 --- /dev/null +++ b/vlm/train/BkewX2C9tX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fccbb75d1a113189a5a8b03d53ab77054d9bdf4d37d688eb031267b69bfc8d6 +size 131381 diff --git a/vlm/train/BkewX2C9tX/2.png b/vlm/train/BkewX2C9tX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..97a4bb9af135c08b1d134508c5c8da3b39cc2575 --- /dev/null +++ b/vlm/train/BkewX2C9tX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0ad510e49a201fc51823a8a17b88d17f0c8fb1dbf5b5c83e8db6cf8cdc275b +size 553208 diff --git a/vlm/train/BkewX2C9tX/3.png b/vlm/train/BkewX2C9tX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..41c7b0edca68700a9128af2d4442d543e91a70c6 --- /dev/null +++ b/vlm/train/BkewX2C9tX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac41e6c93eb3ec6aa49ccf867cd7ced33e023473365bf15701d88b8f7e8badc +size 429107 diff --git a/vlm/train/BkewX2C9tX/4.png b/vlm/train/BkewX2C9tX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0e6e7af69fad5c0f41b0628b6c40977438b4d244 --- /dev/null +++ b/vlm/train/BkewX2C9tX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2cccc13019af16be2330e41ada0950eb1780da40fcf5ebcad039c53e1ff3fd +size 576111 diff --git a/vlm/train/BkewX2C9tX/5.png b/vlm/train/BkewX2C9tX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..df89ea6049c98dfb94526690e3ca7a38c4952420 --- /dev/null +++ b/vlm/train/BkewX2C9tX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1160f1e0d7381ad34d3fd6a0eb23ed5fac560440d729ad6a6a256f99f0d65fba +size 604471 diff --git a/vlm/train/BkewX2C9tX/6.png b/vlm/train/BkewX2C9tX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6be6831953d59dc3482f0bd15f8e4175189f4055 --- /dev/null +++ b/vlm/train/BkewX2C9tX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059ddf74cce01a43ea06b1376c775c825ce4bc736d2d90749d6926fcf98c2ed6 +size 435129 diff --git a/vlm/train/BkewX2C9tX/7.png b/vlm/train/BkewX2C9tX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ff55cb63be08b107b0ed865307a402ea129581b3 --- /dev/null +++ b/vlm/train/BkewX2C9tX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34800336df3718e453c4e0e5c3a64ddca8d02aee550dfbf7abf4a0d69ab22d5a +size 509787 diff --git a/vlm/train/BkewX2C9tX/8.png b/vlm/train/BkewX2C9tX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1ef0a63cf041193545a8fd920747ad90deab378a --- /dev/null +++ b/vlm/train/BkewX2C9tX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827613f9962cc3f87cf146fa80b894c856870132d7cf30319e3ca92c74521b29 +size 460490 diff --git a/vlm/train/BkewX2C9tX/9.png b/vlm/train/BkewX2C9tX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..543d612292eda728787934850192c0295c9587f9 --- /dev/null +++ b/vlm/train/BkewX2C9tX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e437ab905b1cbc7ab7b8bc21c127ecd8e99b369d8bf92aa559e0eb021d2b75 +size 559424 diff --git a/vlm/train/Bkg0u3Etwr/0.png b/vlm/train/Bkg0u3Etwr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cb4ccff07c2ed54c98d9a749d31b8ab07729d373 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5419408413426e95342ebb44674ccd8d26e27d43d28689e5588ce4fe0e543ac +size 464685 diff --git a/vlm/train/Bkg0u3Etwr/1.png b/vlm/train/Bkg0u3Etwr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..24b72d3f5067cec5ea7d3411c8b86bc54b4048cb --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd154d57ecfe26d49c20979c1798e449142b7a1c690b2c953090054a61666acb +size 551716 diff --git a/vlm/train/Bkg0u3Etwr/10.png b/vlm/train/Bkg0u3Etwr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fdc574ce0abc2e7e8a7866e4ef4892c457f57d32 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acc30f40f4d7756c4dbb944fc3236586b28f284448d07a86debf45462d518be3 +size 365520 diff --git a/vlm/train/Bkg0u3Etwr/11.png b/vlm/train/Bkg0u3Etwr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9c97ad868b865f978bdc1188dfb9d351aeaae5c5 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3fc5bd84ee899ebd74f4e759d25365010be12a2cadc106e7ed8f24df6008f1 +size 312589 diff --git a/vlm/train/Bkg0u3Etwr/12.png b/vlm/train/Bkg0u3Etwr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..196c6504161bddc016667392ae4ef4017149aaf1 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b06a483e8ffbe5cf02f556574d1486569cd5402017e2f5e39116890ba0dc152 +size 381163 diff --git a/vlm/train/Bkg0u3Etwr/13.png b/vlm/train/Bkg0u3Etwr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..eacc20dffa92444e6e6e7492fe69a7d07bb827c1 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db50a252e540b70fa596e44d198a313416a71d69cc24271804e86db57abb9d0a +size 427011 diff --git a/vlm/train/Bkg0u3Etwr/14.png b/vlm/train/Bkg0u3Etwr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f7010bf49e877f5f597a25dcd84af84a83b71dbd --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13bb0cabfa5e9c6e6d36caa34cacc2f4268c5c020b1459ff376101902d6f7f9 +size 414977 diff --git a/vlm/train/Bkg0u3Etwr/15.png b/vlm/train/Bkg0u3Etwr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c869aa6fbc01d3edcd025820a7a37bdefb93b674 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb899dd2dd0671a3ffa1e3553c6e22f7cc7a0f774162fece677df90bde155cf +size 459299 diff --git a/vlm/train/Bkg0u3Etwr/16.png b/vlm/train/Bkg0u3Etwr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..61fe998d1a756d46b710e6ca7abbacfa1ec5a43b --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a3ad2e896fc24e6179ebde79da5e37e12c9b94ee2d741e354f8aa69850fb39 +size 384957 diff --git a/vlm/train/Bkg0u3Etwr/17.png b/vlm/train/Bkg0u3Etwr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbac44885ecb5c1a1e474cc233bb59be1f56083 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e807762187d5913d3f675beacbdbcfef9f59bde7fa7993e0f21361ffc10ec17 +size 389116 diff --git a/vlm/train/Bkg0u3Etwr/18.png b/vlm/train/Bkg0u3Etwr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ab19d720baf71df4aa77a0ae5d443e14fbca45a6 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4410f5fa20e227f84b8e7223bcb1e532bb1cddcb6acd1012851b5149bb27d50 +size 284811 diff --git a/vlm/train/Bkg0u3Etwr/19.png b/vlm/train/Bkg0u3Etwr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c1538b9ba73d1cb3c36f41d12d5de9eaeccfc981 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e01ff0c5b55ffba596a4f8a71d607c534dca9d3288ccd1c8461c15822658f8f +size 282922 diff --git a/vlm/train/Bkg0u3Etwr/2.png b/vlm/train/Bkg0u3Etwr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d846da17a3f3d28447da6bfd6f2fdf815de5e89d --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bfb560380a09e3088ba63e68d076daf129e5c8588aecff0efc98fe96f5a884 +size 532562 diff --git a/vlm/train/Bkg0u3Etwr/3.png b/vlm/train/Bkg0u3Etwr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9224265de5d2d752d45790d219b5c6217be25de9 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bd8de0db4be5e4e74b42a906878bfa22728622f50398b1d6bb9e2847aaa211 +size 493553 diff --git a/vlm/train/Bkg0u3Etwr/4.png b/vlm/train/Bkg0u3Etwr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3a877a08c744dce202075d40983cdec470ce3f09 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb89a9811968f7fcd48e999b0b05ea090ba1fee650c3d1e4897c39480b39fdd +size 432412 diff --git a/vlm/train/Bkg0u3Etwr/5.png b/vlm/train/Bkg0u3Etwr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ba82cd5c9b2fdd46b411c14832b07277a0951207 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c7f40770d7aba4b3bfce378af5ed7a55d8b0260f75fd77a15d53919e90bb1c +size 503266 diff --git a/vlm/train/Bkg0u3Etwr/6.png b/vlm/train/Bkg0u3Etwr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..01fd7516f4c6164729ffca56bbb608675282a470 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0178b3cce1d2666530cf6b72d2d8085c43e534c89221a5f1a3442498191613a +size 565989 diff --git a/vlm/train/Bkg0u3Etwr/7.png b/vlm/train/Bkg0u3Etwr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e247bf7dcd5ad97f6b330d63792dbd7b517e997c --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7ebc9fe21a2041d0ca5c8c6dd41b43bfbf227a9f9573d8da04a85a23772915 +size 395772 diff --git a/vlm/train/Bkg0u3Etwr/8.png b/vlm/train/Bkg0u3Etwr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..55e157ead807948b6e0e73b0161d20e9994159c2 --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e416bf62e6660843e78f82968bc32d5cb8b5875877f535b6e77eefc90997164b +size 530966 diff --git a/vlm/train/Bkg0u3Etwr/9.png b/vlm/train/Bkg0u3Etwr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..6f1207365ad5f8e7cec3b466ebc46bfbe341342a --- /dev/null +++ b/vlm/train/Bkg0u3Etwr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50e8f1ed5d1e6c5d87bfa364146c6849ac16ee018f1fac3dfc2541dbd370670 +size 544981 diff --git a/vlm/train/BkgMbCVFvr/0.png b/vlm/train/BkgMbCVFvr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9690c603deb4775ce978a9e589a5786e3edcd5e6 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963918af0c2ded99bf9098f629ebe73e6244d7a09598a1654c3ec3208922eba9 +size 505004 diff --git a/vlm/train/BkgMbCVFvr/1.png b/vlm/train/BkgMbCVFvr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..80bb8a99faa517edde587e2c139f3f090765e05f --- /dev/null +++ b/vlm/train/BkgMbCVFvr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ecea57e19246ecd615d19d030a55693d387ea24dbb2031dc172577696cc1e80 +size 1368361 diff --git a/vlm/train/BkgMbCVFvr/10.png b/vlm/train/BkgMbCVFvr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5f91e3370997f207df7d83ee15a26b68b86e5b68 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d9db9b7b9724d2627e2e8a8dbb3e32d13d3115824be3195c8871c8c54b2699 +size 547984 diff --git a/vlm/train/BkgMbCVFvr/11.png b/vlm/train/BkgMbCVFvr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..45ce2d44b1f7268a84be9f05bfefb8f1f420344c --- /dev/null +++ b/vlm/train/BkgMbCVFvr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139cd02c1cb0596a8188f090f18f473907560d48646eb7b700e5c2dbd31eca2a +size 1775524 diff --git a/vlm/train/BkgMbCVFvr/12.png b/vlm/train/BkgMbCVFvr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e3d9a4123afc86a3a7f6554ba4890c0a306c415a --- /dev/null +++ b/vlm/train/BkgMbCVFvr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fdc6b38839e81db932361798de6bdc76186f32650f953a58eb9e8fbdb24a512 +size 414795 diff --git a/vlm/train/BkgMbCVFvr/13.png b/vlm/train/BkgMbCVFvr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..256f41a779067325a19ab3ebbe48d8b136dc08e2 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ade1edc478d43a1dfdb49a86752c319d95ab67b3bfa269c61ca61a90bab5d10 +size 400849 diff --git a/vlm/train/BkgMbCVFvr/2.png b/vlm/train/BkgMbCVFvr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cd9445f41b816c20a1f08323ac6c1f6b3c0c8c26 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2667179941f7e70bf03934a68cd4492832bfade51e920319d4fcc3f7d297f1a7 +size 1288928 diff --git a/vlm/train/BkgMbCVFvr/3.png b/vlm/train/BkgMbCVFvr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8823c1f6a9205e9a03c3534778777f180e9c99bf --- /dev/null +++ b/vlm/train/BkgMbCVFvr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ee4b9c92d34e0d8e8b00b3ea1fb55a96ce27b669245a87da326f7723492301 +size 564340 diff --git a/vlm/train/BkgMbCVFvr/4.png b/vlm/train/BkgMbCVFvr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a26a6a0b4fe39b62a45fbd1090b650f51d5fc46f --- /dev/null +++ b/vlm/train/BkgMbCVFvr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706baa76953219bb794b94d9a96823af95514d69f61bbe2fae568f7929073acd +size 511658 diff --git a/vlm/train/BkgMbCVFvr/5.png b/vlm/train/BkgMbCVFvr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..96863112dff90c61314d0d5477c624e45b8dc838 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6521e7ff9fe6a28ee18b299a84c61508c930a151f42d5d1cb8b8c94a7c0b1b02 +size 546555 diff --git a/vlm/train/BkgMbCVFvr/6.png b/vlm/train/BkgMbCVFvr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..aaaa8bb158661d21b5ce5384fb16a9ce0417264c --- /dev/null +++ b/vlm/train/BkgMbCVFvr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68053b77cc3bb6231d5002426c51e4cbdb756df07552f535620bf2c89f94903b +size 701751 diff --git a/vlm/train/BkgMbCVFvr/7.png b/vlm/train/BkgMbCVFvr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..baa26536c14fbfd76974905ae818442484537d43 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b797e5743a858dbfb70e57f2078db91695b262a5dcba086e7254f2e61b7870f +size 549470 diff --git a/vlm/train/BkgMbCVFvr/8.png b/vlm/train/BkgMbCVFvr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4b15870a91262ad9789286ad1bc9d161f3392f49 --- /dev/null +++ b/vlm/train/BkgMbCVFvr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66b50a1a6ccce904099a67c48e5645fb2cb2bacd08c3d5d64f6d87adfd11abc +size 554764 diff --git a/vlm/train/BkgMbCVFvr/9.png b/vlm/train/BkgMbCVFvr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..17de5c1116e1100c0f6a169979d4b596a1a6b90e --- /dev/null +++ b/vlm/train/BkgMbCVFvr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64540034d409af2d9b5560990ef81b1364ef3f84346a746ac0c3d692e617e60a +size 531612 diff --git a/vlm/train/BkluqlSFDS/0.png b/vlm/train/BkluqlSFDS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c47da2ce3f39d2091e57c7e0b11e9d3c2f2aa4b9 --- /dev/null +++ b/vlm/train/BkluqlSFDS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304a8d6e7f23bedae70816d499770c147fbab31a2df301524bb38bc3574b8a2d +size 443001 diff --git a/vlm/train/BkluqlSFDS/1.png b/vlm/train/BkluqlSFDS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..edfb7b4a2753bedb9bba287eb6dd8f9e4dc1c798 --- /dev/null +++ b/vlm/train/BkluqlSFDS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcae25d6c1e20a3ba7e6ac261718f7a0bd8e2194fcc7a84809da6b8034312f7 +size 488076 diff --git a/vlm/train/BkluqlSFDS/10.png b/vlm/train/BkluqlSFDS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..56d5989630b49b3d9720225f32153f7dc55d9bc1 --- /dev/null +++ b/vlm/train/BkluqlSFDS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03ea095e601804bf18f70d0c88866a450d5f30b98943d7076c1d3ae5d07cc34 +size 562291 diff --git a/vlm/train/BkluqlSFDS/11.png b/vlm/train/BkluqlSFDS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..34fe616c721107d8171d51d005d994419072546a --- /dev/null +++ b/vlm/train/BkluqlSFDS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa44be74b2817b7f912ab435ff1bcdf945b4a0b1ce9fee1f5a14bc82292bbe2e +size 62277 diff --git a/vlm/train/BkluqlSFDS/12.png b/vlm/train/BkluqlSFDS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b99078b9bad264865a815a5e5baa98d5528d44c3 --- /dev/null +++ b/vlm/train/BkluqlSFDS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de20d039e1b3ffdc09213a7adb5f56c1eda0cfba9d74e9d560611a80474b6d7 +size 378901 diff --git a/vlm/train/BkluqlSFDS/13.png b/vlm/train/BkluqlSFDS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4b05602be37507e26b858be92f983cb80dd63b60 --- /dev/null +++ b/vlm/train/BkluqlSFDS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4943b848175ba8ca3171e863ec82ec7a48fc006db8957be37e43bd83d110621 +size 283877 diff --git a/vlm/train/BkluqlSFDS/14.png b/vlm/train/BkluqlSFDS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d28b52ccaca45c27b6ac2488e947c3e59c132168 --- /dev/null +++ b/vlm/train/BkluqlSFDS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547ba18eefd02666e71bd6bd8aecf55aa4a8013d30f28913a3af4a63f5cce27c +size 396441 diff --git a/vlm/train/BkluqlSFDS/15.png b/vlm/train/BkluqlSFDS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..370bca13f08d0ed06f2cc631ba5282d10b727c39 --- /dev/null +++ b/vlm/train/BkluqlSFDS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594787c704ac0e318389d08c7bd905e90cbb4a00f0c3cc6cdee5aff1194bc604 +size 420220 diff --git a/vlm/train/BkluqlSFDS/2.png b/vlm/train/BkluqlSFDS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..571517da760ceb739873633e8b5f87b1d610da1b --- /dev/null +++ b/vlm/train/BkluqlSFDS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fd8b14c75675639e7889f90819025e8f54970158faa87316f43382991ebcdc +size 571377 diff --git a/vlm/train/BkluqlSFDS/3.png b/vlm/train/BkluqlSFDS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..24fa8dba22dad50248ef6ab092e2c929f8bc87f5 --- /dev/null +++ b/vlm/train/BkluqlSFDS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b285cd614a3459926228604121f5caf6aa5b16ed03f984fe499ae676b2f93736 +size 597684 diff --git a/vlm/train/BkluqlSFDS/4.png b/vlm/train/BkluqlSFDS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a9de8434e9929bc3aa24819456d2e4084fd282e9 --- /dev/null +++ b/vlm/train/BkluqlSFDS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2022e514f37b782d653c92f9040ccae2e5cf4648bbf0a9a2dc773cd10a57452b +size 585980 diff --git a/vlm/train/BkluqlSFDS/5.png b/vlm/train/BkluqlSFDS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5e19cd44caaee375be6a9a7a2b77920a76dfb53e --- /dev/null +++ b/vlm/train/BkluqlSFDS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e415bdb449a7cb079673bf936f9716e5a39481bdaf486b84b31fd5ddebcfe25b +size 487259 diff --git a/vlm/train/BkluqlSFDS/6.png b/vlm/train/BkluqlSFDS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e2343e5a95966147e52276b8df1936174a169188 --- /dev/null +++ b/vlm/train/BkluqlSFDS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8bd6503453abb55a455c8f904303724ac90ab3a1020476c65c068d4ef5462a9 +size 566566 diff --git a/vlm/train/BkluqlSFDS/7.png b/vlm/train/BkluqlSFDS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..516c53fbc1ef3431b76edc1d7d758a061cf8a850 --- /dev/null +++ b/vlm/train/BkluqlSFDS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56d5b23e8c550fcba2778ae7b14c688992141caef2ab1e905e627ef229212c4 +size 487029 diff --git a/vlm/train/BkluqlSFDS/8.png b/vlm/train/BkluqlSFDS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..249be519fe2dbc5a36342a0a7972c867b051d602 --- /dev/null +++ b/vlm/train/BkluqlSFDS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15778fec6a0322bd57647d7b82bcb38f73d446407006bf599a97c66212f1dd1 +size 576281 diff --git a/vlm/train/BkluqlSFDS/9.png b/vlm/train/BkluqlSFDS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b0fba06ac92df32cf30d218f2289a9a2f0163963 --- /dev/null +++ b/vlm/train/BkluqlSFDS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a32e2acb1ebdad4418473993ce7d5dc932ed562442953bd7aa073a2dc7e302 +size 524041 diff --git a/vlm/train/CUeX_YeX9n_/0.png b/vlm/train/CUeX_YeX9n_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8ce4c8eef2976803f13b3389679686ef890390c7 --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2785aa526d87ce6397d3715eb0871749d22fcd35dd0a481ba8fbfb7aec9e210d +size 437827 diff --git a/vlm/train/CUeX_YeX9n_/1.png b/vlm/train/CUeX_YeX9n_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9115f8e10a93d18b7b15bfbc255a84ccc2c8620f --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0f3770cf9b5396192c6d8275db016f3c68fe5aea360a3ec84d5f459f085b9b +size 557703 diff --git a/vlm/train/CUeX_YeX9n_/10.png b/vlm/train/CUeX_YeX9n_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fda47aad438df621d1290721723df822752dee0a --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230b48131a1c5403c07975fb74b3e149b8931b414ab4f0ec9e0aa1c6a1aad7fd +size 476159 diff --git a/vlm/train/CUeX_YeX9n_/2.png b/vlm/train/CUeX_YeX9n_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..85316765b5dcdcd18b12ee296f4a3b75cba0ea13 --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edffdf4db38f53fb91243922b4da97bf6df70ffecf491a98473f7536cfa4e47 +size 574074 diff --git a/vlm/train/CUeX_YeX9n_/3.png b/vlm/train/CUeX_YeX9n_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..04e6579ed34bd0f2eb90f038205d2df48c1aa47f --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e57873f4229a346e6ca62fb7e76be9b5a57ad3eac4bde91e25326ebb162b506 +size 480309 diff --git a/vlm/train/CUeX_YeX9n_/4.png b/vlm/train/CUeX_YeX9n_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cefbbdf914d7eebc92212d6f91887e9dc8fda435 --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2827a2606c14da5b7322b05f3a7b2fe0e208be66d8d613bf318389b9ba45699b +size 458362 diff --git a/vlm/train/CUeX_YeX9n_/5.png b/vlm/train/CUeX_YeX9n_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1fbe43868076f88ad8b2a3469acff30ef45ff61b --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4591765156e6f32267cce8b2070b0a8a5e7ffdb65b527c9537bbb38576688fb +size 487921 diff --git a/vlm/train/CUeX_YeX9n_/6.png b/vlm/train/CUeX_YeX9n_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e14ba833a91c80a4f3697aa8850cfda2a33e353c --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43dddb9ec78c057cc35c0d2538d2342bc643fe8d8af9b98d564265d5f41d2b8 +size 662053 diff --git a/vlm/train/CUeX_YeX9n_/7.png b/vlm/train/CUeX_YeX9n_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a1d215d215bc2e00916818167f8ad50e6b0a2825 --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765ccb35d188838b4ea72310e1aaef6ae1c564afc5cde75b64af88ae9f155cf2 +size 567489 diff --git a/vlm/train/CUeX_YeX9n_/8.png b/vlm/train/CUeX_YeX9n_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..81e5114dd9149b1a3aa7829da4c62ca6b1d327f5 --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5932519e533df9bbe98af475fe37095a481dde439ce76d749f71193f88b08c +size 615038 diff --git a/vlm/train/CUeX_YeX9n_/9.png b/vlm/train/CUeX_YeX9n_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0b6c4a5a203270b5306016ada6ba8b8a496fbeed --- /dev/null +++ b/vlm/train/CUeX_YeX9n_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f7c61bce55bcc51dba41b902633e976acfd111f6c9ff50320e21a48b0dff48 +size 573526 diff --git a/vlm/train/H1mCp-ZRZ/0.png b/vlm/train/H1mCp-ZRZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4a21d85e629a1731bb071516654b391cd720924c --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beca358ff1e2d5b66c34b519113f3051855a416414a9efc2ef59d7238de4dc99 +size 479757 diff --git a/vlm/train/H1mCp-ZRZ/1.png b/vlm/train/H1mCp-ZRZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ab197ddff0e47bc00f2138268d3d0dd46588b580 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ae5cbdb161c2b62c056aa35b593ae7a0d744b0b210870476b55d25dd3a9250 +size 535444 diff --git a/vlm/train/H1mCp-ZRZ/10.png b/vlm/train/H1mCp-ZRZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1256b531462a6d1f2017a8cbfe562f26582af906 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd78a53ef82a8c7e7a37127d90e22577e379ca6ef88ad39bcf9a432fc579caf +size 523119 diff --git a/vlm/train/H1mCp-ZRZ/11.png b/vlm/train/H1mCp-ZRZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6894966ec9db2b112e256ed3658af40e5d895d3c --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4927c5a140ee5767a408a9e3cb0b7590fb6b33023fe126d19c363cc24a3d0b +size 555018 diff --git a/vlm/train/H1mCp-ZRZ/12.png b/vlm/train/H1mCp-ZRZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..633477d79f276d7fbb95dd0fa87ee2c1fd08b9fc --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c1ed8c62cad3fcd170f08bbb52e801d708a2aa9d4e78b59b447cb96a1f95a3 +size 539579 diff --git a/vlm/train/H1mCp-ZRZ/13.png b/vlm/train/H1mCp-ZRZ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bd4b946aef4bd09b869774df02f9147aa1e9ec74 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e536c91155311a2ef50bb9f7aa1d4b75fe2785e6b0c12055b0c0cff475581e54 +size 391286 diff --git a/vlm/train/H1mCp-ZRZ/14.png b/vlm/train/H1mCp-ZRZ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bff182d6014bf2444e41fb6aae712e9b00873e3c --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef3b6dee80226821fe71e7499e1064830c546ce9f9659d118ef0bfb9ab5f2ed +size 433700 diff --git a/vlm/train/H1mCp-ZRZ/15.png b/vlm/train/H1mCp-ZRZ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..31520720818e74194b97cb85e0dcca3cec9c1dc3 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2268a9c6b9084dabc7e72644ad6d4b7bb13ad7c3387d95083e65a887238b233b +size 171457 diff --git a/vlm/train/H1mCp-ZRZ/2.png b/vlm/train/H1mCp-ZRZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..987834f724aa4a65e2252e6d2e6057d5cdd0d120 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa97a200d8571e71fdf18f2fe652fdc39a7c58e78ed170f89071ac341c9d328b +size 491982 diff --git a/vlm/train/H1mCp-ZRZ/3.png b/vlm/train/H1mCp-ZRZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6f52cd91ad426e5e1b987f8a4afc77e7f64fabd3 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23870fd1a0c9a21d567d54be1f949e4a158f67f1eb2ec585bd6990991f0f8cc +size 530209 diff --git a/vlm/train/H1mCp-ZRZ/4.png b/vlm/train/H1mCp-ZRZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3e1d8b8516bfc7f27fcc40e7bf77c70eecd6f8 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bce7574379422883df0cb9531b163d094f13dad576d472e8ad102a0fb4d33d +size 491292 diff --git a/vlm/train/H1mCp-ZRZ/5.png b/vlm/train/H1mCp-ZRZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..77458ce8e5a9d36bf8ded84ceb5289b2e968b16d --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2e5ab1c127da82c39733bcb37557e4debf444ecf90473cef32db93555c005a +size 489529 diff --git a/vlm/train/H1mCp-ZRZ/6.png b/vlm/train/H1mCp-ZRZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa70105b7c33d915b700e9615050af295ca8be9 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f14632121799f8cae77697856c529f0e892fdd2550732cbdee69059f1a1ba1 +size 459014 diff --git a/vlm/train/H1mCp-ZRZ/7.png b/vlm/train/H1mCp-ZRZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..21d6927a1a61057084a58fffad19f85610e78381 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841b2a4424b4b7d3c93f5801b816f1b0236748135b25761a6869bf69610a60fe +size 493260 diff --git a/vlm/train/H1mCp-ZRZ/8.png b/vlm/train/H1mCp-ZRZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7f974934919c7d839e23cae145ce03126c546e01 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e330b1423c556386715d41cc08fab64c1d0a97d721a48c4d547000281371a13 +size 488944 diff --git a/vlm/train/H1mCp-ZRZ/9.png b/vlm/train/H1mCp-ZRZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c704ec52a6fafa23ddbdef7208b5e0c199d935e7 --- /dev/null +++ b/vlm/train/H1mCp-ZRZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498792e98f6d1484e30d95a527d3cdc3dc8c74a7038c92579e621e9f7f85ff62 +size 530777 diff --git a/vlm/train/H1xEwsR9FX/0.png b/vlm/train/H1xEwsR9FX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f7d06b4afe4b6644c2f5fb935ce6e2be4b8e45ac --- /dev/null +++ b/vlm/train/H1xEwsR9FX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a97e05fef0f168f33a009163e524b734089cc60878ae2519e6483089c63b12 +size 517595 diff --git a/vlm/train/H1xEwsR9FX/1.png b/vlm/train/H1xEwsR9FX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ef3fc6f0878b3497b1df8fcd4dfd4f3920736d --- /dev/null +++ b/vlm/train/H1xEwsR9FX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e02f120df01ff9c010ef4453d854d6300dcfe13731657f300f98e1af279609 +size 567685 diff --git a/vlm/train/H1xEwsR9FX/10.png b/vlm/train/H1xEwsR9FX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..833dec4c2b312c3a3c9914450f19b653844151b5 --- /dev/null +++ b/vlm/train/H1xEwsR9FX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c1bd057e0c77bb6d1c5ed339a5c6f379d559175420b7dd875f930e111ba9e9 +size 438744 diff --git a/vlm/train/H1xEwsR9FX/2.png b/vlm/train/H1xEwsR9FX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..eb546f8c97f0c900dfa8ee81859129f46c0c56b0 --- /dev/null +++ b/vlm/train/H1xEwsR9FX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2056348d03ef5d9dfe76a6d0593980e8b575c24affcf39d15ce8b8f5541760de +size 458233 diff --git a/vlm/train/H1xEwsR9FX/3.png b/vlm/train/H1xEwsR9FX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..934dbd948215db423cb15a4a1dc820331898749b --- /dev/null +++ b/vlm/train/H1xEwsR9FX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f470fa438e93b0c6767899d58582ccfa6a0a6e530326bf4bf3efcea1ff934d7 +size 471996 diff --git a/vlm/train/H1xEwsR9FX/4.png b/vlm/train/H1xEwsR9FX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b0790d5215df9eed698b71568c48bfb3c5dd19af --- /dev/null +++ b/vlm/train/H1xEwsR9FX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cabda5e8075fe04c1ec306707de127c0fb034079cd9f813d609dd98c39dd4 +size 544615 diff --git a/vlm/train/H1xEwsR9FX/5.png b/vlm/train/H1xEwsR9FX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..09a1a7d1a9ffaa037285a4bf2e12144b1f080739 --- /dev/null +++ b/vlm/train/H1xEwsR9FX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75af9b9aa65d313c1940dc4e4b35305a153439c49c3914e9f93566b01b3b44ff +size 814064 diff --git a/vlm/train/H1xEwsR9FX/6.png b/vlm/train/H1xEwsR9FX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..89cc3ad9de2bcc78516203e39a036545de9e5816 --- /dev/null +++ b/vlm/train/H1xEwsR9FX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b7918ad3b109ed04f76592c5c35ac7d0c8d8dd7c29ce6235ca6b048c72cc1d +size 515523 diff --git a/vlm/train/H1xEwsR9FX/7.png b/vlm/train/H1xEwsR9FX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..869ac0122d71034e368f6362152994632175055b --- /dev/null +++ b/vlm/train/H1xEwsR9FX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147ab0bb6c0586abf36cb04cf978c0667cd343d8dc157f5adb07a2ef8a6e8bb1 +size 473316 diff --git a/vlm/train/H1xEwsR9FX/8.png b/vlm/train/H1xEwsR9FX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3931e0f1390351f1185c5cfd83fdd7100323bd6b --- /dev/null +++ b/vlm/train/H1xEwsR9FX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59982d8fe183fbde2afcde814d881512c451b8a62f9eba8691159933ccce3dd +size 656966 diff --git a/vlm/train/H1xEwsR9FX/9.png b/vlm/train/H1xEwsR9FX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..59e29cae220e83d78b863c891c3126643c3a7736 --- /dev/null +++ b/vlm/train/H1xEwsR9FX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164eb31679861d3d069e8c397a72ae382a9f4f60e70c3fcefc104fae51ac707d +size 543385 diff --git a/vlm/train/H1xscnEKDr/0.png b/vlm/train/H1xscnEKDr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b7f8f5e879e257748cda32acc8ee083148ae299d --- /dev/null +++ b/vlm/train/H1xscnEKDr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0652aef9ea561fa24a1e26b2bf68068013516059bf1d74edc941f374a17c2be +size 539948 diff --git a/vlm/train/H1xscnEKDr/1.png b/vlm/train/H1xscnEKDr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5c5989a377d6b44a4f75d1120ffe273d0ebad095 --- /dev/null +++ b/vlm/train/H1xscnEKDr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcb4bed3430127f996ab2d008d36e5d55b41bcb59d783ca03705273847b77ba +size 601886 diff --git a/vlm/train/H1xscnEKDr/10.png b/vlm/train/H1xscnEKDr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b430408e491b42f9e4947a9f5ed1cec8d6ba729b --- /dev/null +++ b/vlm/train/H1xscnEKDr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366fea3b47286faae93dffa8d3d82d1e3b59130d0fc66bcef1ca51a7b116d32a +size 473645 diff --git a/vlm/train/H1xscnEKDr/11.png b/vlm/train/H1xscnEKDr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2ab2e45781efd397aad63ea3d5d7b575e44a3ab1 --- /dev/null +++ b/vlm/train/H1xscnEKDr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99dfcaf87545034b5d7b8c4bb64ff7b98cde4f777c411ce04fd80ebf6bffe9cd +size 377317 diff --git a/vlm/train/H1xscnEKDr/12.png b/vlm/train/H1xscnEKDr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c9b7f7190229791d1eb4fbd4ceb2a1f6c42edb77 --- /dev/null +++ b/vlm/train/H1xscnEKDr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceaf52f4e3f84ae79dd3cbaddcad51335f97d32aec1e6681d3cf2c78ad97787f +size 407204 diff --git a/vlm/train/H1xscnEKDr/13.png b/vlm/train/H1xscnEKDr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ebfa03f0964336b6d628ff7090491d2da6af5a --- /dev/null +++ b/vlm/train/H1xscnEKDr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbdfd8befe899cf5976503ad9519664c1b77ec41ce4344dcee4a7fee8867fe4 +size 601722 diff --git a/vlm/train/H1xscnEKDr/14.png b/vlm/train/H1xscnEKDr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c227db1ab36f03000aa2919f3de1923e661d9a7a --- /dev/null +++ b/vlm/train/H1xscnEKDr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54dbff0cb1601e7e2888ccc69361781a198695410b7f17773c88efb064d0755f +size 412720 diff --git a/vlm/train/H1xscnEKDr/15.png b/vlm/train/H1xscnEKDr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b5836d3f409861556e8f2fc6cb5763682676ccd3 --- /dev/null +++ b/vlm/train/H1xscnEKDr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4104da2b82f816ddf6975a99e2feed7ddb1b460252d510dc5c9eff0fc57c68a2 +size 562684 diff --git a/vlm/train/H1xscnEKDr/16.png b/vlm/train/H1xscnEKDr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2fe8faf0f9ec05910833c4065d899f481628a2 --- /dev/null +++ b/vlm/train/H1xscnEKDr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69002da9ca229164aa1e9bf4acd9c459f2bd5b1ea1460eabdfc97a6f2406869e +size 431819 diff --git a/vlm/train/H1xscnEKDr/17.png b/vlm/train/H1xscnEKDr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..150f708f1c7e97d0ccf2c95d11b13f8a353d6fe0 --- /dev/null +++ b/vlm/train/H1xscnEKDr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ca7c1d201010a7c6ee562d673914362066a760721171c0ddaef6d2f277f362 +size 370040 diff --git a/vlm/train/H1xscnEKDr/18.png b/vlm/train/H1xscnEKDr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..f4c1c5eb5168dae188c3dc5ea0b20c507a38a3db --- /dev/null +++ b/vlm/train/H1xscnEKDr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f274846f2f871405e2afc153ab1434d4048368860d81880b584164838e080a6 +size 360855 diff --git a/vlm/train/H1xscnEKDr/19.png b/vlm/train/H1xscnEKDr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..338f31e4a5033f5d1a853d9f48f2ef0d75f2df9c --- /dev/null +++ b/vlm/train/H1xscnEKDr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a2f8da43b16c09de2a56319e5c4b6e24a5405570083dec20c319e44a460420 +size 323135 diff --git a/vlm/train/H1xscnEKDr/2.png b/vlm/train/H1xscnEKDr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..be5d953ca0d37586fc723c522ee54bb8ffb9cb34 --- /dev/null +++ b/vlm/train/H1xscnEKDr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6029886b9d1849b881f11673c2962df4d8dc136d42c5eeb914b2e3a3cb975b4e +size 635616 diff --git a/vlm/train/H1xscnEKDr/20.png b/vlm/train/H1xscnEKDr/20.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff243ce44235fb4801f423e6b79273a0752335d --- /dev/null +++ b/vlm/train/H1xscnEKDr/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2654a1e612f9f756d8f631c827b20e3c485b32da5e0751ce2d4a0c20ea8305d +size 327080 diff --git a/vlm/train/H1xscnEKDr/21.png b/vlm/train/H1xscnEKDr/21.png new file mode 100644 index 0000000000000000000000000000000000000000..633cf3db27cc549a9a0ae0143103cab05c57f483 --- /dev/null +++ b/vlm/train/H1xscnEKDr/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8fa64a6be7fd28b40a360b01de86477700615b8f947acc7240eea94a2fa4c2c +size 638630 diff --git a/vlm/train/H1xscnEKDr/22.png b/vlm/train/H1xscnEKDr/22.png new file mode 100644 index 0000000000000000000000000000000000000000..4740a83272a2e62c0f5dcab36413ce76ae263337 --- /dev/null +++ b/vlm/train/H1xscnEKDr/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2051381c35cd67c8ab7ae94b424aa4cd4f6fbfe650b2579fb5ddb84d992e30 +size 279401 diff --git a/vlm/train/H1xscnEKDr/23.png b/vlm/train/H1xscnEKDr/23.png new file mode 100644 index 0000000000000000000000000000000000000000..b67473627c5c17f927cb4f191ae9e2ff84eca8e6 --- /dev/null +++ b/vlm/train/H1xscnEKDr/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f45bc4ea77216194ef9aec469c4c77976c20620d5e5fd894293ac1057f5ff0 +size 197062 diff --git a/vlm/train/H1xscnEKDr/24.png b/vlm/train/H1xscnEKDr/24.png new file mode 100644 index 0000000000000000000000000000000000000000..59e20ac2a5a3aa67e5f5290fc53bc0179b5fae8b --- /dev/null +++ b/vlm/train/H1xscnEKDr/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e8292a50def0df631d913ae04290ee1e2f4b0eacf867aa04f3260ae7d36365 +size 311867 diff --git a/vlm/train/H1xscnEKDr/25.png b/vlm/train/H1xscnEKDr/25.png new file mode 100644 index 0000000000000000000000000000000000000000..ce1568a92bd191718b6dadab98d59a3b2cd84244 --- /dev/null +++ b/vlm/train/H1xscnEKDr/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d40fcadef5af87093b2d696159b81422d3f7814380d62b6dd26b305c6970c48 +size 233775 diff --git a/vlm/train/H1xscnEKDr/3.png b/vlm/train/H1xscnEKDr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0ec94f65ecd564fe2086acf37163fab47b5c68f0 --- /dev/null +++ b/vlm/train/H1xscnEKDr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc7ba2e44cc1f02ef014eec1972a3b46824fcd122e7a1f94aaf943f82db7514 +size 563577 diff --git a/vlm/train/H1xscnEKDr/4.png b/vlm/train/H1xscnEKDr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..50f24699d4241454b3833872a143afaa5ac5e875 --- /dev/null +++ b/vlm/train/H1xscnEKDr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e24b21295cfb967d1248a7ef7e44dc86483a98636941b46293c5420fcfa9b7 +size 592413 diff --git a/vlm/train/H1xscnEKDr/5.png b/vlm/train/H1xscnEKDr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..26bd57de7883f67702779d49be84116924f9f942 --- /dev/null +++ b/vlm/train/H1xscnEKDr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b607db87d83c2373ba72ef1e74246fb408a7cd8697a053df07ed49e7639360 +size 560611 diff --git a/vlm/train/H1xscnEKDr/6.png b/vlm/train/H1xscnEKDr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d3f696a8c7dbd0db2edc61e1bafd15abddd4ad7d --- /dev/null +++ b/vlm/train/H1xscnEKDr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60585ed7a24bb7f2239bb4ccd66f01fcf25fd4920335970ce08ad3b72668b4cd +size 541474 diff --git a/vlm/train/H1xscnEKDr/7.png b/vlm/train/H1xscnEKDr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..264639ee7788f6c9227d4f04fba1ba9127d275a0 --- /dev/null +++ b/vlm/train/H1xscnEKDr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908add7b3db64ac5df4f320b3ca04bd7993c1d853ef85b011c9b08c73a85bba5 +size 534348 diff --git a/vlm/train/H1xscnEKDr/8.png b/vlm/train/H1xscnEKDr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..331a7dd5ab2ff71cf463397576c14733464b5e81 --- /dev/null +++ b/vlm/train/H1xscnEKDr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7973d836d7d41c9c862b109f4b1072c62ddc3494c55a402e8b45e6942f3ef228 +size 496209 diff --git a/vlm/train/H1xscnEKDr/9.png b/vlm/train/H1xscnEKDr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..225792a48487684035b9023c52cfd489cc566082 --- /dev/null +++ b/vlm/train/H1xscnEKDr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ddb2db9cdb65363fa29a8d403fadac466312b76053e975cd86823168836f071 +size 565107 diff --git a/vlm/train/HJGven05Y7/0.png b/vlm/train/HJGven05Y7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba1a82b02e3dbd4ac0054710140a2641ac0e605 --- /dev/null +++ b/vlm/train/HJGven05Y7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9401f5ce8cfe838425829cbe49d8d8feecf525f7ce9566ebbebf2366850223 +size 505680 diff --git a/vlm/train/HJGven05Y7/1.png b/vlm/train/HJGven05Y7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0bd2b4304ce29eac6700b4c56b9fe6ead61e9e0a --- /dev/null +++ b/vlm/train/HJGven05Y7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f422e83d015e244eb2f24940d89057c220667ab437a80e9f6d649db9f3dd603 +size 544791 diff --git a/vlm/train/HJGven05Y7/10.png b/vlm/train/HJGven05Y7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..96d77b617f7195c42ef5ec6f53526a6ba5a6acbb --- /dev/null +++ b/vlm/train/HJGven05Y7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c981837470d28f9e0e4cbe9fb257b074bdd44e374e3c348980dcb06025c30ea3 +size 197755 diff --git a/vlm/train/HJGven05Y7/2.png b/vlm/train/HJGven05Y7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..560d80143d9c429a90500350602bf990085be03f --- /dev/null +++ b/vlm/train/HJGven05Y7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2fef6a5fe39d912670b6b5826f29dfb8ebddab19fcf2eb4bcfa8d0c1f5656de +size 554885 diff --git a/vlm/train/HJGven05Y7/3.png b/vlm/train/HJGven05Y7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dee6c789d8156404ae79df0e4b44c6299e11afe5 --- /dev/null +++ b/vlm/train/HJGven05Y7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4551b78e59e91d8732f68f54eb7e71cff83e38c5265fc646fb4e55548df96e86 +size 571994 diff --git a/vlm/train/HJGven05Y7/4.png b/vlm/train/HJGven05Y7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..aaef3c775bca64d17ddd513fbd8bbdb8985bcfb9 --- /dev/null +++ b/vlm/train/HJGven05Y7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb30a50604e6d3b69f38e458ecbb25fb0ae3123995430045accaa9d723f15b4 +size 561395 diff --git a/vlm/train/HJGven05Y7/5.png b/vlm/train/HJGven05Y7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f9f87d7284d2d2e6f6b683fbc8008bea2ea2fc79 --- /dev/null +++ b/vlm/train/HJGven05Y7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2704af16454e921b0c921f303367c0b5e2e51789a390af3b9323b8e8d9c42a7 +size 571270 diff --git a/vlm/train/HJGven05Y7/6.png b/vlm/train/HJGven05Y7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..25d3a1944229167ba8b9ed099dc8d2397be835ff --- /dev/null +++ b/vlm/train/HJGven05Y7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e2e4554fc3a98389f70e6a3c86bbeccb31d7dd9144c188af63553eda88c589 +size 570936 diff --git a/vlm/train/HJGven05Y7/7.png b/vlm/train/HJGven05Y7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..68fd9e6d8eef48a3b1d07fae5687ee54fe7e9987 --- /dev/null +++ b/vlm/train/HJGven05Y7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c3588997170d4909dd62af94826cf501aafb84017f3d108260347eb3c68b44 +size 437972 diff --git a/vlm/train/HJGven05Y7/8.png b/vlm/train/HJGven05Y7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..02d0af63107f4240796d80b9305de8b3ee9b7138 --- /dev/null +++ b/vlm/train/HJGven05Y7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3318beede2fc9a16ce5307c87c2386d7b35c4972ac555b19154d09426524db +size 512406 diff --git a/vlm/train/HJGven05Y7/9.png b/vlm/train/HJGven05Y7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..de531fbbd0bc847f3603903d3ec246f63d041688 --- /dev/null +++ b/vlm/train/HJGven05Y7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5150dee5f16703b56b2d7bdfdd223d0bf36664dd4457d5536b503a48e3ff081 +size 364427 diff --git a/vlm/train/HkedQp4tPr/0.png b/vlm/train/HkedQp4tPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..57f07596dcab2bee89d0841cfbb2ab3e19b9ac71 --- /dev/null +++ b/vlm/train/HkedQp4tPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb23ba7232207d359a59a38ed0157b60b3d64db57489099dcfaaa4d907687a90 +size 530213 diff --git a/vlm/train/HkedQp4tPr/1.png b/vlm/train/HkedQp4tPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..194a4cc06628bca5de523643a68947fa63fc63eb --- /dev/null +++ b/vlm/train/HkedQp4tPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fe769cac5f96e77bf878c2602c8148127ddc592efc00560ea555e2dd359ab0 +size 460939 diff --git a/vlm/train/HkedQp4tPr/2.png b/vlm/train/HkedQp4tPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..79475e6eccba99ab1b8b70fdfd8cd4068b0f4ae3 --- /dev/null +++ b/vlm/train/HkedQp4tPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235e430f69ccc97e9ec27875812390c70484e09c7310735e41b77b5ae22064bc +size 392299 diff --git a/vlm/train/HkedQp4tPr/3.png b/vlm/train/HkedQp4tPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6d57cf4c27ad94f8c577199926cd4d79d9e27e2d --- /dev/null +++ b/vlm/train/HkedQp4tPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fb0b1c4c505fd42d03f7561672dfcf2c4cfc09172c12f4d45d593e9a5804ca +size 490976 diff --git a/vlm/train/HkedQp4tPr/4.png b/vlm/train/HkedQp4tPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..156f4e91cd29019d972cb77d9d05fda73f80f870 --- /dev/null +++ b/vlm/train/HkedQp4tPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb9a190f0ea37390775c0a5e73d5a7f3f8831d66fd9b7500707eab3aee134cb +size 466931 diff --git a/vlm/train/HkedQp4tPr/5.png b/vlm/train/HkedQp4tPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..81675578b726498de9f870c679c98cad7ab4f71b --- /dev/null +++ b/vlm/train/HkedQp4tPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5618f602f67653ac4b6da79cde7d2b738f83b5148f2f203d67a6f126dbdde31 +size 564680 diff --git a/vlm/train/HkedQp4tPr/6.png b/vlm/train/HkedQp4tPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4fcc742b6362cdd065bb134caf40f4a0352fd919 --- /dev/null +++ b/vlm/train/HkedQp4tPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6d1b8539ba8c3c4ef814f1999e975feee0a6b414149bdc0fcf9057427aaed2 +size 415281 diff --git a/vlm/train/HkedQp4tPr/7.png b/vlm/train/HkedQp4tPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..763b832b2ec6a2a0674807faaa3165b4f03173f5 --- /dev/null +++ b/vlm/train/HkedQp4tPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1275d0f977b646453f588b5c10aa13523792710b9dcb36f566a806d20f876b6 +size 510382 diff --git a/vlm/train/HkedQp4tPr/8.png b/vlm/train/HkedQp4tPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a66d9ea187a2ca109166b5cd1b393905e7485f51 --- /dev/null +++ b/vlm/train/HkedQp4tPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67820933a0fa14a5c5b5fc2c9f83c5ab4a683b12d893b18b124c25599497716f +size 500175 diff --git a/vlm/train/HkedQp4tPr/9.png b/vlm/train/HkedQp4tPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..03efa0bb93f3e5b66e019f1edc3d3acf9fbd8668 --- /dev/null +++ b/vlm/train/HkedQp4tPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ef551d514cf58b375208bee9129e93057d3cdae7c40ef19b0cffd190f271b8 +size 489037 diff --git a/vlm/train/Hkem-lrtvH/0.png b/vlm/train/Hkem-lrtvH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..813f48d60a44362a3dbad99f0125363af2d35f66 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4795d6e1e16714dcbe6fb5109948e7c582f0d4ceb2829c60a44d4763f82f5b +size 526581 diff --git a/vlm/train/Hkem-lrtvH/1.png b/vlm/train/Hkem-lrtvH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..90dd73a1c6a76f2ee63f130c8802fba8784fe8a0 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73058a9fc5277cb513b4287f9e2097fd0ca4dccbddcdddc73c177192fb35e73a +size 608071 diff --git a/vlm/train/Hkem-lrtvH/10.png b/vlm/train/Hkem-lrtvH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bf83757d2b02b6d27636f7a85aae012ffcf3cd78 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d479373e09296bac4daeb3d458de11c3939ba139d3911144b2691e72450fc4 +size 527424 diff --git a/vlm/train/Hkem-lrtvH/11.png b/vlm/train/Hkem-lrtvH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f722c9d00c10e208d51487f8783760407a080857 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d786658129cd7bf8b923e01498738b926e9a2c35cc784f802de074c98555ba2 +size 394381 diff --git a/vlm/train/Hkem-lrtvH/12.png b/vlm/train/Hkem-lrtvH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..30389d62167352973e441b4e4fc736e52e05efec --- /dev/null +++ b/vlm/train/Hkem-lrtvH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189a62bed449d18bc4aa10082f6a8787a9bf58c37ea606fae03db7fc09486fb4 +size 645587 diff --git a/vlm/train/Hkem-lrtvH/13.png b/vlm/train/Hkem-lrtvH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4fa876f920f01f1ab8c592eda03b079757dd5815 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd4ada3db052d94f710c357799c038b44b2a07b6651a6dd443c1e34e85b42d9 +size 541862 diff --git a/vlm/train/Hkem-lrtvH/14.png b/vlm/train/Hkem-lrtvH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3a00a16a342fa30316c901f81c5f1d04ebcaa349 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc16786fcb341dd308b42fd07df87f23f068d1f700b92200b2ac4380fa0be0dc +size 556911 diff --git a/vlm/train/Hkem-lrtvH/15.png b/vlm/train/Hkem-lrtvH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3a0aba98ad4c1d281b3b0e288c15b7caee07d9 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e1cfce5e96d488cd15c251a07380927d65b530b51e0d7e82690d23ef414fe0 +size 92286 diff --git a/vlm/train/Hkem-lrtvH/2.png b/vlm/train/Hkem-lrtvH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f15ee9a78d8bc9cd41b63599a2a4c159050a8f8 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bc7a68b80403862ab267784f444b19548d39ec7e5024380c683bde1bc36835 +size 584406 diff --git a/vlm/train/Hkem-lrtvH/3.png b/vlm/train/Hkem-lrtvH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3cd7746fb9df56a5812c9a474ca312d321bbfcbc --- /dev/null +++ b/vlm/train/Hkem-lrtvH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d2c29cf525fbae4ed7ef5eca06cb9ec80df18c2873001a42ca7c61af777c50 +size 442337 diff --git a/vlm/train/Hkem-lrtvH/4.png b/vlm/train/Hkem-lrtvH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..da7f94f33937b431f8de11ccffb99ce54f30c26d --- /dev/null +++ b/vlm/train/Hkem-lrtvH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01ac6cb9fc487d265b62649b8cbc872983a409bca39a203bbe8de0e8dd3fe2b +size 499861 diff --git a/vlm/train/Hkem-lrtvH/5.png b/vlm/train/Hkem-lrtvH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..26dae362a05d31df091402251dc2c1938969d84b --- /dev/null +++ b/vlm/train/Hkem-lrtvH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5403347f0becfe9f3800f5f85b4ef57d0da922cf41d41b5d9ab3af480e9ccb4 +size 543032 diff --git a/vlm/train/Hkem-lrtvH/6.png b/vlm/train/Hkem-lrtvH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..acfcbc9ce61ab0a6c1dd0295a4c727ce9fe1073b --- /dev/null +++ b/vlm/train/Hkem-lrtvH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2b84df3033e5239760a61c85801dcff0df4f6f0eeeeeda6276c38e2b3642ce +size 516152 diff --git a/vlm/train/Hkem-lrtvH/7.png b/vlm/train/Hkem-lrtvH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c472c8c7c66fc17c5e5e4117abb5b19bb80e8bfb --- /dev/null +++ b/vlm/train/Hkem-lrtvH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0acb0ad4c32e626090608365effa6fab49fdc0b682c882ab9b40ca4e0ed119a4 +size 590385 diff --git a/vlm/train/Hkem-lrtvH/8.png b/vlm/train/Hkem-lrtvH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9c98b41a58871c976ab7bfe54b2ee5c9b98801ef --- /dev/null +++ b/vlm/train/Hkem-lrtvH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1315f4b1cacb4c920ec9809042bc83a22e9aac00815d069d48c966e493c7eb1 +size 618782 diff --git a/vlm/train/Hkem-lrtvH/9.png b/vlm/train/Hkem-lrtvH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..23eee388b4069d856c661b9caae872359b9f8932 --- /dev/null +++ b/vlm/train/Hkem-lrtvH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef27e4a8b4d9d4a04e452be40af424cb07cde24229cd92c931061d8503dfb536 +size 484839 diff --git a/vlm/train/HklJdaNYPH/0.png b/vlm/train/HklJdaNYPH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5576fa0beb2396a1df5cccaddd976af9caa60238 --- /dev/null +++ b/vlm/train/HklJdaNYPH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e5496522c272216f78b3696495356c8af5aa07266d3294ac3dfc0b8272c83f7 +size 475543 diff --git a/vlm/train/HklJdaNYPH/1.png b/vlm/train/HklJdaNYPH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c5533e238317245533c438b90364a7662c7cbe70 --- /dev/null +++ b/vlm/train/HklJdaNYPH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80935fc626291f51dd8e67035e688e507a23b247a50f22c6950b0b7704f8db92 +size 484641 diff --git a/vlm/train/HklJdaNYPH/10.png b/vlm/train/HklJdaNYPH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c373385da0b71eeb0b086d140a8be58bf3aff118 --- /dev/null +++ b/vlm/train/HklJdaNYPH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89330b94e647251cef9cf2c8108a809da8c43f09437fd20a07954e863f9da90 +size 228167 diff --git a/vlm/train/HklJdaNYPH/11.png b/vlm/train/HklJdaNYPH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6e8de9c1ed50e071975255fe8b08b7576ba122e7 --- /dev/null +++ b/vlm/train/HklJdaNYPH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb4c297eb1de460e4a6c1b4aa78a00d5b41459e7f0a05f6c3d6522dfd6267a0 +size 622327 diff --git a/vlm/train/HklJdaNYPH/12.png b/vlm/train/HklJdaNYPH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5ac3fce9210a4023090f05d28b84437942a40436 --- /dev/null +++ b/vlm/train/HklJdaNYPH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f1fb1ebe060ff35293e0e637dd2e6b161bd2a7d8c234d51706987f7fda7d59 +size 267073 diff --git a/vlm/train/HklJdaNYPH/2.png b/vlm/train/HklJdaNYPH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..dd3279d3671f81db37cec504b6071efc0ced7d33 --- /dev/null +++ b/vlm/train/HklJdaNYPH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048252b1835e0d62a601291badf9ad89fb0129bc4718f8300d1310b6a7ab9bb1 +size 532564 diff --git a/vlm/train/HklJdaNYPH/3.png b/vlm/train/HklJdaNYPH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ae1186b11786d43fe136375baa885ddb253be131 --- /dev/null +++ b/vlm/train/HklJdaNYPH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5949649cdb73c506557f2e210e262662e875e25be8cbe581205370539a7722a +size 428986 diff --git a/vlm/train/HklJdaNYPH/4.png b/vlm/train/HklJdaNYPH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fc5e2266365c3c71bbccd1ff431c9fd0f20e8779 --- /dev/null +++ b/vlm/train/HklJdaNYPH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad5b1ed0b169765385b0e35d7ba1dbd5c6f1f061bfad02c1a56af78ddbd801a +size 567506 diff --git a/vlm/train/HklJdaNYPH/5.png b/vlm/train/HklJdaNYPH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..52b3d3ebda983c652344dd809dff1a287eb60e82 --- /dev/null +++ b/vlm/train/HklJdaNYPH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b110c21f253d195121d375cd888aa57508c3e6c31dc95e83ce27224ed8c2f30 +size 572022 diff --git a/vlm/train/HklJdaNYPH/6.png b/vlm/train/HklJdaNYPH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7e8a8047520bbce024bd15928f71182c1c1530ce --- /dev/null +++ b/vlm/train/HklJdaNYPH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ef84baf9622e5690a1f5bdbd41709f9440eec2d104c19c155ac37a60ffaf0c5 +size 437913 diff --git a/vlm/train/HklJdaNYPH/7.png b/vlm/train/HklJdaNYPH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c48c1ebab54c4483a352209762cf254bdb0ffd52 --- /dev/null +++ b/vlm/train/HklJdaNYPH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6fbdc2106f8b70f2dcb11efd06ddcaa2295f776cca938ff8b594484b70badd +size 435436 diff --git a/vlm/train/HklJdaNYPH/8.png b/vlm/train/HklJdaNYPH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7660ef374d6323a9b3a5c3c44195d2a9825c58fc --- /dev/null +++ b/vlm/train/HklJdaNYPH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80849e66cd6e2427ca2ab9675a63b3e40242cfa3958bf5dfbd4efa11ef1d10cf +size 475484 diff --git a/vlm/train/HklJdaNYPH/9.png b/vlm/train/HklJdaNYPH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bd0034299647e94db92fa8980ea0ee1f468fb7ee --- /dev/null +++ b/vlm/train/HklJdaNYPH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b6fec348a6b188a332c039733b76ab588677df4968f2aedf2a35a5265ce123 +size 460265 diff --git a/vlm/train/HkxCzeHFDB/0.png b/vlm/train/HkxCzeHFDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..45b5b3657573c3b6d442b026600f6fe279345d90 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9803c1d3d00da4c3b27b831e7081ba2b85a39748ef2e06b8654621a91704e2 +size 488707 diff --git a/vlm/train/HkxCzeHFDB/1.png b/vlm/train/HkxCzeHFDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8936e9cbcfc4be2e39f60439879e433f8c7da6c7 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ccfe74765c6c0fa5cfdbd7c940e34ac36029ba06664f5f9c44c8ec54804a71 +size 565132 diff --git a/vlm/train/HkxCzeHFDB/10.png b/vlm/train/HkxCzeHFDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1ce7317843bdbe7b07e5edef744ed671943b0548 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91986886c98518d017d339cccd62e72a9ff989087077c3dc21c360792414f6d +size 569460 diff --git a/vlm/train/HkxCzeHFDB/11.png b/vlm/train/HkxCzeHFDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..229b66f04f42e032080aa29c6dfa893aa58566bd --- /dev/null +++ b/vlm/train/HkxCzeHFDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966ec199921466bdf472512ced35cdca9648f7b618a0e6781043c1d29725e79d +size 565330 diff --git a/vlm/train/HkxCzeHFDB/12.png b/vlm/train/HkxCzeHFDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e54506ac98324798874588cb1831b026f31a57f8 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840449438cc2971afc332a3999c56fbaf310d7b1240a1c987a83a2fb4925d603 +size 551135 diff --git a/vlm/train/HkxCzeHFDB/13.png b/vlm/train/HkxCzeHFDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4d8d6872a580b42aec2bb758268b3ddb71ad5abd --- /dev/null +++ b/vlm/train/HkxCzeHFDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad2edfff5ee5c425c5294a5b71d656df69dd4521dc7b73fa4c862c560b56e5e +size 459975 diff --git a/vlm/train/HkxCzeHFDB/14.png b/vlm/train/HkxCzeHFDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..63d9ebcfbb4f7d767dbafa9b2d7e9e6254698c5f --- /dev/null +++ b/vlm/train/HkxCzeHFDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16eab34e2b24a777a2cc1bdb3ee726295675f4f04f1b5265ba2179a025f8532d +size 433087 diff --git a/vlm/train/HkxCzeHFDB/15.png b/vlm/train/HkxCzeHFDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..895032e5dba310c07251d4a74e2dac5dc5a8a4dd --- /dev/null +++ b/vlm/train/HkxCzeHFDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eebce9fbb881f9e015a58fe0fd8b7376e74886d553ce76c45c943701596b8b8 +size 316220 diff --git a/vlm/train/HkxCzeHFDB/16.png b/vlm/train/HkxCzeHFDB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9401f6613ce7ab073def669440dc4b0a52e56a50 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065574a0454fb04135d0caa83d1be1a9c0df86bcf91a4600ce11828c30318b19 +size 293202 diff --git a/vlm/train/HkxCzeHFDB/2.png b/vlm/train/HkxCzeHFDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..04d861fe3004ed19ac915b1de861ed8aa4778dd3 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f6c08268f1dda93ba1bd1393900cdac710f96d6065dbf57cfd697f3a811a5b +size 593741 diff --git a/vlm/train/HkxCzeHFDB/3.png b/vlm/train/HkxCzeHFDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2db304f796fbbc8d42ff981a514fb81f1b74c646 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726246ea509f7677e2d03e1a9e2fe5daa327dd8743fc4cdb26fca1d5d36c5a9e +size 544023 diff --git a/vlm/train/HkxCzeHFDB/4.png b/vlm/train/HkxCzeHFDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fac67de614158fd07aa4b9b3da4ae689d690a9d3 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6348d11ac8043977508602a2c38bfca4fa4db6b11d4b5643261ca4004fb706 +size 556339 diff --git a/vlm/train/HkxCzeHFDB/5.png b/vlm/train/HkxCzeHFDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..67dcef0e1a7f616e822d9cf5090d3306506e5e18 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4e29057c7b382d422270d8836eacea0b3176e50cb2fc4faf1dba1ec2f6da5f +size 521191 diff --git a/vlm/train/HkxCzeHFDB/6.png b/vlm/train/HkxCzeHFDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8f0c01e7307d286aa0cd94d3019a006e4c131d52 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5314dd2085956268f3369d049c05dbb700f5d9878f15fd39d3cd4880712604c1 +size 557344 diff --git a/vlm/train/HkxCzeHFDB/7.png b/vlm/train/HkxCzeHFDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7a70aae1b16df6668269d730908e84f64522fe5a --- /dev/null +++ b/vlm/train/HkxCzeHFDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d294ac35061e2616f4a0b1d3d64ecfcc7338a3a3a42e742294a96623c668d59a +size 539878 diff --git a/vlm/train/HkxCzeHFDB/8.png b/vlm/train/HkxCzeHFDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ee389a3508af00fac6aea916b008a0eb44b899d3 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb32ff90c5b3783c4a4c2cf8504aca67fffa3eba3f62c1b5be5a1a0954ecde26 +size 523557 diff --git a/vlm/train/HkxCzeHFDB/9.png b/vlm/train/HkxCzeHFDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..58fb8986645b252eeb8e87166d05ff6d14549071 --- /dev/null +++ b/vlm/train/HkxCzeHFDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b872ad5db353c36a37c7166734b807882e653a9460575c8c87476fd0b520d5 +size 540041 diff --git a/vlm/train/HkxYzANYDB/0.png b/vlm/train/HkxYzANYDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..714d6df761dada3bcbbf4628905fd94e20032129 --- /dev/null +++ b/vlm/train/HkxYzANYDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349cc9bec1279489a476824f5ad2e39f03a06dea28530451b1a6c04a98f2d7d4 +size 514261 diff --git a/vlm/train/HkxYzANYDB/1.png b/vlm/train/HkxYzANYDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..582f5b325806ccd436bf734cba5569553f0ccc5b --- /dev/null +++ b/vlm/train/HkxYzANYDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ee8a557e266fbb08dc7fa4d4c5364322200a940c4f2958cfb9ad87ebdda816 +size 780623 diff --git a/vlm/train/HkxYzANYDB/10.png b/vlm/train/HkxYzANYDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3ce93641d11e497aab9b73d0a074035b0dbf4e8e --- /dev/null +++ b/vlm/train/HkxYzANYDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ade07eda595d3e3e104b9a3944d5427f7c2a3727dae5770272f220d89673684 +size 495865 diff --git a/vlm/train/HkxYzANYDB/11.png b/vlm/train/HkxYzANYDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f98efe57142b852ad97a9c846673449f989816d4 --- /dev/null +++ b/vlm/train/HkxYzANYDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac693af5fb61c4dee64285ae53abcad540f80ae9ea3ce76ed0c6a639c24bfd12 +size 497515 diff --git a/vlm/train/HkxYzANYDB/12.png b/vlm/train/HkxYzANYDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..18a0d16d0664e5d9fd941809eacceef286787ad1 --- /dev/null +++ b/vlm/train/HkxYzANYDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8fb05c934196e92c9601300b641a8a3c45e400562511e42aeaf93902db4ad7 +size 212522 diff --git a/vlm/train/HkxYzANYDB/13.png b/vlm/train/HkxYzANYDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a6b2f6b16d64e9d8fdd638bef62187ccc33051b5 --- /dev/null +++ b/vlm/train/HkxYzANYDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a56dc1e9efacbc01db9106528766ee716156029f8ccf6c0f04e531b5025a25 +size 464618 diff --git a/vlm/train/HkxYzANYDB/14.png b/vlm/train/HkxYzANYDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0e234e9cfcc2525cfd13259fbed6eb76076e3fd0 --- /dev/null +++ b/vlm/train/HkxYzANYDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e586ede4645f8569a2ac97cda64f4495a0f02a03e0cef90c734fb186355e423a +size 648958 diff --git a/vlm/train/HkxYzANYDB/15.png b/vlm/train/HkxYzANYDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2853d52b052457b19197627198c02659b931ca --- /dev/null +++ b/vlm/train/HkxYzANYDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe97f59aef8077add8aa5d504d5f4d64fec5376d808a6ad7305e5df1ba5a190 +size 783967 diff --git a/vlm/train/HkxYzANYDB/16.png b/vlm/train/HkxYzANYDB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..93630f36f35f32422af42364fee975958caf7b75 --- /dev/null +++ b/vlm/train/HkxYzANYDB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a78c5515eba00da457299051734296e4724a6698fd7fe9c64a8199543f2dcf +size 335789 diff --git a/vlm/train/HkxYzANYDB/17.png b/vlm/train/HkxYzANYDB/17.png new file mode 100644 index 0000000000000000000000000000000000000000..315844344b65f1e6206814482fb8510a73ae4471 --- /dev/null +++ b/vlm/train/HkxYzANYDB/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc58aacb29ef0366bf8c7f15c2d91aec9c896e6d46c974c3f4c36d8b010048e1 +size 332790 diff --git a/vlm/train/HkxYzANYDB/18.png b/vlm/train/HkxYzANYDB/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2208d65e3e65be85b3e04511a7c7c6547dd5fa01 --- /dev/null +++ b/vlm/train/HkxYzANYDB/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a556ecd1b2a9bb01cb065181f27d1a669733c756c2949a05711d34a0686a6f +size 243448 diff --git a/vlm/train/HkxYzANYDB/2.png b/vlm/train/HkxYzANYDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..941d0b05ae423573400a8c2cbf2afa7d146a2045 --- /dev/null +++ b/vlm/train/HkxYzANYDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a2f047c4466043e89f55f9f05cdc256125590b553c58f4bf012f4e7049fdbc +size 604412 diff --git a/vlm/train/HkxYzANYDB/3.png b/vlm/train/HkxYzANYDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ea5b257203b08ef205eaed8b5d007ec43c77660c --- /dev/null +++ b/vlm/train/HkxYzANYDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2fe6b17cdbf3e323de482806f4870e980a74d3b38d45447700ccf4123c8556 +size 653018 diff --git a/vlm/train/HkxYzANYDB/4.png b/vlm/train/HkxYzANYDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cc1a1b333c5ba3c5d616ccb80bb94d7527096452 --- /dev/null +++ b/vlm/train/HkxYzANYDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cf33858b777e8d82570c37fee1b4cf500784379275da488cf1bf055f65ecb3 +size 622931 diff --git a/vlm/train/HkxYzANYDB/5.png b/vlm/train/HkxYzANYDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a049504204d9a3d1da696db7368c50b1ec11b3 --- /dev/null +++ b/vlm/train/HkxYzANYDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71538d1ac5c6ea967b12687fee551c176a3867f1f85edc1dd40ac2f11c90e4fe +size 584301 diff --git a/vlm/train/HkxYzANYDB/6.png b/vlm/train/HkxYzANYDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1c7173ab8b50501bc03a3a50d5f473dbc894789f --- /dev/null +++ b/vlm/train/HkxYzANYDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e6d47fe327899004cb899b002569211a6c20a514bf1f91b33b1730ce2d941b6 +size 590343 diff --git a/vlm/train/HkxYzANYDB/7.png b/vlm/train/HkxYzANYDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..19d122bc7858d17b62039577551c0e651ffd2a26 --- /dev/null +++ b/vlm/train/HkxYzANYDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190d320124ac09367bb5c1aa6051d04f567b7bbf2303202257f413e35768bf8f +size 595685 diff --git a/vlm/train/HkxYzANYDB/8.png b/vlm/train/HkxYzANYDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dc232e7a1738de8ed0a9658028c981d13189ed6e --- /dev/null +++ b/vlm/train/HkxYzANYDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5423f972eefb63e937ff76e2a53ccfe1de5d2f2a6fa1adf6a88f091ffeff860e +size 606005 diff --git a/vlm/train/HkxYzANYDB/9.png b/vlm/train/HkxYzANYDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..51a37d11b4e88af2fe2a95bf7599a9e82c352ea6 --- /dev/null +++ b/vlm/train/HkxYzANYDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5650bb80c5ae2f37c4125c4d447d6aca9032eec1614a03e62ef6431076acc2b5 +size 524722 diff --git a/vlm/train/Hkxvl0EtDH/0.png b/vlm/train/Hkxvl0EtDH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7e25a23e799a45a00befea00dd9f25386624e64e --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b063dbc253e9fb05f0a86afb23d043a9ad5010d21bc21b58006fdb8e4bee25 +size 505019 diff --git a/vlm/train/Hkxvl0EtDH/1.png b/vlm/train/Hkxvl0EtDH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..53c9b8c32860a73c81c90337af5649d37510881b --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb86690de5f0165dd03a634255b2e93bf9df1930be7f31941a2a2b3f257137e +size 551206 diff --git a/vlm/train/Hkxvl0EtDH/10.png b/vlm/train/Hkxvl0EtDH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..32308711c21c69414aef079585d1800242cde44d --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3b3e96f83191e4e226c4c7666645e930d0ff6873701423614d6891edb404f4 +size 569866 diff --git a/vlm/train/Hkxvl0EtDH/11.png b/vlm/train/Hkxvl0EtDH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..69de5cc824994c81ab5db74a4110a22080ab12f1 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e267ac08fbdd70b411b800e8c7153289ae0533d92c6ce08734dfe18381093c9b +size 341705 diff --git a/vlm/train/Hkxvl0EtDH/12.png b/vlm/train/Hkxvl0EtDH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..27875e5225909c1c10763b43452ec0b84d0f6086 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305dde80d1a1dbf9c9490be9f01405b679236e9140bd1a216932ab5fccb76c7c +size 376666 diff --git a/vlm/train/Hkxvl0EtDH/13.png b/vlm/train/Hkxvl0EtDH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..1dffd90b42c543237a255cf8f9ee109df39c4bc7 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189cf843840fd6b6bc38dc9f74f44769775776615c21e6fd449a1f475d0463fe +size 496084 diff --git a/vlm/train/Hkxvl0EtDH/14.png b/vlm/train/Hkxvl0EtDH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e62b0d2a122e7b11b3030fbc302f34b2c2c9f2a1 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9586b1ad3966f3cc6722bed43fe1ad015efb8c320b07e90727435d8bb53f61a5 +size 468404 diff --git a/vlm/train/Hkxvl0EtDH/15.png b/vlm/train/Hkxvl0EtDH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..85ac6cedc11ee36bf702575e83e056766913f48e --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4986dc5b2ebe7645339877bd1ed310ec0cafef06b18bb88eeacaf72f4aa63da2 +size 587110 diff --git a/vlm/train/Hkxvl0EtDH/16.png b/vlm/train/Hkxvl0EtDH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7a1cb5f053343300abf8999084596f8e6f9c618e --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a57ab5f3b0567569e215022b4bfe108bf9b400e61cafeb4169cbe34af23a55 +size 319918 diff --git a/vlm/train/Hkxvl0EtDH/2.png b/vlm/train/Hkxvl0EtDH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4cb21ccb1d80984b33ec071366d60c514e426b0c --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1df3cf25fd868562c9d93b088a0b47627848dd9115b4fcd4d9f8d1167d6c0e +size 507169 diff --git a/vlm/train/Hkxvl0EtDH/3.png b/vlm/train/Hkxvl0EtDH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..07eeefc81e50603895d8f31402dd9cd5e90888c8 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91de1ed8842b675ccbede1d252edeae181b6913f7e9f0faeca3735dfb028de7 +size 529077 diff --git a/vlm/train/Hkxvl0EtDH/4.png b/vlm/train/Hkxvl0EtDH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e81a72e74ba0e0ea0c3aeb0cf234f8ee9aaf5fb1 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115d5cda983bc4c2f048880399ea6ef0b4fcc088f5e91dcd6a580eccae27c372 +size 478733 diff --git a/vlm/train/Hkxvl0EtDH/5.png b/vlm/train/Hkxvl0EtDH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b7a1eae15763ef4385a07049af6cabb3483d587a --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3596db18df5078b0f0695f0c41657ebdb967c3428904dba4f5c45fe02df79ce +size 675059 diff --git a/vlm/train/Hkxvl0EtDH/6.png b/vlm/train/Hkxvl0EtDH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..af371753ac98ddc2fba9a5b5dd313aa702925040 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7f8e0190885f9376e1449afe06146d585ca31dbf8a3ac42d3f00a85462f5e5 +size 600073 diff --git a/vlm/train/Hkxvl0EtDH/7.png b/vlm/train/Hkxvl0EtDH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9124b5d530eb136883d372cf2109814af575a48b --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efd4bb2ea62c4db029a965034d409245e6de39298625a9820c30fe1ac7d2f63 +size 626925 diff --git a/vlm/train/Hkxvl0EtDH/8.png b/vlm/train/Hkxvl0EtDH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ee3f3bea89da92455b7f73b555dd8c073589a8db --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a606eee1d0ccdcb144403382b497e3f94f3fae638f7df19cceb8bc99cdf6d1f +size 598565 diff --git a/vlm/train/Hkxvl0EtDH/9.png b/vlm/train/Hkxvl0EtDH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0e9bb5cf1e572e9c8f7f33a7fa3259b7665404 --- /dev/null +++ b/vlm/train/Hkxvl0EtDH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711aefb979c333ed8ba10f44da716165985173bdae537a195c78e04deecd9162 +size 518979 diff --git a/vlm/train/HyyP33gAZ/0.png b/vlm/train/HyyP33gAZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..57232208d2af6b916faf790b71900fa6927131cb --- /dev/null +++ b/vlm/train/HyyP33gAZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d372ca68efed3a966b7ba0f7eb9a3295c9b6a2188fa9eb1a28a5a251ac409c +size 494680 diff --git a/vlm/train/HyyP33gAZ/1.png b/vlm/train/HyyP33gAZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a2cdd0066040e0ef6f16687faa5285a0e5caff36 --- /dev/null +++ b/vlm/train/HyyP33gAZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bccf5a36756217b5f7f00987fe0418b801714aedd2797605d1e1ae0742f404 +size 564401 diff --git a/vlm/train/HyyP33gAZ/10.png b/vlm/train/HyyP33gAZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..24689f1eb3c488a140af5d19f20a1c88f7df4414 --- /dev/null +++ b/vlm/train/HyyP33gAZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb2df1842071fd160be31d6fcab37c7ee5b7a932aea827859dedc4d9bc67f5c +size 528846 diff --git a/vlm/train/HyyP33gAZ/11.png b/vlm/train/HyyP33gAZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dc8036fde918b8ffd487e8d931aad342c7f94704 --- /dev/null +++ b/vlm/train/HyyP33gAZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4a2981e6c4b714162c4cd2aa9f2b137a8c788d2e82bfc55675e0c63c6009aa +size 516041 diff --git a/vlm/train/HyyP33gAZ/12.png b/vlm/train/HyyP33gAZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..af6977a7cf9d7131ac137f715401d356ceb7dfea --- /dev/null +++ b/vlm/train/HyyP33gAZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb9e371f6ab86de6995f15fc839db41a8b44f9dcf0be6e48efc392ee9ca7d56 +size 514529 diff --git a/vlm/train/HyyP33gAZ/14.png b/vlm/train/HyyP33gAZ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a4d7188244c301a86c03dc939437f28ca95c10a5 --- /dev/null +++ b/vlm/train/HyyP33gAZ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381dcd10faae5b29f601e8fffe1e16807966c06d955381f197c5c4d774f729f6 +size 398382 diff --git a/vlm/train/HyyP33gAZ/15.png b/vlm/train/HyyP33gAZ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c815ec5a9c19201a426a1410aa49380539573677 --- /dev/null +++ b/vlm/train/HyyP33gAZ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8fdc087273ed100acb74a18eff34d269fc83baa3071f165a2994197da9e0a7 +size 330232 diff --git a/vlm/train/HyyP33gAZ/17.png b/vlm/train/HyyP33gAZ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1f763670e1da67814a6aa703abbdea51c8363caa --- /dev/null +++ b/vlm/train/HyyP33gAZ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e536bad3d06b07df38aa3e701c93e30be0d2b503078b597f3c816dd634341cc0 +size 233289 diff --git a/vlm/train/HyyP33gAZ/2.png b/vlm/train/HyyP33gAZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..077f0614fee882860aaae589d34a703eb7efcea3 --- /dev/null +++ b/vlm/train/HyyP33gAZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d02c6e32b5b4ef88043c6bfe113cc26735ec2d240db9dcc6dc6204dcf897b1c +size 443148 diff --git a/vlm/train/HyyP33gAZ/20.png b/vlm/train/HyyP33gAZ/20.png new file mode 100644 index 0000000000000000000000000000000000000000..61e16b4ee9ae2827bb27258a16597ac251967761 --- /dev/null +++ b/vlm/train/HyyP33gAZ/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48348f3307457f9161fb19fb4ea4b976c4cc95c0226069eba6087cf44cd32794 +size 1439152 diff --git a/vlm/train/HyyP33gAZ/21.png b/vlm/train/HyyP33gAZ/21.png new file mode 100644 index 0000000000000000000000000000000000000000..2cc66dcbddf647bab23cd6d4f42d4bab6db21ce6 --- /dev/null +++ b/vlm/train/HyyP33gAZ/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5369144d62d6d613e87f85502652e327868c4904e8ccdc9339a1f95bba11b42a +size 1439758 diff --git a/vlm/train/HyyP33gAZ/22.png b/vlm/train/HyyP33gAZ/22.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2ab19519cbd7af2330601174695be64f963f13 --- /dev/null +++ b/vlm/train/HyyP33gAZ/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de23193b201027e5c8202d0888e59e32702d3892507319b354445dedb165579 +size 1442981 diff --git a/vlm/train/HyyP33gAZ/23.png b/vlm/train/HyyP33gAZ/23.png new file mode 100644 index 0000000000000000000000000000000000000000..fa7546468c54b40361fa2e0b7a3006ef3dada2a5 --- /dev/null +++ b/vlm/train/HyyP33gAZ/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a898fcdc2a3910d0efa984cb78d4c350ec516446922c5f61067dd9125f5589 +size 1439089 diff --git a/vlm/train/HyyP33gAZ/3.png b/vlm/train/HyyP33gAZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9759e6ec3cc2d9726938c7f0df3dd351599566b0 --- /dev/null +++ b/vlm/train/HyyP33gAZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a83b1f1fbb2ee82cea293c8fe430c305af42707228e0c5c0bcc78c91a01c26 +size 467369 diff --git a/vlm/train/HyyP33gAZ/4.png b/vlm/train/HyyP33gAZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ecd41999e57bc08549f6e6cbe74d2b9da2ec1f57 --- /dev/null +++ b/vlm/train/HyyP33gAZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418e1551bc893ab36688cbcc1814681560661b473f2e3c3167031fd9f7d8b4d0 +size 438088 diff --git a/vlm/train/HyyP33gAZ/5.png b/vlm/train/HyyP33gAZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e67c7d523373a58bbc0b98a8923f1950e98178d5 --- /dev/null +++ b/vlm/train/HyyP33gAZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803443394fe490f610a08e46820029ae6acb47b97b304b05cde4289b1a91a8cb +size 548887 diff --git a/vlm/train/HyyP33gAZ/6.png b/vlm/train/HyyP33gAZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..75a8ae2e3dfec3250ae44f0d2ca72f609d5a8642 --- /dev/null +++ b/vlm/train/HyyP33gAZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be5792f4ecf282aebff23a09bb31ec9c16ca6fc401a98ce34df09de02ccaf16 +size 529431 diff --git a/vlm/train/HyyP33gAZ/7.png b/vlm/train/HyyP33gAZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9e80bfa8fa32f5a4ee2908a71185b9a4f739b887 --- /dev/null +++ b/vlm/train/HyyP33gAZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0eef9fa1fdd0271d809af0869e2b693d51f98fd825ff6de5041876839199ef +size 544135 diff --git a/vlm/train/HyyP33gAZ/8.png b/vlm/train/HyyP33gAZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..fb3f3746c7958de879ba1ff8aa7779bb26151295 --- /dev/null +++ b/vlm/train/HyyP33gAZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c961ec78284de196708a8669fe4750c8c24af4aa39ac4a1ff0ed14cdc5459cc +size 477538 diff --git a/vlm/train/HyyP33gAZ/9.png b/vlm/train/HyyP33gAZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..469e0014ce5643ba9c80bdef5d0fea3eaaeee537 --- /dev/null +++ b/vlm/train/HyyP33gAZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ca25091e05f197ccb9004b76866149364767fb2bf3751a6d7c37f14f9ecc12 +size 476428 diff --git a/vlm/train/JUgC3lqn6r2/0.png b/vlm/train/JUgC3lqn6r2/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c25270c6a4aa868f92d7493c822acfb35041fb6c --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90430f009a67d486c1120298a193d8c6b317d2f22feef241c8466a5c7b481a2 +size 512556 diff --git a/vlm/train/JUgC3lqn6r2/1.png b/vlm/train/JUgC3lqn6r2/1.png new file mode 100644 index 0000000000000000000000000000000000000000..88af5dbd37fa3611cfa4c9c0cf77c7005d34f500 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afeb8fa58501bb5398104203b2a569a364e11969d845c7e0fdbcc0bf601dc4c6 +size 543954 diff --git a/vlm/train/JUgC3lqn6r2/10.png b/vlm/train/JUgC3lqn6r2/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bfab0505689321b00c6cc43d31aec575603a88aa --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b5bc9638309e2444ca41bde531664918cfca34221178fdfc750d24103ffb5c +size 524862 diff --git a/vlm/train/JUgC3lqn6r2/11.png b/vlm/train/JUgC3lqn6r2/11.png new file mode 100644 index 0000000000000000000000000000000000000000..24be303373ca93732fceffd077b746e30507d958 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a534e1b6c0017a7f61ff7fbf6a1256c7c204e04c084f7f049ba3e62b341cd3 +size 345450 diff --git a/vlm/train/JUgC3lqn6r2/12.png b/vlm/train/JUgC3lqn6r2/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9f74f38f1d8654911686a963d51d6ebbc5e61e7e --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c235d41ad017689c9ba828459555393b365f931938ad53fbbc8e7e1a3eec280e +size 432092 diff --git a/vlm/train/JUgC3lqn6r2/13.png b/vlm/train/JUgC3lqn6r2/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f3c2720f44445c50ab5a526fe172180a254a1610 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f777f84d73a92fc48496e541fb11dad55e97bb0ccac2affeaa3998e0e28d2981 +size 533879 diff --git a/vlm/train/JUgC3lqn6r2/14.png b/vlm/train/JUgC3lqn6r2/14.png new file mode 100644 index 0000000000000000000000000000000000000000..02e8d35efa87b1cf1ba80baeaa44440ceca38c5e --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6cb9d4d8556254cc65fe2ff76dfab3256ca6c26ad4f240c5cd573ba11fe5a20 +size 554485 diff --git a/vlm/train/JUgC3lqn6r2/15.png b/vlm/train/JUgC3lqn6r2/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b1d7b0c10c71b84b74754ae1d4a0e504794eb971 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727ec0449569977e65ae9b950805309babde363d9274ba592a44441eb3ec9bb2 +size 557101 diff --git a/vlm/train/JUgC3lqn6r2/16.png b/vlm/train/JUgC3lqn6r2/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f0cddec708031b0ed6a44b6c397d7753293a38fd --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e5ed85796706022e0c315852f176f121bf735066a16939e20aae2c9819469b +size 368850 diff --git a/vlm/train/JUgC3lqn6r2/17.png b/vlm/train/JUgC3lqn6r2/17.png new file mode 100644 index 0000000000000000000000000000000000000000..86b37767681052837f9572f95dfbff347a138f6a --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859f6b18b61a024d39ef532f56114813357298beb00bee44d994e4e47483e597 +size 241825 diff --git a/vlm/train/JUgC3lqn6r2/18.png b/vlm/train/JUgC3lqn6r2/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2f340a3e6045b51b580c490713b3284144d819e0 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be5d35c3fd9892701d3917b3713b266e3a9f367102e0273dd2cc33a915264981 +size 293534 diff --git a/vlm/train/JUgC3lqn6r2/19.png b/vlm/train/JUgC3lqn6r2/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8d199ea24321e6fd09a2449179952a89741a0ece --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298c50eb2ee094c1e8249ff2db595d4a44545cd7689bc191b057d1700fa4128f +size 337428 diff --git a/vlm/train/JUgC3lqn6r2/2.png b/vlm/train/JUgC3lqn6r2/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cc23dc2601e9209d2e11fe1abb2c3165a8bfa2a2 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8c907b855cd1f1b7908462024a371f71a6ae6612367c75735f020fbcd0b4e2 +size 491435 diff --git a/vlm/train/JUgC3lqn6r2/20.png b/vlm/train/JUgC3lqn6r2/20.png new file mode 100644 index 0000000000000000000000000000000000000000..fb084b49f132db51c98068b0379083d90917a07b --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36590fc8c9623e31a34e7ae848c7e561f78ee7900c832dda9fca1d6e3afe690c +size 282638 diff --git a/vlm/train/JUgC3lqn6r2/21.png b/vlm/train/JUgC3lqn6r2/21.png new file mode 100644 index 0000000000000000000000000000000000000000..57bce01bbcca86117113d1f83953f3977a21cc21 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10b9c645176cf4f1d2fff1cdddef2513c3368becb8a4a5bde1fc74d9b57c130 +size 177239 diff --git a/vlm/train/JUgC3lqn6r2/3.png b/vlm/train/JUgC3lqn6r2/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f0399ab39d131f2152eb2e41173ef4c3a3b70871 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:857e9384dfcc2650dea7e0bb35ff69e1be23ec5517ede577c298390699999af3 +size 498322 diff --git a/vlm/train/JUgC3lqn6r2/4.png b/vlm/train/JUgC3lqn6r2/4.png new file mode 100644 index 0000000000000000000000000000000000000000..280cff1cad95369940dd5cfd7d60fc93fb64364b --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfceedb59c81550b3d4f24d36e16cfb55aa1cd8952a5dc590a56747685d44996 +size 550313 diff --git a/vlm/train/JUgC3lqn6r2/5.png b/vlm/train/JUgC3lqn6r2/5.png new file mode 100644 index 0000000000000000000000000000000000000000..827e8352ee679a9638b38631f7b912b49a0f0959 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ce98275d683c9073b25dc78acc440e131b1a3de67c37f5c2027ec986785012 +size 575570 diff --git a/vlm/train/JUgC3lqn6r2/6.png b/vlm/train/JUgC3lqn6r2/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e90b0c88466f1b0d027444c9157a6c4f26eced --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:971e9c3e1d6d17d11eb7907d840244e59f90dda2bd6d92b84305a3af11d58264 +size 575689 diff --git a/vlm/train/JUgC3lqn6r2/7.png b/vlm/train/JUgC3lqn6r2/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c21259a8aa065e47020c0c3346a1004916c2ae04 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb98cabc8ea05bfad48d24746ed067f46d598b419febce9cef08335b79290a7 +size 582639 diff --git a/vlm/train/JUgC3lqn6r2/8.png b/vlm/train/JUgC3lqn6r2/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8ce46cafea381f2a45af14e7f0ca2e9705e26939 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3636cc7c76328cddf20cbfafbceb7abb53b7b2fa16c81f17f963b1fb289e1fc1 +size 612898 diff --git a/vlm/train/JUgC3lqn6r2/9.png b/vlm/train/JUgC3lqn6r2/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2d35bec433f13c9e6b62d1e74091b92d6dc07242 --- /dev/null +++ b/vlm/train/JUgC3lqn6r2/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5af31bc68a19e32660e34fc103649fe03821f1d069cda76f92a0ab97914dab +size 496381 diff --git a/vlm/train/LGgdb4TS4Z/0.png b/vlm/train/LGgdb4TS4Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c438c148c219247aab0a87bc7fbb38e41f3f387b --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81c1c1077dcbca451085d5b4653c451828a3fff4202ea38dddeb7cce529b1f1 +size 485844 diff --git a/vlm/train/LGgdb4TS4Z/1.png b/vlm/train/LGgdb4TS4Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfab1ae5b52f3447179f64d40ff5fc2890d363f3 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4a1cbf0685f6489fecdd1402b469b5c042f4c42c1a8ce101334076705b888b +size 664181 diff --git a/vlm/train/LGgdb4TS4Z/10.png b/vlm/train/LGgdb4TS4Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..69c7a3166e3cbd135d91f6ac01351f158f5cf982 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6846ca878a1fe4f43397d6c0ebcaacb88c4db162fbfba4c63407150dc7c8cd +size 579171 diff --git a/vlm/train/LGgdb4TS4Z/11.png b/vlm/train/LGgdb4TS4Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6bab826d023e3b4e72a28fd4aab1d327021b2bff --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4b37d0dd0f2fb4b4d352f5dd371f190c900c898343edb419e9557c2755a716 +size 551941 diff --git a/vlm/train/LGgdb4TS4Z/12.png b/vlm/train/LGgdb4TS4Z/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2b7b55d6bce7d227a5fa06d859024aff6d0f3179 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a29a4b396e26995fcb0c2c7b1fbe470b48eee05ce9b8007d85b32b6b989304 +size 415937 diff --git a/vlm/train/LGgdb4TS4Z/13.png b/vlm/train/LGgdb4TS4Z/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c4a9dae015a7c34a490d65c0fdd62ed986579828 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccb524e00be17dac93b278a3614fcf00c82ddef5f5cc1f6168eba48c430484e +size 467863 diff --git a/vlm/train/LGgdb4TS4Z/14.png b/vlm/train/LGgdb4TS4Z/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2cab8163a2e2752f74fb9bb28e7d09496edba7 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06d210a221006322569569fafa14a9c3e5b8cecb46d72b46804dc5d514d154d +size 593222 diff --git a/vlm/train/LGgdb4TS4Z/15.png b/vlm/train/LGgdb4TS4Z/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae3961c7eec06bcf97eb0502e51c9e378a42ea9 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1881288868d75a5d2e887fc355f76c35e8f8f207bc57aa59525950a002b070d0 +size 560591 diff --git a/vlm/train/LGgdb4TS4Z/16.png b/vlm/train/LGgdb4TS4Z/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8831efc3a9ad654eff0e0d48ad9bade3bc5dca46 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ab58c4aee76ca4a4604afa6246e53f54775daf97312caec2d2f33c0518f82a +size 434932 diff --git a/vlm/train/LGgdb4TS4Z/17.png b/vlm/train/LGgdb4TS4Z/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6da96c0fb004d141d2f03f88a0256b821e21f177 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72cb7294508dd0024ecdd803828e0d1185ba84e55ebf663a8435abd1d9aeadb +size 325344 diff --git a/vlm/train/LGgdb4TS4Z/18.png b/vlm/train/LGgdb4TS4Z/18.png new file mode 100644 index 0000000000000000000000000000000000000000..47fbb1d3060d1f892aaa369892c8ff206df6dfa0 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa185895af4f4483dc61c7fe0f3f7234d8e043dbfbd4ef4ead04c36d5b6e54f +size 202927 diff --git a/vlm/train/LGgdb4TS4Z/2.png b/vlm/train/LGgdb4TS4Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e7bebc0d594242ee3c6bf8aa7440bab6347b4a99 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89435d2930428b0bab42760a45c20f49670138501a6ab2bb5afcd8a584828948 +size 596005 diff --git a/vlm/train/LGgdb4TS4Z/3.png b/vlm/train/LGgdb4TS4Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3e13830aff5c1bf6fd9d5d17521e3d8557685c35 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c7d8715f6791a7b8802783a5ad26ca8637e264afc0ff7bf756fff46cb2f074 +size 789216 diff --git a/vlm/train/LGgdb4TS4Z/4.png b/vlm/train/LGgdb4TS4Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9874477303442affb027ada0bd565b5355b634b6 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f9648d8c4bf2e632cc423a0f40b74c94d34ee7004c77c341c2fd8a2fd0ff23 +size 600700 diff --git a/vlm/train/LGgdb4TS4Z/5.png b/vlm/train/LGgdb4TS4Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c06b02311e2ec6b91953d8e81d1f058116996890 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07bbf321a003122b461c375911e5268fe670a5276b2464200fc89bd8fa4af56d +size 645523 diff --git a/vlm/train/LGgdb4TS4Z/6.png b/vlm/train/LGgdb4TS4Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..79488fad3962f74294370a795087b96d6688a642 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aedd58c9872563213e2d83fdbbb3c8c8d2a3294b5c118ff1bc65a913b92ac95 +size 590687 diff --git a/vlm/train/LGgdb4TS4Z/7.png b/vlm/train/LGgdb4TS4Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3419f07e8ceb030845b8589f9f2d39c220f19e8d --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24631ca1717ec5f5375365278f91ffd5072cb4ed4c16c197888eefac1714243e +size 627248 diff --git a/vlm/train/LGgdb4TS4Z/8.png b/vlm/train/LGgdb4TS4Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8e7e2057228012247005ef15f38171bfc87bc3 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803d610d00ab2685233ea782ac8dc725dca2265c1440c32efc18a45fb0360fd6 +size 648961 diff --git a/vlm/train/LGgdb4TS4Z/9.png b/vlm/train/LGgdb4TS4Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..95a51545cea1ac4f1aa91e920416ed1109199a40 --- /dev/null +++ b/vlm/train/LGgdb4TS4Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5488aa01e2ff671a0aed193cbcc495a551dec059a38177b40dd86fe4c1b3934 +size 563468 diff --git a/vlm/train/LO7Su0-dPJl/0.png b/vlm/train/LO7Su0-dPJl/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1839a5249125cf3f7c0826d18f5dea9b3457b7 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c2e2df19dad3ccbc79a80379916f00aa023246d6997f8f92aeeb680455868c +size 440321 diff --git a/vlm/train/LO7Su0-dPJl/1.png b/vlm/train/LO7Su0-dPJl/1.png new file mode 100644 index 0000000000000000000000000000000000000000..db73281587005fdf5f92fc4230f63a8f2517ffc2 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2433824ab036d64bc7986b3870d1efb5c26bcf5e4bc8379715330b3e38e1f0fe +size 523403 diff --git a/vlm/train/LO7Su0-dPJl/10.png b/vlm/train/LO7Su0-dPJl/10.png new file mode 100644 index 0000000000000000000000000000000000000000..18906171d65084b4f8213b5e7473e8e44ced80de --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6d5717ed2e53b72ca478347911c5abe7ce514ae9ecc16328c53c952099ac57 +size 215735 diff --git a/vlm/train/LO7Su0-dPJl/11.png b/vlm/train/LO7Su0-dPJl/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4a627e692fea77eeb1b11f32f3f8770702f22a43 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8d2fbb6022dd86923bf751f213d064b6a0a906910dce260d99301142d7a66b +size 353373 diff --git a/vlm/train/LO7Su0-dPJl/12.png b/vlm/train/LO7Su0-dPJl/12.png new file mode 100644 index 0000000000000000000000000000000000000000..796fa4270cf3efa973e15e29e4ff8b3f963c6dbc --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c809512f7ba38e69584327210f4af929f22adff1f2660ccdf3782014a8d067 +size 379420 diff --git a/vlm/train/LO7Su0-dPJl/13.png b/vlm/train/LO7Su0-dPJl/13.png new file mode 100644 index 0000000000000000000000000000000000000000..fc79bde1a4d785975ec3a86f379483b94744602a --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61f108d3f17c9feadcd6810650f0934c08ab5917fd6890b6b4a024be8931225 +size 263119 diff --git a/vlm/train/LO7Su0-dPJl/14.png b/vlm/train/LO7Su0-dPJl/14.png new file mode 100644 index 0000000000000000000000000000000000000000..06352a206811e26ce099d13200171af43d987ddc --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60c11fadc398db0f5cf8ff5d15507f6a6ee18497fe6c3934c350424c17495a5 +size 201558 diff --git a/vlm/train/LO7Su0-dPJl/15.png b/vlm/train/LO7Su0-dPJl/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8126c302c75e659adbecf9024e49dc18883a6116 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd0406656d03d8798fde8f8fc789f66d6133a72c714d871eb7c836624721dd9 +size 337284 diff --git a/vlm/train/LO7Su0-dPJl/16.png b/vlm/train/LO7Su0-dPJl/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a8d6c7bfa338e6f9e83a919ac7bfc27adce4d1 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f62f22e8cb0f68eda4f8914474cc82cbe731cee839fa7290b0e878a6db64c6 +size 215732 diff --git a/vlm/train/LO7Su0-dPJl/2.png b/vlm/train/LO7Su0-dPJl/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8956f8e79a09dc3b8fc7f44ea5d25217fd497d17 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6aae5f8dc041c45ab114b49f165cee0cf8d4064a6a23a06bff74222fd06178 +size 561172 diff --git a/vlm/train/LO7Su0-dPJl/3.png b/vlm/train/LO7Su0-dPJl/3.png new file mode 100644 index 0000000000000000000000000000000000000000..baef55a132ac9b6dc68b5b4e5724e9d8eeee6294 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b73ba82de0269359731c9ab1965ddc04dd132391a9e8bedbb8bfb4897b9047 +size 543932 diff --git a/vlm/train/LO7Su0-dPJl/4.png b/vlm/train/LO7Su0-dPJl/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fcc217a4a97b033e7b6e10b6250d62efd1c17776 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f91f0968ff45a439e55c06891193897476a10dc932c7942a0e79bb4ea877073 +size 504116 diff --git a/vlm/train/LO7Su0-dPJl/5.png b/vlm/train/LO7Su0-dPJl/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e07c932e409e8bc67b5a2b046cb142bcea256b52 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c68e804d4d150a1e855e967d4f4bfe1ab1c04eb5cf5ef3337a3683f9a836c40 +size 457608 diff --git a/vlm/train/LO7Su0-dPJl/6.png b/vlm/train/LO7Su0-dPJl/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c39cfadc395c9eaded946565dc3a77a042814cbc --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b9b0150b30b5cde7198578fa0a5d306a6be32d84f6b08253e4f88ea4246b54 +size 466641 diff --git a/vlm/train/LO7Su0-dPJl/7.png b/vlm/train/LO7Su0-dPJl/7.png new file mode 100644 index 0000000000000000000000000000000000000000..161933f7b325c3d763094bfebb78792eb2c43c42 --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add1cf3a444ae96c6c70ba7dedc011e0f657452e5697c0259f07fe88819f4e27 +size 465319 diff --git a/vlm/train/LO7Su0-dPJl/8.png b/vlm/train/LO7Su0-dPJl/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d65174630c0ae33936b4b45a6fc90af05337e38f --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f3651b30817c8f40e14d7e3eaee64b1a31c9385cf9f9af39599d80ce38e2ae3 +size 505229 diff --git a/vlm/train/LO7Su0-dPJl/9.png b/vlm/train/LO7Su0-dPJl/9.png new file mode 100644 index 0000000000000000000000000000000000000000..dc6c75e5cbb2bc37b9f659291c2ca50bd554dccb --- /dev/null +++ b/vlm/train/LO7Su0-dPJl/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedeb3ccf4574e51bdbebac868da9b9cdc40584665d604c8ced5ddbf679348b8 +size 490568 diff --git a/vlm/train/NlB8_hXkbby/0.png b/vlm/train/NlB8_hXkbby/0.png new file mode 100644 index 0000000000000000000000000000000000000000..938f54eeba5fcb5a21870643cb3342aeccf2300c --- /dev/null +++ b/vlm/train/NlB8_hXkbby/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094bde50be8fdd09858670d350645e61b7a8232561290d6fae17dd2a457cae78 +size 468154 diff --git a/vlm/train/NlB8_hXkbby/1.png b/vlm/train/NlB8_hXkbby/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cafbba597a39adbaf35c220e49c21443e6a02a60 --- /dev/null +++ b/vlm/train/NlB8_hXkbby/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfffff3699397b0f87451daa043ad96e9b753aaeca54585884bb891c74873ead +size 573825 diff --git a/vlm/train/NlB8_hXkbby/10.png b/vlm/train/NlB8_hXkbby/10.png new file mode 100644 index 0000000000000000000000000000000000000000..45388a6f02b82242e0d3a1894b36c9fcd5f662f1 --- /dev/null +++ b/vlm/train/NlB8_hXkbby/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aabe51b9d1ae068b66f3652228f04889b686e26b2580a7e6607607eff173701 +size 564595 diff --git a/vlm/train/NlB8_hXkbby/11.png b/vlm/train/NlB8_hXkbby/11.png new file mode 100644 index 0000000000000000000000000000000000000000..24d09f58bc536cfb8cff8a52abeac1d26c10fd2a --- /dev/null +++ b/vlm/train/NlB8_hXkbby/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b47d5f8734757d532be3e516b98359bde17b68d1141b567a6a28ca400d3763 +size 183898 diff --git a/vlm/train/NlB8_hXkbby/2.png b/vlm/train/NlB8_hXkbby/2.png new file mode 100644 index 0000000000000000000000000000000000000000..431fe9c74c9c2182e054d1c12256e04873cf3e0b --- /dev/null +++ b/vlm/train/NlB8_hXkbby/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e45e4338e36a368ef3b56491ea83fc7372b7353158c51ec7c36a501bbbbb54 +size 506968 diff --git a/vlm/train/NlB8_hXkbby/3.png b/vlm/train/NlB8_hXkbby/3.png new file mode 100644 index 0000000000000000000000000000000000000000..38e1d81a2825663d955ff3b8efd670db20935cbe --- /dev/null +++ b/vlm/train/NlB8_hXkbby/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287713360df004fc9cd9b22b2c74541db2a53282d6197272c37aa91a6c1c1597 +size 428267 diff --git a/vlm/train/NlB8_hXkbby/4.png b/vlm/train/NlB8_hXkbby/4.png new file mode 100644 index 0000000000000000000000000000000000000000..783a02395ce09a5114c1064aeb96dacd0396746f --- /dev/null +++ b/vlm/train/NlB8_hXkbby/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf08c1d1a31bcfe8673eed0f09454d4d8e9439e5455f31b6f0a5c596f51ee02 +size 404289 diff --git a/vlm/train/NlB8_hXkbby/5.png b/vlm/train/NlB8_hXkbby/5.png new file mode 100644 index 0000000000000000000000000000000000000000..550e676ce9c85b9983d4ea6252a0dd6ab17a76f1 --- /dev/null +++ b/vlm/train/NlB8_hXkbby/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7853d7229ccadceec550be99c194cfea1e1b8b25670649499d798447553ad897 +size 503981 diff --git a/vlm/train/NlB8_hXkbby/6.png b/vlm/train/NlB8_hXkbby/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1a245ccecb3465eff431224b17203e437e9db91f --- /dev/null +++ b/vlm/train/NlB8_hXkbby/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c302d039985022069e6000f1e59aa7af0138a088008cffa0881f60102712b4b2 +size 391608 diff --git a/vlm/train/NlB8_hXkbby/7.png b/vlm/train/NlB8_hXkbby/7.png new file mode 100644 index 0000000000000000000000000000000000000000..28cdc7e94f0237a9896ffdb6481eafcfba2663fe --- /dev/null +++ b/vlm/train/NlB8_hXkbby/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc44f06161294d64c1851a238fab0cf17f919f9fdb7837df7e092a47f7dc93c +size 362811 diff --git a/vlm/train/NlB8_hXkbby/8.png b/vlm/train/NlB8_hXkbby/8.png new file mode 100644 index 0000000000000000000000000000000000000000..29e7aece44d6566a5f8c614baadb56d47c9c6ce2 --- /dev/null +++ b/vlm/train/NlB8_hXkbby/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f3835f1e275eb19c1c4502056d02698ec5ecd82858bacbbf91df694403ae57 +size 308787 diff --git a/vlm/train/NlB8_hXkbby/9.png b/vlm/train/NlB8_hXkbby/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fd2439aeaa3dac75d2a31d87d0a2b6693590cf4b --- /dev/null +++ b/vlm/train/NlB8_hXkbby/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a419ffe23cd7074a402bef8f480d751dccea5c6ac3fb6dd8a8d6faeaefda4a91 +size 499069 diff --git a/vlm/train/S1LVSrcge/0.png b/vlm/train/S1LVSrcge/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f194ecf7778db5dc5268dd706154315f3ff23d7b --- /dev/null +++ b/vlm/train/S1LVSrcge/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf6942d3afb9657c71e9cbf9d3a9b1cdec0b5695217dc7b39339cb3f6debc41 +size 435176 diff --git a/vlm/train/S1LVSrcge/1.png b/vlm/train/S1LVSrcge/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c2165e3455b0cebd63ad0a9de60c7af369d7a634 --- /dev/null +++ b/vlm/train/S1LVSrcge/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d09aa259ec04e8d758777ac5f70fd3947eca445e7c1065fc8b64ea9dd405441 +size 595569 diff --git a/vlm/train/S1LVSrcge/10.png b/vlm/train/S1LVSrcge/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ef167e2f960e124702d936cd2d9dbaa5be75b824 --- /dev/null +++ b/vlm/train/S1LVSrcge/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee98b75afca4f3935a40ac456d644247a9e8101a74cc2b421c36335fa79a846 +size 217799 diff --git a/vlm/train/S1LVSrcge/11.png b/vlm/train/S1LVSrcge/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f24462d89bf75b1fd7056c7430315836f147ec68 --- /dev/null +++ b/vlm/train/S1LVSrcge/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb68001b5e2dfef5dac7bbd6ab670424be737861c8f1365a1b0d28d9d30f5e64 +size 172179 diff --git a/vlm/train/S1LVSrcge/2.png b/vlm/train/S1LVSrcge/2.png new file mode 100644 index 0000000000000000000000000000000000000000..13bb78720dce639ee978ec2c9bbacfa805b19641 --- /dev/null +++ b/vlm/train/S1LVSrcge/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ca0d1b49e4066a2bad5cb710a886c5769f4f7e6f9c23d27a50a7ba6446c8b8 +size 484051 diff --git a/vlm/train/S1LVSrcge/3.png b/vlm/train/S1LVSrcge/3.png new file mode 100644 index 0000000000000000000000000000000000000000..012f30c3be5193e81654847246a688bda88aa72c --- /dev/null +++ b/vlm/train/S1LVSrcge/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7697e8f3f7a91f8b7f2cf8f4d8e1afd296528701dc5343f849bf215a97b52f8b +size 399981 diff --git a/vlm/train/S1LVSrcge/4.png b/vlm/train/S1LVSrcge/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e336be896b897eaf8edb9f817af358203f49209e --- /dev/null +++ b/vlm/train/S1LVSrcge/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b120ca505840f3a30868aa48812b97d17d3a339401ba722d4e95183ec9830896 +size 551274 diff --git a/vlm/train/S1LVSrcge/5.png b/vlm/train/S1LVSrcge/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5eb66eb9f58ca9ba74feaeaa76a75b7c376b4d03 --- /dev/null +++ b/vlm/train/S1LVSrcge/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e635da6618c392b7a859de3a9642dd71c0f7c0f06cae5839761ce2bd1240a99d +size 441194 diff --git a/vlm/train/S1LVSrcge/6.png b/vlm/train/S1LVSrcge/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ca2b06cd181530f721b4587d93db1799c113e0 --- /dev/null +++ b/vlm/train/S1LVSrcge/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0374f768b797462f7fb5b9ffcd96cb21191405a6b90da22d6bd992c0084e8ab +size 470749 diff --git a/vlm/train/S1LVSrcge/7.png b/vlm/train/S1LVSrcge/7.png new file mode 100644 index 0000000000000000000000000000000000000000..93300141a1a64e7e12864cf3ff8dc0121451faa2 --- /dev/null +++ b/vlm/train/S1LVSrcge/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfc8b2f4e2531062411de719cd6a76ff1f944e7c2015fb4977c910805c5c7b1 +size 395852 diff --git a/vlm/train/S1LVSrcge/8.png b/vlm/train/S1LVSrcge/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f9b22e206df9e415f351fa91490bc1a5e366ed --- /dev/null +++ b/vlm/train/S1LVSrcge/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2fcf0eb7ba78cf2b2831408c48a55f024158e9e088b69a83e188d04e678f4a +size 275530 diff --git a/vlm/train/S1LVSrcge/9.png b/vlm/train/S1LVSrcge/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1001e803ee65ccca6e157f63c91bc23da75d40f6 --- /dev/null +++ b/vlm/train/S1LVSrcge/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793153f0f41e22fbd9fbaedf63712b391a21abc9540f56c288eacaea8500f0b2 +size 525346 diff --git a/vlm/train/SJlOq34Kwr/0.png b/vlm/train/SJlOq34Kwr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..85df9ab0567f66868993d7ece88e3e3e8976382a --- /dev/null +++ b/vlm/train/SJlOq34Kwr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac8764b8c762d9c3f7cc09be75204646f571c9710ab07594e4b2ea18efd43e4 +size 490322 diff --git a/vlm/train/SJlOq34Kwr/1.png b/vlm/train/SJlOq34Kwr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..51f48646252e4d4f7b067531252127fabc8f19f0 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2736199d94890614ef6173f9ad007547757efccf99eceac5ed021ada491af294 +size 579183 diff --git a/vlm/train/SJlOq34Kwr/10.png b/vlm/train/SJlOq34Kwr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9e01cc3986fdc2ca311e029d4491be6e2310fe0a --- /dev/null +++ b/vlm/train/SJlOq34Kwr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672bf7589d7a46be25bda60b19ee5292dadb5ae7387025cea14bbe5085d032bc +size 91226 diff --git a/vlm/train/SJlOq34Kwr/11.png b/vlm/train/SJlOq34Kwr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7cb5ab3becb2b7c918d03b8b2652c7639d83b60f --- /dev/null +++ b/vlm/train/SJlOq34Kwr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196510b29ff09c2b7d0b9fa6b09ce7e8bc8e77852ce7657c7a234a2bf6246810 +size 512563 diff --git a/vlm/train/SJlOq34Kwr/12.png b/vlm/train/SJlOq34Kwr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7f815ed44656b80fe29c28d55fd28bf168fb511b --- /dev/null +++ b/vlm/train/SJlOq34Kwr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f619e8c8bf2f1c5fa9bf74aa7685a1f77f53bcf386a45cca0c0f6fad725d460 +size 298760 diff --git a/vlm/train/SJlOq34Kwr/13.png b/vlm/train/SJlOq34Kwr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b75521ef48b2fd23de782515c12772790f7cf571 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d913797cbf3ecad136d9385b72612e1e7ff5492393952bfb33656b5ae24ffc +size 227463 diff --git a/vlm/train/SJlOq34Kwr/2.png b/vlm/train/SJlOq34Kwr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f59ebef3d86c49749c1ea8b928fd2731717df3f7 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e17460e48188d28239df839cd1e20e4f29f04d3ecea8fc1352454e648b48aab +size 517232 diff --git a/vlm/train/SJlOq34Kwr/3.png b/vlm/train/SJlOq34Kwr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f7bf63ed03607a9a45cbd59fd606dca85e362e19 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4c37cfc70cee2d3f71f7149b65ce20a36f2ec7550426c185f4947a50ef30a3 +size 537913 diff --git a/vlm/train/SJlOq34Kwr/4.png b/vlm/train/SJlOq34Kwr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..104594ffe2321199e6b48054d1fea8221f9e00d9 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183bb9538faaf2e63b41afa8223de2947743dbfb4a66f9f12c61eca8cdcae97c +size 553495 diff --git a/vlm/train/SJlOq34Kwr/5.png b/vlm/train/SJlOq34Kwr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f5435c3ef50ac0cd58f197f64d23c2d39e3dec72 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab168973ce001e8699d7aa9c9bb8fd4e81c1829b23db21461eb1e104a67c4579 +size 633320 diff --git a/vlm/train/SJlOq34Kwr/6.png b/vlm/train/SJlOq34Kwr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7fca358d5173e36532e907cbd702ff29cce641f8 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03bc76f960f01ce3db68ba78fc8707b4ffc048c2d57c36edc27b6d7946e25bf +size 595135 diff --git a/vlm/train/SJlOq34Kwr/7.png b/vlm/train/SJlOq34Kwr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..beb96c5e50a380afeae65de95a34eaef91bbb4c5 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da5ca2d38c95dfa68b1405b2e78bee4f352a9f61683dbf4dd95ae4c26549b34 +size 645119 diff --git a/vlm/train/SJlOq34Kwr/8.png b/vlm/train/SJlOq34Kwr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6840868fa8d31496a3ceea09466f4664e884c7e0 --- /dev/null +++ b/vlm/train/SJlOq34Kwr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0722dcb30b392d0008786bdd8e8866107e3bd700fb269383bc1c23b12482db8 +size 459401 diff --git a/vlm/train/SJlOq34Kwr/9.png b/vlm/train/SJlOq34Kwr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2a6cf972f7f626aa310f7d90394a05cc1edca65a --- /dev/null +++ b/vlm/train/SJlOq34Kwr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e344b544fc877984533439ae062de116263d6cbbe9e1236af288504d98733e8 +size 463666 diff --git a/vlm/train/SkMQg3C5K7/0.png b/vlm/train/SkMQg3C5K7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4bb52dc997748ba5faf740c9da539d565b50ac4a --- /dev/null +++ b/vlm/train/SkMQg3C5K7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7503b7eabe308b0a434947cccb41a847246e6bc64594e1f22535060ebfbd4e2e +size 515747 diff --git a/vlm/train/SkMQg3C5K7/1.png b/vlm/train/SkMQg3C5K7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6b00cf21e049dc0eda66792fb8dcc64f72f7d7 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecd5187fc5cf14a525ef88bb2c51225896ffab61de44ca83225b32b707a1a17 +size 579141 diff --git a/vlm/train/SkMQg3C5K7/10.png b/vlm/train/SkMQg3C5K7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..904c900a4a8040b3ff82571ce9ad8f240d52f3f7 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4c48ad34084e8bf63f88cb9b5e227b84e85481f24870696d88cedc1258b509 +size 522443 diff --git a/vlm/train/SkMQg3C5K7/11.png b/vlm/train/SkMQg3C5K7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c621b8a18763019e1da652dbdaf7d0f5b08e9e86 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36218a25c49798187ba1a7bc8d2dddeba8929fa4de0559ee766f4879f18b8934 +size 568379 diff --git a/vlm/train/SkMQg3C5K7/12.png b/vlm/train/SkMQg3C5K7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f2139aac1d9c1ca23c551e445e6fff49afd62c4f --- /dev/null +++ b/vlm/train/SkMQg3C5K7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0ed2b4ffd87af17acbc176f7c8b6de2f67063c99de39d9ee4df945d51347cc +size 474965 diff --git a/vlm/train/SkMQg3C5K7/13.png b/vlm/train/SkMQg3C5K7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed8b1b2d98d77f11288073a04a3875b59e89101 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc0810d8d95dc4477c79cc8df0a2d040e3e6de207c6ef4c45cb09866642a168 +size 498547 diff --git a/vlm/train/SkMQg3C5K7/14.png b/vlm/train/SkMQg3C5K7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b67101b31089e4f5885a68676af4cda3ac55b846 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c824b20ecca6dbd7dd5a102423fce26e7c3c480b510293e2af6c96df7378a36d +size 346624 diff --git a/vlm/train/SkMQg3C5K7/15.png b/vlm/train/SkMQg3C5K7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3d5e3bcdf49680f8bf0da017cd5c8c8a0d8a49 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f69de937fb2d9ed192568817e166325e7b1900081fbab6f17435d55fb1f9b81 +size 414306 diff --git a/vlm/train/SkMQg3C5K7/16.png b/vlm/train/SkMQg3C5K7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7cec57d226a760fd5138f2b4c83c66da4b7ef912 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93ccea16b4520a2cb52285020cd491bddc4972975358224b951e25020bb8af3 +size 292185 diff --git a/vlm/train/SkMQg3C5K7/17.png b/vlm/train/SkMQg3C5K7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..75d9ce76447b12cd241fae3bd72ab16a73d142df --- /dev/null +++ b/vlm/train/SkMQg3C5K7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92508917982675c4872bc382a54ba2b4b62eea8871385e03cd38fe8ac1998f5b +size 386742 diff --git a/vlm/train/SkMQg3C5K7/18.png b/vlm/train/SkMQg3C5K7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4063b5406caa6dfa47a0d68349bc20c66bc5f581 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c50725d1857f7427b2c1bbab8aaeafd34ece60347614184ca24f2267f439607 +size 389778 diff --git a/vlm/train/SkMQg3C5K7/19.png b/vlm/train/SkMQg3C5K7/19.png new file mode 100644 index 0000000000000000000000000000000000000000..53e8566829ddaf3f98f2321e05125689c4c01c1b --- /dev/null +++ b/vlm/train/SkMQg3C5K7/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6e32c826fbf1f60f9add167359a5b67870bb7ebd79a3ea8c4a15a4d6f4dc08 +size 259065 diff --git a/vlm/train/SkMQg3C5K7/2.png b/vlm/train/SkMQg3C5K7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..28c1a4b2ec6aa1d0ac4098978676fb6a75429c94 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23515f6eee5efe38c67387333c2d4d2998aeb9b103d9c8c0516056e3323aa4fc +size 535243 diff --git a/vlm/train/SkMQg3C5K7/20.png b/vlm/train/SkMQg3C5K7/20.png new file mode 100644 index 0000000000000000000000000000000000000000..0bcc30664945052ae4c4750c56dbf544d71a61a2 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67d91cf9ad32b4f3c5b3bf755271e49c24f7bbf4694ef7796d45fd101e04a90 +size 326710 diff --git a/vlm/train/SkMQg3C5K7/21.png b/vlm/train/SkMQg3C5K7/21.png new file mode 100644 index 0000000000000000000000000000000000000000..20a35eb0c2568d35d4a73b0ccda53c8db800f90e --- /dev/null +++ b/vlm/train/SkMQg3C5K7/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b392d7d8f3346967ea334d5f215110e4ec76f544fc3805f27a69286b9776f7a0 +size 328453 diff --git a/vlm/train/SkMQg3C5K7/22.png b/vlm/train/SkMQg3C5K7/22.png new file mode 100644 index 0000000000000000000000000000000000000000..30559dfd42f45f15ac7e71d9f5729cdd55f60134 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136c35adf538dc90b92a2effa41d4d2ddfbb32b609abe8c51c6785273f15e226 +size 407719 diff --git a/vlm/train/SkMQg3C5K7/23.png b/vlm/train/SkMQg3C5K7/23.png new file mode 100644 index 0000000000000000000000000000000000000000..fc472639b4c1d8c5473a17edecaf7de2f34e5099 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f081424fad3b75924d988f69ffed372cd43ff11a4d5fdafd728d345b5c0620f +size 345471 diff --git a/vlm/train/SkMQg3C5K7/24.png b/vlm/train/SkMQg3C5K7/24.png new file mode 100644 index 0000000000000000000000000000000000000000..3961133f08ba988be6dd7cfa42d5d4fc1e3c94be --- /dev/null +++ b/vlm/train/SkMQg3C5K7/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3794cd48af5df3fd805865b8dd5e7a2cbc7c1851d253396258b61fbb38e31adb +size 462563 diff --git a/vlm/train/SkMQg3C5K7/25.png b/vlm/train/SkMQg3C5K7/25.png new file mode 100644 index 0000000000000000000000000000000000000000..072cb09acbd7048d4e824f73f166d64c111147f5 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30233978cb251f0533dba119dba1b0f3558f8787c9f40ca274248b86bc0a13bf +size 395328 diff --git a/vlm/train/SkMQg3C5K7/26.png b/vlm/train/SkMQg3C5K7/26.png new file mode 100644 index 0000000000000000000000000000000000000000..be8dceb8eb5a8c5c0071d0df9fdafc2fa45410e1 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4144abfa1ce6250a8d51f850907ac59bf0ec58a4499d1a62d95a9ffdaeca2b17 +size 409558 diff --git a/vlm/train/SkMQg3C5K7/27.png b/vlm/train/SkMQg3C5K7/27.png new file mode 100644 index 0000000000000000000000000000000000000000..a41c46ad4415cbbb0d8acbee491b2da0630c88f6 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd198ac170482d96cde2dce2a76ab2af0cbf342e850727489a7369b3d369e5bd +size 413549 diff --git a/vlm/train/SkMQg3C5K7/28.png b/vlm/train/SkMQg3C5K7/28.png new file mode 100644 index 0000000000000000000000000000000000000000..c4e7dc545b8061e9fc255bf710056a10b1350336 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93f7000fae83786d542c91139c04919fdb02ab9b029691ebca269f878674656 +size 436691 diff --git a/vlm/train/SkMQg3C5K7/29.png b/vlm/train/SkMQg3C5K7/29.png new file mode 100644 index 0000000000000000000000000000000000000000..e323f559da8791f817e4d12412e515e4368099bb --- /dev/null +++ b/vlm/train/SkMQg3C5K7/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c76d79501343504c35cdf53b8d9078d73716285011033a4487fc4bd9c9996e7 +size 292689 diff --git a/vlm/train/SkMQg3C5K7/3.png b/vlm/train/SkMQg3C5K7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8706634cad87dd6ab4d952a369170fa5fceb1a7c --- /dev/null +++ b/vlm/train/SkMQg3C5K7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d84209d30b9134d42677f99f182aa1442deca64290c89c8d09ea1d4b149676d +size 580635 diff --git a/vlm/train/SkMQg3C5K7/30.png b/vlm/train/SkMQg3C5K7/30.png new file mode 100644 index 0000000000000000000000000000000000000000..67cc08ad69395d2508ac1d0e9a11ebe89b9d3df5 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d649e036f8ef9b7f6ce0d1c9ea63005679ce56657e43cc397eb858e5be86604 +size 357260 diff --git a/vlm/train/SkMQg3C5K7/31.png b/vlm/train/SkMQg3C5K7/31.png new file mode 100644 index 0000000000000000000000000000000000000000..bcff908b157e42d3d866ff9b31eac7ec2f60f342 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb397ff81d851dfba2aca74ced733af63d0f7fbf39521c0cfe0ca34d316e7c4a +size 443220 diff --git a/vlm/train/SkMQg3C5K7/32.png b/vlm/train/SkMQg3C5K7/32.png new file mode 100644 index 0000000000000000000000000000000000000000..4df024620c9476cb91c1da79030bc7842bfa4a99 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6996541102317819357d8984ae5a3a47eb3f840c31879bca98199eb3f9e003 +size 501049 diff --git a/vlm/train/SkMQg3C5K7/4.png b/vlm/train/SkMQg3C5K7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..41af9198fccf55d099add43802cc25a700d651d1 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab6b4185a03de4461eeed065703300b9e73bd4224efb6875f3bf1c414e37bd2 +size 494490 diff --git a/vlm/train/SkMQg3C5K7/5.png b/vlm/train/SkMQg3C5K7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..dfdbee68fde4bde9b367751f9ce4e4f6c8d1ae04 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7b6c27ab2bd8afc739cd4f1a12f77c8b574e8fef1921deec23d93ffedfb491 +size 436110 diff --git a/vlm/train/SkMQg3C5K7/6.png b/vlm/train/SkMQg3C5K7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..46695419d78e5fc2cc5be15da64d5a69ed2470ec --- /dev/null +++ b/vlm/train/SkMQg3C5K7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e337feedc6f9e1560e14ac8f05c6da821db3356a1cebf4b0f5d63856a113328 +size 498777 diff --git a/vlm/train/SkMQg3C5K7/7.png b/vlm/train/SkMQg3C5K7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f50d235f242ca4373fb312c0631797a2fae4bcf4 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3476b65e880c84ccc63b4a984c895dc197cde78003ade0dc13c8031ac2f746f7 +size 587608 diff --git a/vlm/train/SkMQg3C5K7/8.png b/vlm/train/SkMQg3C5K7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..175c6f18fe45240eb049dfa713782280f0674d68 --- /dev/null +++ b/vlm/train/SkMQg3C5K7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aede610c13eebb18affe923b0b879612ab3bb1f57e43f47be1c04b23edfa4692 +size 626053 diff --git a/vlm/train/SkMQg3C5K7/9.png b/vlm/train/SkMQg3C5K7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b86c525779cb9cf68ccf991a900b8041d9e9a1dc --- /dev/null +++ b/vlm/train/SkMQg3C5K7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6840a8a6a3030cfe43f51f98012fdb0874758e3a1a6bfad4c6353f2172c185 +size 587911 diff --git a/vlm/train/SkeGvaEtPr/0.png b/vlm/train/SkeGvaEtPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c673c7b308e75cadeaec9b56a92ca87895e416 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9194a9a706461ef62eb83b6f8b7d3041f378ebd69ff743fe1650792c283188dc +size 466739 diff --git a/vlm/train/SkeGvaEtPr/1.png b/vlm/train/SkeGvaEtPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..802b4cd0392818c8fe6d32b255371e267ca0d242 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d01454051a9c706580a90e6e8b8ff48f1a142a28f3228c6d72c58c0c812ebb2 +size 590294 diff --git a/vlm/train/SkeGvaEtPr/10.png b/vlm/train/SkeGvaEtPr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9671f0b3b0b8c6b7454e2d82b1d4e4b0fed846d8 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34d7962e9ea732e2caf05b4ab76efdd7aae46955fd47970193cad30a27094b8 +size 522160 diff --git a/vlm/train/SkeGvaEtPr/11.png b/vlm/train/SkeGvaEtPr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5bc16cea9ffac46c40cb8c3719e5623718c67e72 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d6903baf0983371c0e128d85919b1117b9781b1f783185b04e55f58d7a92b0 +size 324336 diff --git a/vlm/train/SkeGvaEtPr/12.png b/vlm/train/SkeGvaEtPr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cc87de4785f8859b1255235ea6a8eefc92b157e7 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c875b90b837a37e5bcf041744ad5c9926bf9ab72cdb087bcacf3db4ed94292 +size 158775 diff --git a/vlm/train/SkeGvaEtPr/2.png b/vlm/train/SkeGvaEtPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9f9d49d9259b5b48f1d68b2140a4cabcd8cf6c --- /dev/null +++ b/vlm/train/SkeGvaEtPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e514f16eadd468939dbcc31aca5fc7b580148571dae38f569d2108c7da6b4f +size 496119 diff --git a/vlm/train/SkeGvaEtPr/3.png b/vlm/train/SkeGvaEtPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..14184758bed8209a52014140412a681d430b3f62 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab14406886eb68f8b3b78fa8aa98bdf1ad03f05348c3ecb28c967fd7d4d62d70 +size 545500 diff --git a/vlm/train/SkeGvaEtPr/4.png b/vlm/train/SkeGvaEtPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3f971ab31dd5f1fd7b0863aeb76200f8c3fa750b --- /dev/null +++ b/vlm/train/SkeGvaEtPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e62b61343adc5f0e48105c5e50d010b57c0022816455c4140bd099dffec49bd7 +size 522014 diff --git a/vlm/train/SkeGvaEtPr/5.png b/vlm/train/SkeGvaEtPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..266c7fd56d18ae15f5e039795d22dfa38e9bc2bc --- /dev/null +++ b/vlm/train/SkeGvaEtPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0a6d3518ae075e57609d06afbdaafe035c8dc1b25257d5f2bb205f3df5e5b0 +size 593031 diff --git a/vlm/train/SkeGvaEtPr/6.png b/vlm/train/SkeGvaEtPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..75f9b2a1fdc66befcfcaa2a4685bb2e279e9141e --- /dev/null +++ b/vlm/train/SkeGvaEtPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da059e9942ad11d4fb86b66e72bba4c7e787f17c86cdbde89d6057fe4baa8b50 +size 519861 diff --git a/vlm/train/SkeGvaEtPr/7.png b/vlm/train/SkeGvaEtPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..eae26bdf3c164e8cb2cd13cad857a0730b4bfcfb --- /dev/null +++ b/vlm/train/SkeGvaEtPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63613d16abf1d2834da5027d93df3ca236029e9cfdc1317eb4b8a556fe14db3c +size 335410 diff --git a/vlm/train/SkeGvaEtPr/8.png b/vlm/train/SkeGvaEtPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5257e904691c2be497f6e780a5171561df345efe --- /dev/null +++ b/vlm/train/SkeGvaEtPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d69acb08fe2dedd3fdd728300ca539a1288b62d3af1a894810ff413454e839a +size 559709 diff --git a/vlm/train/SkeGvaEtPr/9.png b/vlm/train/SkeGvaEtPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..17f484f4adafdda39006f2fc68d2e9fc756eb8b9 --- /dev/null +++ b/vlm/train/SkeGvaEtPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ecf6a20b1082c922779194f9ae59bdfcb5c39d1eb378f75409e060da02f9cde +size 362175 diff --git a/vlm/train/SyWvgP5el/0.png b/vlm/train/SyWvgP5el/0.png new file mode 100644 index 0000000000000000000000000000000000000000..282bfc3caef283d5f76d5017c29ea2e2e9c95cf9 --- /dev/null +++ b/vlm/train/SyWvgP5el/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d832270e70993ec7550c741f4dff902efcebf57c0a9536ea8e2235d38ecbb282 +size 520836 diff --git a/vlm/train/SyWvgP5el/1.png b/vlm/train/SyWvgP5el/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd23d1d99cba973c09a6262f63f5d3066722e4cb --- /dev/null +++ b/vlm/train/SyWvgP5el/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3b864c4ad16a9f1231ce9153abaf0148afb65fe43670d8e8ea70527f15c5cb +size 616076 diff --git a/vlm/train/SyWvgP5el/10.png b/vlm/train/SyWvgP5el/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ef0bf5a04244ed467c7a331ac6cd80bfbce5d53f --- /dev/null +++ b/vlm/train/SyWvgP5el/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1f6282285a35383aba6d79afa3eb43514d104afc31b70356de087227cd48e4 +size 93910 diff --git a/vlm/train/SyWvgP5el/11.png b/vlm/train/SyWvgP5el/11.png new file mode 100644 index 0000000000000000000000000000000000000000..84897a30df4d328bc4fd788db9bbedf8a93b8c60 --- /dev/null +++ b/vlm/train/SyWvgP5el/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9f78e0bc14efa301344d6016dba55d8e0408a94aef6c4bab6e09455ab0fec9 +size 419623 diff --git a/vlm/train/SyWvgP5el/12.png b/vlm/train/SyWvgP5el/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7de13dae954a7ebb8f38f4f187b26b4a7344a571 --- /dev/null +++ b/vlm/train/SyWvgP5el/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b616e0c06d83a682956becc2819b14b0fc53ddf561912c0874152e5cfb3725d0 +size 417107 diff --git a/vlm/train/SyWvgP5el/13.png b/vlm/train/SyWvgP5el/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e372af2c1d1bbe6cf0679ac8ba4a347101ba29d6 --- /dev/null +++ b/vlm/train/SyWvgP5el/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97152683ea5855b89631c08cfa7a89c8d90be20862530d1e1f844d4524170a42 +size 494307 diff --git a/vlm/train/SyWvgP5el/14.png b/vlm/train/SyWvgP5el/14.png new file mode 100644 index 0000000000000000000000000000000000000000..40942bdf33f9c40342fb2c03149cd033ddf9089b --- /dev/null +++ b/vlm/train/SyWvgP5el/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef7ad1c4782217889c964854d1ed877ee7fc625d316ab0f7c599497abda1cb +size 319024 diff --git a/vlm/train/SyWvgP5el/2.png b/vlm/train/SyWvgP5el/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ab8d95838f25d784db8b4feb5c222a2cb9c83d87 --- /dev/null +++ b/vlm/train/SyWvgP5el/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1ece469cc68e966b81ddba1be76263752f5fd80addcd8aa280fefcf40c3e72 +size 560051 diff --git a/vlm/train/SyWvgP5el/3.png b/vlm/train/SyWvgP5el/3.png new file mode 100644 index 0000000000000000000000000000000000000000..67cd8f4518264a3e3c937136a5506fa425a67200 --- /dev/null +++ b/vlm/train/SyWvgP5el/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b63a54528af73dfd5fedb68f66b621dfed85b8383fb2098ced84e44f0fab04b +size 456621 diff --git a/vlm/train/SyWvgP5el/4.png b/vlm/train/SyWvgP5el/4.png new file mode 100644 index 0000000000000000000000000000000000000000..02dde933244f26d6aa9335f2fe88aa0f31d0daa3 --- /dev/null +++ b/vlm/train/SyWvgP5el/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e751bb485371a9728fac6f6b2a6b13359b154a77f6da9981742057e736c58e51 +size 522213 diff --git a/vlm/train/SyWvgP5el/5.png b/vlm/train/SyWvgP5el/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a79a3537ed01a6a52415db484d245f0b24c9b5 --- /dev/null +++ b/vlm/train/SyWvgP5el/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b5283eab366b8fc3f554dde523023a1884bf00da75f6eca5967de5bb506628 +size 520587 diff --git a/vlm/train/SyWvgP5el/6.png b/vlm/train/SyWvgP5el/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9a055c342ddace042b505105f85c080390bd1e64 --- /dev/null +++ b/vlm/train/SyWvgP5el/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cced5cbec6069faa0655a7d63bffa35282d0bbace15c9e6e932f4f8c599b8fc +size 500798 diff --git a/vlm/train/SyWvgP5el/7.png b/vlm/train/SyWvgP5el/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca20700bf8a1f8f255d89d0c91d50df6345a0fc --- /dev/null +++ b/vlm/train/SyWvgP5el/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2252b791ceb66e37a60688de42e0a7d050de50d3b5e4887414aa8871ee684f0d +size 616744 diff --git a/vlm/train/SyWvgP5el/8.png b/vlm/train/SyWvgP5el/8.png new file mode 100644 index 0000000000000000000000000000000000000000..08cc063e7b590fe33e63027f5e18e9da7e7b7bfd --- /dev/null +++ b/vlm/train/SyWvgP5el/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ba34cc8a5e2aa8261ced048f5fff0e29d0e1831f7305972044196ec5be17d0 +size 486457 diff --git a/vlm/train/SyWvgP5el/9.png b/vlm/train/SyWvgP5el/9.png new file mode 100644 index 0000000000000000000000000000000000000000..57aba6c01d4b10fa80557936534746ce61930c21 --- /dev/null +++ b/vlm/train/SyWvgP5el/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f89492c7ea80f8c96ee14d1e2e36acba329eec9a8bc6221784a4cbb59f2ecf +size 519241 diff --git a/vlm/train/Syejj0NYvr/0.png b/vlm/train/Syejj0NYvr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9139b4fd987ee1a488a0448f1aae574c65146b7a --- /dev/null +++ b/vlm/train/Syejj0NYvr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b413223b9a073e40dc7e766ec20b7f54fff8075c3314b1fa6d0ab5a8e87cc5f +size 542961 diff --git a/vlm/train/Syejj0NYvr/1.png b/vlm/train/Syejj0NYvr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..59869834bdbad6e26eb50c0e5a80571c27add948 --- /dev/null +++ b/vlm/train/Syejj0NYvr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc05aea0ed33a75d75f1d3ffd3911d7d56f483d738a0a54c5a5b1d5a1c3fde1 +size 638010 diff --git a/vlm/train/Syejj0NYvr/10.png b/vlm/train/Syejj0NYvr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..58b05720c349adae29c0585c465250779032e54d --- /dev/null +++ b/vlm/train/Syejj0NYvr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa0318948d585ada653d975fbea9a2b350600f096fe4d6c94f44a88524f697d +size 567785 diff --git a/vlm/train/Syejj0NYvr/11.png b/vlm/train/Syejj0NYvr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5b60b12ca1873b95ab8b63450db85b746540d5ca --- /dev/null +++ b/vlm/train/Syejj0NYvr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6916e89f9c524f91305aaf4e85990609372d6c1aae287367a2748fe5aa4d7c54 +size 526040 diff --git a/vlm/train/Syejj0NYvr/12.png b/vlm/train/Syejj0NYvr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..718b45833bb9b147a90ad4646431a4b6b7e8c2a3 --- /dev/null +++ b/vlm/train/Syejj0NYvr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f8a3e8f6d5bcd56b21f73d1b28dd02df112f6d50c54cb168b9bb0646b61c65 +size 481261 diff --git a/vlm/train/Syejj0NYvr/13.png b/vlm/train/Syejj0NYvr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c6996291d02ddd13869d712fe8ce98048bec83 --- /dev/null +++ b/vlm/train/Syejj0NYvr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c750b210360ac4efdee7138e378a7e6b4a7a3e5e729dc4260368f61c904f412 +size 349990 diff --git a/vlm/train/Syejj0NYvr/14.png b/vlm/train/Syejj0NYvr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..7f80d9ce52d9444961be07f09c7a2f60c51b912c --- /dev/null +++ b/vlm/train/Syejj0NYvr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9864b3b9a8d0abcd8716183502fee2867be864410642688d3025c3a83845dc3 +size 417442 diff --git a/vlm/train/Syejj0NYvr/15.png b/vlm/train/Syejj0NYvr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..280e2b18c0c49cf5a34ff57ef637747dd0cd526a --- /dev/null +++ b/vlm/train/Syejj0NYvr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc8fcc4b9b4405a288c1f80671af837309f92d245194134345218114c2efdf3 +size 497952 diff --git a/vlm/train/Syejj0NYvr/16.png b/vlm/train/Syejj0NYvr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..ae4b9d6f499c9ca9bd7eeaf4054b61537d17253b --- /dev/null +++ b/vlm/train/Syejj0NYvr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a971348c2c27a80d35667095b799a07abc6673d1f429f65153e23f2391fdc75e +size 451031 diff --git a/vlm/train/Syejj0NYvr/17.png b/vlm/train/Syejj0NYvr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..fd48aab36e805ea4ac10c47d4fa7acf5b70d884b --- /dev/null +++ b/vlm/train/Syejj0NYvr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0e496942904d8bf938069dd820ec6f23b090bb68aa0bc104c1f39563b7438c +size 494942 diff --git a/vlm/train/Syejj0NYvr/2.png b/vlm/train/Syejj0NYvr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9de168356ec79a97b0ab18ff030257054ec63eb --- /dev/null +++ b/vlm/train/Syejj0NYvr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcdbaa9c1d24dd2d938284a973f905cf74645854f609a4edbc10a9613ea3a2a2 +size 613458 diff --git a/vlm/train/Syejj0NYvr/3.png b/vlm/train/Syejj0NYvr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea7b6aa7da26ac10f74366af5454cd015fc169f --- /dev/null +++ b/vlm/train/Syejj0NYvr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da49940b55e998889b400a65a780315f6e3a0bbda2941cb08dabc63e8a5f5bc +size 454968 diff --git a/vlm/train/Syejj0NYvr/4.png b/vlm/train/Syejj0NYvr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..71570d9f1c62d76dc2d7b4b0eab2fc3609cadda8 --- /dev/null +++ b/vlm/train/Syejj0NYvr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f3db7580b4be86877ea5df59965a99d86f32d9f7ced94eccaa63f00f81ce91 +size 650798 diff --git a/vlm/train/Syejj0NYvr/5.png b/vlm/train/Syejj0NYvr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..68f7a75319baf403966256b63da9fcf2b13599cc --- /dev/null +++ b/vlm/train/Syejj0NYvr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15edf745aa2fc1e3ccd355ce8ab91a67c7ce56b003788e53c303ae38df0e3a50 +size 651509 diff --git a/vlm/train/Syejj0NYvr/6.png b/vlm/train/Syejj0NYvr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..165304ad70388c8661308e233fd9e45e568e9f6f --- /dev/null +++ b/vlm/train/Syejj0NYvr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42234a6be5fdb9a294de984ce83502347ab1f55528cc3fbd9d895daeca249069 +size 605371 diff --git a/vlm/train/Syejj0NYvr/7.png b/vlm/train/Syejj0NYvr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..54628861a4cc961e2f6a81d8da0e6ea9462de127 --- /dev/null +++ b/vlm/train/Syejj0NYvr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b45d02e775f8dffd052d4f77f78bd4856e5267769b063fef126f8d4ad83b5a +size 704928 diff --git a/vlm/train/Syejj0NYvr/8.png b/vlm/train/Syejj0NYvr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c47b44f4efc381e4a263201b42f4729a47fcb91d --- /dev/null +++ b/vlm/train/Syejj0NYvr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7c46ca79ed13b2eb3c8c736a57bb0e31af1e6d1b75407d39b9666f4416029b +size 628590 diff --git a/vlm/train/Syejj0NYvr/9.png b/vlm/train/Syejj0NYvr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ae577f107723da279169af2fabbe3b71116e1b95 --- /dev/null +++ b/vlm/train/Syejj0NYvr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0333451f7bdbc7eb28cefea8da1d91bc08af9aa04254276059ba8bf7eace5626 +size 513829 diff --git a/vlm/train/SyxeqhP9ll/0.png b/vlm/train/SyxeqhP9ll/0.png new file mode 100644 index 0000000000000000000000000000000000000000..db5d43b083b403874da620b150e7cd59778efe60 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45774cea22ad5574987f1fcf0f7c2cb66bcf2ec3c1552f9777b6f890ee28c15d +size 498300 diff --git a/vlm/train/SyxeqhP9ll/1.png b/vlm/train/SyxeqhP9ll/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d3058f8403d474ef767305ac41227553861a843e --- /dev/null +++ b/vlm/train/SyxeqhP9ll/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa6465da73f628e67a6ba8b4a7d51892ea0e2e059bda5eb6c189c05e05fa592 +size 523538 diff --git a/vlm/train/SyxeqhP9ll/10.png b/vlm/train/SyxeqhP9ll/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b85a922f1d8115fb994528e508694cac58fbaa78 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1516c18bdb84e7524516eb54815675aa4ca9424eada77b923f8fb78c57c8e1a +size 449031 diff --git a/vlm/train/SyxeqhP9ll/11.png b/vlm/train/SyxeqhP9ll/11.png new file mode 100644 index 0000000000000000000000000000000000000000..627d93041fd3198a0d0ed9b38310d42d2bdbbf6b --- /dev/null +++ b/vlm/train/SyxeqhP9ll/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33d13115ac6e0d0abd7d963a6125b98bccf374dec98fe4dddb2ddc486ee3f73a +size 414369 diff --git a/vlm/train/SyxeqhP9ll/12.png b/vlm/train/SyxeqhP9ll/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb76908b95d699a1f303b5cce7dc0ba6733a82d --- /dev/null +++ b/vlm/train/SyxeqhP9ll/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cdff81ee30447856399aa966b5bdcdea2d6718ed42de7219c7ae1271be16bd7 +size 468857 diff --git a/vlm/train/SyxeqhP9ll/13.png b/vlm/train/SyxeqhP9ll/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0749622d54062ad4fca6cb431e4cd355a6312c38 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e3885cb412ab5d418186352872bb3eb75a9a3f1fcb7cb6e59ebc44a23442d1 +size 509668 diff --git a/vlm/train/SyxeqhP9ll/14.png b/vlm/train/SyxeqhP9ll/14.png new file mode 100644 index 0000000000000000000000000000000000000000..278d9adb40e2cdcebe9995913a67a3ed6b1dd9b3 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb6fe3870224e177c713d3d010a78161dfedecc3e093daa50152825f45894ab +size 760049 diff --git a/vlm/train/SyxeqhP9ll/15.png b/vlm/train/SyxeqhP9ll/15.png new file mode 100644 index 0000000000000000000000000000000000000000..fca457584390ade9f1437e36764192024c2a9e61 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7101fd17e7647695223830aaf3e01aacf49cb84d485935ba2b2590b8985ba6c +size 463907 diff --git a/vlm/train/SyxeqhP9ll/16.png b/vlm/train/SyxeqhP9ll/16.png new file mode 100644 index 0000000000000000000000000000000000000000..357715292100329e6ff14c5a65462b93ed4f92c4 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424b1bbc7ea8300ea1db5a1b49f77f3a0d98b11366fb480745882e33fc78a8bf +size 703579 diff --git a/vlm/train/SyxeqhP9ll/2.png b/vlm/train/SyxeqhP9ll/2.png new file mode 100644 index 0000000000000000000000000000000000000000..13efa71bd7719e89f6b151cbe50022b3f8af5740 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964cd470268dc2424d201ac5e896aa048006ca3b4f3145dba2a8e8797acb547d +size 494925 diff --git a/vlm/train/SyxeqhP9ll/3.png b/vlm/train/SyxeqhP9ll/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c2a1636d6364e702a280bbb1d4e2eac72223d5a7 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368d5ad7f9b8c98840c484f1469354e438d6ccfee227e252e10e0a681b30e0fe +size 548099 diff --git a/vlm/train/SyxeqhP9ll/4.png b/vlm/train/SyxeqhP9ll/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a59fcfcfc0366780a88b6752eda8187cd12ce710 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c5a1400f6cda0148355976795e1cef0c6c7f9e553afa1eefbdf898b0f9e2b6 +size 540634 diff --git a/vlm/train/SyxeqhP9ll/5.png b/vlm/train/SyxeqhP9ll/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d245e244528c3c5c8311b6b7b5c51146ffa0dbf --- /dev/null +++ b/vlm/train/SyxeqhP9ll/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd1802882814305efed7fe811683eed97a9a37379043808277fd75c33f850e9 +size 459296 diff --git a/vlm/train/SyxeqhP9ll/6.png b/vlm/train/SyxeqhP9ll/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3bbbed92f2f31544159f388ac52d79da6754dee1 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12472612c390075a05150c5597753fd5385e30bc66a52fa8e4fbf0b2c0f01fa8 +size 636905 diff --git a/vlm/train/SyxeqhP9ll/7.png b/vlm/train/SyxeqhP9ll/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f5d20ba2154822b81caf8a7a1a500bfc1c6f125d --- /dev/null +++ b/vlm/train/SyxeqhP9ll/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b497318d61e1c3bef57415e76c74a29db06f588fe574a9911313b4fc8eb5ac +size 943347 diff --git a/vlm/train/SyxeqhP9ll/8.png b/vlm/train/SyxeqhP9ll/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3b433e52c6ddc57bda5bf0af1a66b90696def2 --- /dev/null +++ b/vlm/train/SyxeqhP9ll/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e047fda09dd8d291cc3fb356639d35c7c9c7324dea31b30c70618df0a5295f27 +size 418683 diff --git a/vlm/train/SyxeqhP9ll/9.png b/vlm/train/SyxeqhP9ll/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d0045f450ef648e155392f5fb25cfb7c22688f4a --- /dev/null +++ b/vlm/train/SyxeqhP9ll/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d519f5ccf4681d28a3ed40696509e8668d332e772b7687f81895ab542f3da0 +size 1263957 diff --git a/vlm/train/WL7pr00_fnJ/0.png b/vlm/train/WL7pr00_fnJ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c9d089f307288ed0122ca9b7289e798aa615bb1a --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfa04c1cef8b936b38e5340222d101283fa9a6ed67392227239f08ef04af4720 +size 426152 diff --git a/vlm/train/WL7pr00_fnJ/1.png b/vlm/train/WL7pr00_fnJ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7afcaf8cac49713356ac72bff4fe98c041905298 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e7c6a18a24536e928a1dd34806e8822df32ab71b5fe97d3b3922b670c3dbf4 +size 551443 diff --git a/vlm/train/WL7pr00_fnJ/10.png b/vlm/train/WL7pr00_fnJ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f866a8114f52b5186f387694fa41d0a701352d0d --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e40353abe61221636a7e8341141dd355de29b90de82edd516a683be7c0d49ca +size 563187 diff --git a/vlm/train/WL7pr00_fnJ/11.png b/vlm/train/WL7pr00_fnJ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a725227524a9e6e4923333e4a516b6bb7bae352e --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd420487ae97415e9c7202d72cf95af549bd1b08b79ca267b828e44b37f43da +size 593269 diff --git a/vlm/train/WL7pr00_fnJ/2.png b/vlm/train/WL7pr00_fnJ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..11a10cd0fdeadd74b5a025775d7c49219381bc94 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4191313e62641c97f79535b4e1716ae5c5d570210c9cce3f93e1e5f23b8655 +size 579234 diff --git a/vlm/train/WL7pr00_fnJ/3.png b/vlm/train/WL7pr00_fnJ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..47d6d252274c79d600796b72f7e7eea02fe676d8 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3850367e93ab1909dbb4591c91bbd656aeeb4b5ca22d5a59afe3dff9e03996ba +size 556677 diff --git a/vlm/train/WL7pr00_fnJ/4.png b/vlm/train/WL7pr00_fnJ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ed4b24737ed9c9ea1c15c9212a1a8071e2452b --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d9530c433976bade12c507e85bd1d77b4c72582872af40838c69c42de81fc2 +size 624705 diff --git a/vlm/train/WL7pr00_fnJ/5.png b/vlm/train/WL7pr00_fnJ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..92b7696f857bb5ff17d4f0dfa1313e14d6991131 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c83b3d69cb15dab0e56eb3947bbfabf131c6343bae1b154f4107b48bc97fa1 +size 586086 diff --git a/vlm/train/WL7pr00_fnJ/6.png b/vlm/train/WL7pr00_fnJ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d3569a48479e5f9b09a95dc0847f4fa9c8d7e63f --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7ccb0378e79f7446a858d5d8f683747ea8f67f98862c9fde66437d3e74b36f +size 837398 diff --git a/vlm/train/WL7pr00_fnJ/7.png b/vlm/train/WL7pr00_fnJ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2f19415c808c36ce21f11bdf213c0eea27ce33 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dae78e4d79d7273696bf4c1e638a46a500940d938725fd57407b7fbbd115389 +size 709204 diff --git a/vlm/train/WL7pr00_fnJ/8.png b/vlm/train/WL7pr00_fnJ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..342fa33ac756b9c41b072d6c465a3bee164c5de7 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2b174abd9616c42372e1400048ac07e0835b82d54bedcdccefde176beb59fe +size 554654 diff --git a/vlm/train/WL7pr00_fnJ/9.png b/vlm/train/WL7pr00_fnJ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8918e55faf3be0a0174cca9aafeda0a225cda8 --- /dev/null +++ b/vlm/train/WL7pr00_fnJ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06b6dcdc0181af2eb46fc5a42c162c0a4ca69b4693162f394c3c3c495730559 +size 520600 diff --git a/vlm/train/YWtLZvLmud7/0.png b/vlm/train/YWtLZvLmud7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..34cd7668b6c327476d2b182ded0525fc2bbfcee0 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc5aafd24cd78e857e196377cd68be75dddad739559cd5c1827282a498343a6 +size 506210 diff --git a/vlm/train/YWtLZvLmud7/1.png b/vlm/train/YWtLZvLmud7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2a03b39b49ea713d2d4709d538a65fc65dc496a3 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8076610586215b17c21b250a44fa14e6a28eac1a565ff35122922695646d42b2 +size 730232 diff --git a/vlm/train/YWtLZvLmud7/10.png b/vlm/train/YWtLZvLmud7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2902691657d828e1f70c730068048dac5cbe9b9c --- /dev/null +++ b/vlm/train/YWtLZvLmud7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a029bf509a6cc7fd075738b50c5950c384d93dfc789129aa56409eb01df2078 +size 590792 diff --git a/vlm/train/YWtLZvLmud7/11.png b/vlm/train/YWtLZvLmud7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1f4db7f0d5a183ae247024879760ac011e55ab41 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef125314eaef23cc84b29097bc7203176e85b1d97698beec382d4bab49745f4 +size 638635 diff --git a/vlm/train/YWtLZvLmud7/12.png b/vlm/train/YWtLZvLmud7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..106298aae7822718d6888c8f4c25a653172dc8c5 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4c13d4ef7eb9465d0b18fb5c8910196f3e39078413d9e7285607bd773c39b7 +size 629738 diff --git a/vlm/train/YWtLZvLmud7/13.png b/vlm/train/YWtLZvLmud7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..abcc8f0d3b7676e4085331b365f4afb4f831fd03 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9836eb5ce479cbfbebfa217899b7cd90274990e9a374ebeb30f2c68cd035b7a +size 148174 diff --git a/vlm/train/YWtLZvLmud7/14.png b/vlm/train/YWtLZvLmud7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1bdbf9fb524608db550d0dcf84ee7c7f2d5e54a6 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc615b02e2581a1f5eeb34fade7033a3dacca879e17920b7e1c9d83b9b01ea3 +size 454682 diff --git a/vlm/train/YWtLZvLmud7/15.png b/vlm/train/YWtLZvLmud7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..04bd3d95b09147282ee487673dfb84ad630eaa3a --- /dev/null +++ b/vlm/train/YWtLZvLmud7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43511f6b5ba1bffdf41ab04712313180490ed6f64228f5dbb4480a3b51343365 +size 535573 diff --git a/vlm/train/YWtLZvLmud7/16.png b/vlm/train/YWtLZvLmud7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f39913620ec71159663010dae739760f9c0d64fa --- /dev/null +++ b/vlm/train/YWtLZvLmud7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b70bdac1539cd7d51c2324d3a0f714024c8baf96806a05b4d4ab789cbde8cf +size 397874 diff --git a/vlm/train/YWtLZvLmud7/17.png b/vlm/train/YWtLZvLmud7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6aa0117d5cae6a194868ac06bf83233864301302 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07b17c83ba07f5d4a6ea64e7582f2eb92d784dd5ce81e8b6725e00049a26cab +size 291895 diff --git a/vlm/train/YWtLZvLmud7/18.png b/vlm/train/YWtLZvLmud7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..3bed2b044b41269620adfa105015ba63d71c5b59 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb5f92ba21b7e0694b263f0d8e0d415ddabc37df45c529727fdd8a1c826ff53 +size 258278 diff --git a/vlm/train/YWtLZvLmud7/19.png b/vlm/train/YWtLZvLmud7/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4aaabf4087e2e19616063b6339ab1b1caded8ab4 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5961d12eec315f1cfadd829256d6afd54d0c3493bb3e9bf9eb4972fb2d1e42a1 +size 266630 diff --git a/vlm/train/YWtLZvLmud7/2.png b/vlm/train/YWtLZvLmud7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4f78387f47cb9a9ce5c465ded34466ee4f66e228 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c035da0d49cbc15096dc7c9bf59f8235a05fbf8831b8483381ee120cebcfda0 +size 628930 diff --git a/vlm/train/YWtLZvLmud7/20.png b/vlm/train/YWtLZvLmud7/20.png new file mode 100644 index 0000000000000000000000000000000000000000..48af02584c7656000b616f9c24094ae008964f9b --- /dev/null +++ b/vlm/train/YWtLZvLmud7/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55cbd81bd5242cb90bfac6e7c46d53538073f8e7865fd7171d8e9113fdf83ec9 +size 163387 diff --git a/vlm/train/YWtLZvLmud7/21.png b/vlm/train/YWtLZvLmud7/21.png new file mode 100644 index 0000000000000000000000000000000000000000..01ee1b73765638b1d11f001820de5fdd5499b843 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b506798f5ac541fe44a5614cfcef0454fc6faf3cb958c28f315a4e962b5af837 +size 250916 diff --git a/vlm/train/YWtLZvLmud7/22.png b/vlm/train/YWtLZvLmud7/22.png new file mode 100644 index 0000000000000000000000000000000000000000..5af95d5127e5bc155f674ed7dc2e91fd70aa5433 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff667a06fd0be0812e9e590781b261a58921fd82e01b33c20a3b9f8c6e65649a +size 206668 diff --git a/vlm/train/YWtLZvLmud7/23.png b/vlm/train/YWtLZvLmud7/23.png new file mode 100644 index 0000000000000000000000000000000000000000..25e0094df51a66718d3985a09a4f878c46d6a8f8 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fb5e98a01df3131935922d0d5a7a0c4efa0b4a2fb84218cef61b56b1c50429 +size 317775 diff --git a/vlm/train/YWtLZvLmud7/3.png b/vlm/train/YWtLZvLmud7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..91d21af4134bcf0484fae1407b6a275e82ad9476 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f89a4aaabd0ac4216e17abb8da51807bfeebc47dd0aeeb2189405ec7524b0f +size 494944 diff --git a/vlm/train/YWtLZvLmud7/4.png b/vlm/train/YWtLZvLmud7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d47ec51c169ced12ee7323d3645735fad8242154 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c2ce74045e7381a11e409c9cacd3309f739af5399c043472040b9fddaeefdd +size 510019 diff --git a/vlm/train/YWtLZvLmud7/5.png b/vlm/train/YWtLZvLmud7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fb816671e06e33667a9721395d44b36fabdb229f --- /dev/null +++ b/vlm/train/YWtLZvLmud7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7977bf44e639571045ccae14a1ecc1d8678a6393d4db90f319f41b4fcc18ad4 +size 494150 diff --git a/vlm/train/YWtLZvLmud7/6.png b/vlm/train/YWtLZvLmud7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2a87ff38ccbd0739c199072c585d5bb5791731 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cb0e99302d1ce17c8775dd5b00baaa054c3d54c91ab571bf58e5bbbd129131 +size 461248 diff --git a/vlm/train/YWtLZvLmud7/7.png b/vlm/train/YWtLZvLmud7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bcabb88d7b2f07c64824750c19421887b871a178 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a58bd5761486be94f73c36ee6e6d60463ac971d3cfe01e2bd50ceec5719abd1 +size 609222 diff --git a/vlm/train/YWtLZvLmud7/8.png b/vlm/train/YWtLZvLmud7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..495365514e6e5a31e3d08ebf469a019b0d88ec4a --- /dev/null +++ b/vlm/train/YWtLZvLmud7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65082696bde46b0c65b19e5eb6af4393a1666d600b55983154428446637b247e +size 477474 diff --git a/vlm/train/YWtLZvLmud7/9.png b/vlm/train/YWtLZvLmud7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..109120fa5325836d41c1b8ecf160c3311b7a93b4 --- /dev/null +++ b/vlm/train/YWtLZvLmud7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4abc1aa3624a270984ad1fb7db043da74bae762dcc163ed81cd665e0bea224 +size 632477 diff --git a/vlm/train/auGY2UQfhSu/0.png b/vlm/train/auGY2UQfhSu/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5e96b4304e007d36c2b189477e7bd266c4c99830 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10e7f4d65f25006fcaac74a3dc9746d355cddb4158eca76dd1458e30cee6bb9 +size 420196 diff --git a/vlm/train/auGY2UQfhSu/1.png b/vlm/train/auGY2UQfhSu/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3b071ce0e429cbdc1976a495e6ea276775c264e1 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956cfed5cd31993ed50fc9da571d8cf635c5da8b196fd46e9458d8e05391470e +size 524339 diff --git a/vlm/train/auGY2UQfhSu/10.png b/vlm/train/auGY2UQfhSu/10.png new file mode 100644 index 0000000000000000000000000000000000000000..397b8d5d8bc0bef2479c9c544175146a0b44e1eb --- /dev/null +++ b/vlm/train/auGY2UQfhSu/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f020c3c3a087373d61de037e4fe5a62c589f50993848d1c619770cbac40716aa +size 554853 diff --git a/vlm/train/auGY2UQfhSu/11.png b/vlm/train/auGY2UQfhSu/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ea3b4a6fb1617777926b793e774ed3fa529e7b97 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd28106ca92c81462fc5bbe8b1b9f4d5859a4791c9292d64ff8ddac9d313c59 +size 581665 diff --git a/vlm/train/auGY2UQfhSu/12.png b/vlm/train/auGY2UQfhSu/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7fc8a3894cdca3b15e1b93832b0b5672bf930f59 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993f0a7a4b341029ae9a1927dafe4b36cb82ee423af6b19d050d0dc0360dd685 +size 556577 diff --git a/vlm/train/auGY2UQfhSu/13.png b/vlm/train/auGY2UQfhSu/13.png new file mode 100644 index 0000000000000000000000000000000000000000..171b8fe3bc432dd2d7689a475c0bd95aecb26adf --- /dev/null +++ b/vlm/train/auGY2UQfhSu/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86cd3cab22fe67e0c9c639c79775a221299fe04639448575747678d3d51f3dfc +size 453729 diff --git a/vlm/train/auGY2UQfhSu/2.png b/vlm/train/auGY2UQfhSu/2.png new file mode 100644 index 0000000000000000000000000000000000000000..611edb3ae934f8a4ba1340fef152d9dc7eafacb2 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6dc6df6cfeed4372375c39d208506ac62267ec45c4e7da9d6da7ac459c6e06 +size 681657 diff --git a/vlm/train/auGY2UQfhSu/3.png b/vlm/train/auGY2UQfhSu/3.png new file mode 100644 index 0000000000000000000000000000000000000000..00c4db9b8ca94a74a82bed3e912920a1a49493f7 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccad527d842b4f49ed933ef1e1cb29f24913dd08e2030ab56cb33386a5a9ca8 +size 533853 diff --git a/vlm/train/auGY2UQfhSu/4.png b/vlm/train/auGY2UQfhSu/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8ebaf1dd9a34d51bdd2816b670717aac41d0e1cd --- /dev/null +++ b/vlm/train/auGY2UQfhSu/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4477ab09a3cf48a648c3e8e02ba14e4b0b0969013a76d8c60b072746b87cfb60 +size 502208 diff --git a/vlm/train/auGY2UQfhSu/5.png b/vlm/train/auGY2UQfhSu/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0afe7cdc3ce852a1c535bc84b9912d305c286c78 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f588ea7a20288f4fbab150edcf05e9ceeeb90be614317efc535bfc8c25b399be +size 461841 diff --git a/vlm/train/auGY2UQfhSu/6.png b/vlm/train/auGY2UQfhSu/6.png new file mode 100644 index 0000000000000000000000000000000000000000..09edc77f9c59e0ad684a73f59a3581dae42b4e68 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65091cb372b561fce1d1b8bde0f66288f91a528e118b3f9421aee071650cacbd +size 436220 diff --git a/vlm/train/auGY2UQfhSu/7.png b/vlm/train/auGY2UQfhSu/7.png new file mode 100644 index 0000000000000000000000000000000000000000..521ee992b1cadcabc3967480f2ebbfdc2bf9500b --- /dev/null +++ b/vlm/train/auGY2UQfhSu/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12227d58c83cd54e10f67fe1ca1f22435109742ad37947d352d614521b60ef34 +size 513540 diff --git a/vlm/train/auGY2UQfhSu/8.png b/vlm/train/auGY2UQfhSu/8.png new file mode 100644 index 0000000000000000000000000000000000000000..806cc0466cd4d616a4b58b7b516c5262137e3caf --- /dev/null +++ b/vlm/train/auGY2UQfhSu/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65353759243bfe963ef09b5674f68cd196a798f5ab9bc4414b61cd48c9447c4a +size 558487 diff --git a/vlm/train/auGY2UQfhSu/9.png b/vlm/train/auGY2UQfhSu/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0373686cc2bc4c79c6d2c623b289303f35759729 --- /dev/null +++ b/vlm/train/auGY2UQfhSu/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752910dfc830dcc9257f20f4865a814e4275b3df4d83e969d80148041dfd7cf2 +size 581249 diff --git a/vlm/train/bXehDYUjjXi/0.png b/vlm/train/bXehDYUjjXi/0.png new file mode 100644 index 0000000000000000000000000000000000000000..85d2dcfe532c4032a30f52612c23447558c8b1d4 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d773039c2f4d3f9b2c50c4811dffea39843555e96b312354137ae8c7c91bc8ff +size 439835 diff --git a/vlm/train/bXehDYUjjXi/1.png b/vlm/train/bXehDYUjjXi/1.png new file mode 100644 index 0000000000000000000000000000000000000000..001a41766fdb41a8d3cde32b8507d26064d873b6 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9876bcb9a1275b48b2d74b534c4f1f81539f1bcd27e6d9be439cb4055ceb590c +size 682930 diff --git a/vlm/train/bXehDYUjjXi/10.png b/vlm/train/bXehDYUjjXi/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3138a218aa22fc716d6b51ce27b2439bb8a38882 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452a5b1e400ed6dad8f4e1d54c945d2a33c3fecb58c58c413f3c6ae658d3d1a3 +size 519079 diff --git a/vlm/train/bXehDYUjjXi/11.png b/vlm/train/bXehDYUjjXi/11.png new file mode 100644 index 0000000000000000000000000000000000000000..711468a0e704db4547e8daeb4ed2a2455978892e --- /dev/null +++ b/vlm/train/bXehDYUjjXi/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b24cdc17c1c7396aad3cea1b1ddbfc17b988d3b62cab0c40b127c1bbed1457 +size 502698 diff --git a/vlm/train/bXehDYUjjXi/12.png b/vlm/train/bXehDYUjjXi/12.png new file mode 100644 index 0000000000000000000000000000000000000000..12db3bd80862227d0b577c5dfc1b04c88f906052 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce48e40f0dc17f64b8e75104b8f243ea2c165ae0dc2edd82f60a925bb556277 +size 520713 diff --git a/vlm/train/bXehDYUjjXi/13.png b/vlm/train/bXehDYUjjXi/13.png new file mode 100644 index 0000000000000000000000000000000000000000..51ab4387b8b22f2bae2eff9bc5d741623690cebc --- /dev/null +++ b/vlm/train/bXehDYUjjXi/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e8a55bee686ca83149f936945d57c347935cfcf374c7857767133cb26a3a5e +size 62384 diff --git a/vlm/train/bXehDYUjjXi/2.png b/vlm/train/bXehDYUjjXi/2.png new file mode 100644 index 0000000000000000000000000000000000000000..05b8a8251d1b727841db596f1f2b6abc21f78133 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38e676a35d21681e3cfb48f9883066eed9605e35015fb6ae46a5b109d258c6a +size 479243 diff --git a/vlm/train/bXehDYUjjXi/3.png b/vlm/train/bXehDYUjjXi/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b60bb04f10772eef6393aabf0cc2e34bd7d4f3c8 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4621cb27d8d295bacdd0159520cda65ef6bc2bad017a5a8ccbabb4e55d50a51 +size 477320 diff --git a/vlm/train/bXehDYUjjXi/4.png b/vlm/train/bXehDYUjjXi/4.png new file mode 100644 index 0000000000000000000000000000000000000000..48bc95e24884d3e25b9422fd8ed63862c118c91f --- /dev/null +++ b/vlm/train/bXehDYUjjXi/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb06c646fe8cd10e0d1083f40684090bd17142b9697d0545db4a695c295e8334 +size 478379 diff --git a/vlm/train/bXehDYUjjXi/5.png b/vlm/train/bXehDYUjjXi/5.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf70c763f0498fe734e67f440905eeae5824e91 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1eb02d7c4f6548d60ba5f14c69377e538d6723c1d60469ccd7cafa793aaa06 +size 493697 diff --git a/vlm/train/bXehDYUjjXi/6.png b/vlm/train/bXehDYUjjXi/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f148f6398fecce39fe512feb50a4dc9481eca80b --- /dev/null +++ b/vlm/train/bXehDYUjjXi/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802d31c7291e3268fbc7031ab8ef75969607e784a84a270e6ff82aaa00ec01e5 +size 497673 diff --git a/vlm/train/bXehDYUjjXi/7.png b/vlm/train/bXehDYUjjXi/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bb86b11d38ac6aff578ae6a719f85c4e4a3b6e70 --- /dev/null +++ b/vlm/train/bXehDYUjjXi/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788e9fa75baa5a2354dc7e078a522d77e4ea7a65d809ca096e77c12cc995e2c7 +size 573520 diff --git a/vlm/train/bXehDYUjjXi/8.png b/vlm/train/bXehDYUjjXi/8.png new file mode 100644 index 0000000000000000000000000000000000000000..01f6f89194094136f3da9e9706e681714e8811bb --- /dev/null +++ b/vlm/train/bXehDYUjjXi/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f118318225c73ce0c40ec2cdb30f7b0cac2a8f2420df55788c354c70a980e8ad +size 556694 diff --git a/vlm/train/bXehDYUjjXi/9.png b/vlm/train/bXehDYUjjXi/9.png new file mode 100644 index 0000000000000000000000000000000000000000..139daf4d3eefd9e088bf5dd73ef2030d7aa6a58a --- /dev/null +++ b/vlm/train/bXehDYUjjXi/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f2400fc4a5545428a9f40911157ab00720a6e35297296174aa799acca8f09e7 +size 620837 diff --git a/vlm/train/bm1_qlhRegf/0.png b/vlm/train/bm1_qlhRegf/0.png new file mode 100644 index 0000000000000000000000000000000000000000..728bdf5e8cc9e5c42d54f811abedffe5444edcce --- /dev/null +++ b/vlm/train/bm1_qlhRegf/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de188b38c8dd4323d093cfdbdf5381605a1bf304885ea0daa9d07bfd5963552 +size 486844 diff --git a/vlm/train/bm1_qlhRegf/1.png b/vlm/train/bm1_qlhRegf/1.png new file mode 100644 index 0000000000000000000000000000000000000000..48026861adde5c960dafec891fef763a57ef1fbf --- /dev/null +++ b/vlm/train/bm1_qlhRegf/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ba728013dda78c558bbe2b8f46a67179092e95a274baa23458a09b1195e7bb +size 711493 diff --git a/vlm/train/bm1_qlhRegf/10.png b/vlm/train/bm1_qlhRegf/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3dbf114e9bac6f304b4be1a80e0c00ae9b2fa4 --- /dev/null +++ b/vlm/train/bm1_qlhRegf/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3c3bf73a8f1a57c0b0eea6da903731097462ab7d0de979aa7c31e1b5966af9 +size 236222 diff --git a/vlm/train/bm1_qlhRegf/11.png b/vlm/train/bm1_qlhRegf/11.png new file mode 100644 index 0000000000000000000000000000000000000000..84679c6f1083f0cbc7b22a67bee9876f6a223d8b --- /dev/null +++ b/vlm/train/bm1_qlhRegf/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3317cfe06d0898de3cba4683260f2f9f726d80e6ba24f3e1d8d53a0151b0363 +size 385076 diff --git a/vlm/train/bm1_qlhRegf/2.png b/vlm/train/bm1_qlhRegf/2.png new file mode 100644 index 0000000000000000000000000000000000000000..555d9d9be50625614c5a42a0f98923c969d0b604 --- /dev/null +++ b/vlm/train/bm1_qlhRegf/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e9c3be0d170b7caaad3e501db277f400b0a21bb0d1d613231b3bdd2b693422 +size 481324 diff --git a/vlm/train/bm1_qlhRegf/3.png b/vlm/train/bm1_qlhRegf/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2b9f1c0afaaf38ebdf531a0dfd0161e4701c1eb6 --- /dev/null +++ b/vlm/train/bm1_qlhRegf/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e772fb13467547ce55c1b7b10d40b992a139c01ac7fbf6b845deeff5a5de459f +size 527477 diff --git a/vlm/train/bm1_qlhRegf/4.png b/vlm/train/bm1_qlhRegf/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e7df309311d4081deb1f7b316fe1dfc7c4287a53 --- /dev/null +++ b/vlm/train/bm1_qlhRegf/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3d3cec39b0c2bda3bc737d2de05bb5e7674522d534b60ccb3073e5605cbb69 +size 552772 diff --git a/vlm/train/bm1_qlhRegf/5.png b/vlm/train/bm1_qlhRegf/5.png new file mode 100644 index 0000000000000000000000000000000000000000..47e4813d8a677bdf22672429bc09bce763710aeb --- /dev/null +++ b/vlm/train/bm1_qlhRegf/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a0b4d9871d4fea93e0200c51b3c464e00930874f381e53e69e73139ca7cdf7 +size 616456 diff --git a/vlm/train/bm1_qlhRegf/6.png b/vlm/train/bm1_qlhRegf/6.png new file mode 100644 index 0000000000000000000000000000000000000000..06ee845c5c7a00a8c8374e383278bfc551263fba --- /dev/null +++ b/vlm/train/bm1_qlhRegf/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0ec662ae5ea1395d9b07dc1e289f74c5b5adebda84416aba2818a8c3535a6d +size 638805 diff --git a/vlm/train/bm1_qlhRegf/7.png b/vlm/train/bm1_qlhRegf/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a330a4876d906c34fe12ccbc6251fbe20fef1177 --- /dev/null +++ b/vlm/train/bm1_qlhRegf/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e7d355b847d7433d89806f087d711fd001b6cfe7f7f0d6c34c42c98887e399 +size 536307 diff --git a/vlm/train/bm1_qlhRegf/8.png b/vlm/train/bm1_qlhRegf/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a0901b877ade5e0ec6b0c4027152d6fd098196bc --- /dev/null +++ b/vlm/train/bm1_qlhRegf/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a18695393096ede80370777c9dab269ceca80bf375004aac998d27efbbdab4 +size 525127 diff --git a/vlm/train/bm1_qlhRegf/9.png b/vlm/train/bm1_qlhRegf/9.png new file mode 100644 index 0000000000000000000000000000000000000000..be0f20ba6fd9ecc7707de28f5821cf9fa629d166 --- /dev/null +++ b/vlm/train/bm1_qlhRegf/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a7519bf59b214e9695d5f0ecb763ea4bc98a941b4ed571307d8f215b6e5f3d +size 608322 diff --git a/vlm/train/gwFTuzxJW0/0.png b/vlm/train/gwFTuzxJW0/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ba113c21e1dec47d3961f9111ea6ce0a1396b658 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbfea42a5c4c5bc4c4e67b2c31f613d750cb26a2c53d7729689924eb5580d11 +size 482462 diff --git a/vlm/train/gwFTuzxJW0/1.png b/vlm/train/gwFTuzxJW0/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0ca212886ae44f08657fd537520642f955b59dac --- /dev/null +++ b/vlm/train/gwFTuzxJW0/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:947d61e035548aaa8bb1f7003576280af2cdd933b34f9439b5eaf0d231607c3d +size 600589 diff --git a/vlm/train/gwFTuzxJW0/10.png b/vlm/train/gwFTuzxJW0/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2220a2984cf30cfa7c417e87f868c6335889a771 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db95fbd267e47e8ec8718cda358cb122812a026896fc2ab54062f06f3ac2187e +size 579859 diff --git a/vlm/train/gwFTuzxJW0/11.png b/vlm/train/gwFTuzxJW0/11.png new file mode 100644 index 0000000000000000000000000000000000000000..88f4c5b16babe6afb447db11bcf70be75ce607d9 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77424e15ebe1c24889f2cf39b7d11fba207a53b98ed6ff73c4fa1334fd58bd52 +size 239369 diff --git a/vlm/train/gwFTuzxJW0/12.png b/vlm/train/gwFTuzxJW0/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6ced0332d9808eae78d7b109900e2365dadbb53c --- /dev/null +++ b/vlm/train/gwFTuzxJW0/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288d9421f94023e6f5e90b486cc09fa27c71ecf04f09c730b23ea04a243ed7ea +size 453464 diff --git a/vlm/train/gwFTuzxJW0/13.png b/vlm/train/gwFTuzxJW0/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bd69356c1dee4d2b3ce7f8328ddb21fd8e9de35f --- /dev/null +++ b/vlm/train/gwFTuzxJW0/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd7d4d73cc2b7423fe028f9f8fd625cc2b3dcb1dad9971d63dd96dbb29d5c5e +size 351969 diff --git a/vlm/train/gwFTuzxJW0/14.png b/vlm/train/gwFTuzxJW0/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0baad6f78e04ff6763564191afc43af0e6c545ff --- /dev/null +++ b/vlm/train/gwFTuzxJW0/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354eb48ad5ab6c0be17b5b62495746bc932bf2d29268ff11a71b46c9db4e01c4 +size 537984 diff --git a/vlm/train/gwFTuzxJW0/15.png b/vlm/train/gwFTuzxJW0/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a24c958f09f7063e14f463c42da69ed50c9a407f --- /dev/null +++ b/vlm/train/gwFTuzxJW0/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720a4a119add8d87a9a85ecb93670694720adc1c72de7034422faf0f5b563603 +size 589373 diff --git a/vlm/train/gwFTuzxJW0/16.png b/vlm/train/gwFTuzxJW0/16.png new file mode 100644 index 0000000000000000000000000000000000000000..003dd36c874ed7f03f923e11cee9b50412af543f --- /dev/null +++ b/vlm/train/gwFTuzxJW0/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b394f4b85c56cfcec5f0804c623060191826d376e17d8ead989d39eee80ae873 +size 417672 diff --git a/vlm/train/gwFTuzxJW0/17.png b/vlm/train/gwFTuzxJW0/17.png new file mode 100644 index 0000000000000000000000000000000000000000..621938d1112ed9f7c4a2586f3386786d5c56cd0c --- /dev/null +++ b/vlm/train/gwFTuzxJW0/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d202e2873f6a203ca7ec1fc53b7002a8415a66e8a8b211b3646a9f4c7aaac227 +size 520951 diff --git a/vlm/train/gwFTuzxJW0/2.png b/vlm/train/gwFTuzxJW0/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8132a4f1c3852d78cba90528855eb55cfed70f7d --- /dev/null +++ b/vlm/train/gwFTuzxJW0/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402c620843548ab5a72be0ba9453b9199f8fc980761f51a1e87cc8812ad1c261 +size 1097818 diff --git a/vlm/train/gwFTuzxJW0/3.png b/vlm/train/gwFTuzxJW0/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2aa3ab96e8f5c77c4f104795c9f827561c39814d --- /dev/null +++ b/vlm/train/gwFTuzxJW0/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420e61b985d2d69fa3aebe5572ad0592cc7ca8209e7c8b2352a989063841b3b9 +size 453307 diff --git a/vlm/train/gwFTuzxJW0/4.png b/vlm/train/gwFTuzxJW0/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4c5e6590540af660ae7592dd732fc13062b49698 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400d1bf0af7f558e5b34be66e63a54452dd76e304c20c48e2b4fb46a1127ebfc +size 527627 diff --git a/vlm/train/gwFTuzxJW0/5.png b/vlm/train/gwFTuzxJW0/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ebcefe874ea5d2af2c341a91000003800515a595 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c8064a025b1165ac5f2cdab6cb61259967ab5be32f599769d1117e24cabfe0 +size 685937 diff --git a/vlm/train/gwFTuzxJW0/6.png b/vlm/train/gwFTuzxJW0/6.png new file mode 100644 index 0000000000000000000000000000000000000000..689bcdbd43968ca810e2218026d8639ec5b0815f --- /dev/null +++ b/vlm/train/gwFTuzxJW0/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461167d15471496fde742d6660b039bf51e77da27b3600d0096bfd87cb11359e +size 534689 diff --git a/vlm/train/gwFTuzxJW0/7.png b/vlm/train/gwFTuzxJW0/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ab40799a3810c6fa4521d47ca996be1373a56172 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c93ab36cf903236c06a2565a3627dc5eb3577ccb1c81e5151381b7e2439284 +size 477017 diff --git a/vlm/train/gwFTuzxJW0/8.png b/vlm/train/gwFTuzxJW0/8.png new file mode 100644 index 0000000000000000000000000000000000000000..56a4ac27d481d429b84bdfa9e21da70f089b3ef2 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1653925b1473024a09a01a47f044f6af9db8476823a1495ffff7eb7414d02f +size 564219 diff --git a/vlm/train/gwFTuzxJW0/9.png b/vlm/train/gwFTuzxJW0/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fe2d3b2793115bb4d052f7686574523359a309c8 --- /dev/null +++ b/vlm/train/gwFTuzxJW0/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88513ca47b70342459189c3e04754e3cc687da766c079048247aaaed8b72232b +size 539865 diff --git a/vlm/train/iNqrOCPRmYQ/4.png b/vlm/train/iNqrOCPRmYQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a4920c55ad15c0d0ea864c1f9fad01fca9ad911c --- /dev/null +++ b/vlm/train/iNqrOCPRmYQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304ca05b1f89dbe882d7f54369a5525781b0ac68537257829224dc0c19e5524d +size 509442 diff --git a/vlm/train/il3vPAc9fiH/0.png b/vlm/train/il3vPAc9fiH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c805d1efb6781ffb4c29b2b3c21eeb5222db5fa7 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bbe386596fb388adedd2a7e02c8a47522e99de766a64075597cf5c5c323b22 +size 415976 diff --git a/vlm/train/il3vPAc9fiH/1.png b/vlm/train/il3vPAc9fiH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..356b15d1d6850b5f097d546a98645b6afaa99ac4 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a97c1aef779d3ec636bab754bf074ac95823e1e5ae8efe99f537207ae017359 +size 540531 diff --git a/vlm/train/il3vPAc9fiH/10.png b/vlm/train/il3vPAc9fiH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e30dd4edd6f154c69d00ca35b37789268a66fe77 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef90b89608a61290599d28fb74fee7e9611a09a1144667d972d47fc8b3ce1a0 +size 595214 diff --git a/vlm/train/il3vPAc9fiH/11.png b/vlm/train/il3vPAc9fiH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ba1cbf916c9e57c5b077d624b73fb60b29c35b3e --- /dev/null +++ b/vlm/train/il3vPAc9fiH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d7fb87cafd3abaab44d8809f54618e2376d60da46ab92726d0a9ed07e2f2f2 +size 567532 diff --git a/vlm/train/il3vPAc9fiH/12.png b/vlm/train/il3vPAc9fiH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f49addbab05cf4d15269589d1c1e9d95620b97ca --- /dev/null +++ b/vlm/train/il3vPAc9fiH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74425c047482aec5c8f9dd00e435a6d56425f8a1aaa3918162d599a737395a0 +size 407288 diff --git a/vlm/train/il3vPAc9fiH/13.png b/vlm/train/il3vPAc9fiH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..60d068b0f1fdd1a6d39e518cac0df263801088ef --- /dev/null +++ b/vlm/train/il3vPAc9fiH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f77d483262c78c1c5749f3d47f9edf07d7b55df1b585d297c8762b9eecb344 +size 393750 diff --git a/vlm/train/il3vPAc9fiH/2.png b/vlm/train/il3vPAc9fiH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6fa446b56dc25af0bf20b280279b21fe95c118 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101170aaa58ea2318db5b8c8f9e1e61cf10ff58f9005f9bf232d41889be3c22a +size 473544 diff --git a/vlm/train/il3vPAc9fiH/3.png b/vlm/train/il3vPAc9fiH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f4cd9fafe024f8f0972e5dacf03d9661485ff82 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5306dfdd92ff09b7b0c80fa93cd4883eec2364f950cb83cd67c961b1323ff0 +size 445981 diff --git a/vlm/train/il3vPAc9fiH/4.png b/vlm/train/il3vPAc9fiH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0c571cde3f7b3b34fc334383a727e64418060ab5 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d290f6e47a65813408fff87cb75528366ec2a60616c0fc199feab8dece9dde +size 520092 diff --git a/vlm/train/il3vPAc9fiH/5.png b/vlm/train/il3vPAc9fiH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e79ff61d22a58f8311672e7ba859a4ebd0c8391f --- /dev/null +++ b/vlm/train/il3vPAc9fiH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2f9970bba927296a0fc0edcfe2ee3a8d95170f436780b60fb67bc69f3dc00b +size 592065 diff --git a/vlm/train/il3vPAc9fiH/6.png b/vlm/train/il3vPAc9fiH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0e53c70fbf846023ebc91fd0907f02b82c16fd4d --- /dev/null +++ b/vlm/train/il3vPAc9fiH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbad2b45ffa4bcd7ca37528e7fb73a961ec3e62208df3f7bb47d0e47adf154ec +size 477990 diff --git a/vlm/train/il3vPAc9fiH/7.png b/vlm/train/il3vPAc9fiH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3d029d260f205204a92b12ccb063631e1eb74231 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2404710120291e799029b1acde5000270980947aad3b89fb832ae2ebdb4d61af +size 480346 diff --git a/vlm/train/il3vPAc9fiH/8.png b/vlm/train/il3vPAc9fiH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4dab9c7815b3ea109af2de7180d77a99ec45ff35 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ce18cf5e8cd344d435375dd8387ed6865a89947bce14bdec07c23a86cd5c07 +size 485126 diff --git a/vlm/train/il3vPAc9fiH/9.png b/vlm/train/il3vPAc9fiH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..334f1a60892940b34510083581a2e930bd70cf84 --- /dev/null +++ b/vlm/train/il3vPAc9fiH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d36be55096ad9c90c3161965d5e71d1267b151d7c95b0b6f50f8b43f9fc8d6 +size 546504 diff --git a/vlm/train/j9Rv7qdXjd/0.png b/vlm/train/j9Rv7qdXjd/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4c753da7e53af5cee1bb2e85fa00cc74a717d070 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2dc891a1e3ffa18c9e13d2abbdb0cfe69c48dbbe1cca8007544b06c05d68320 +size 520542 diff --git a/vlm/train/j9Rv7qdXjd/1.png b/vlm/train/j9Rv7qdXjd/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e4670c5d734f27660ca09ac3ba0b9947f2b5b91e --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b17e49ffb92404af733c12dcc8e2fc5e9ebc5c5546901adbd327e3767a4299 +size 560952 diff --git a/vlm/train/j9Rv7qdXjd/10.png b/vlm/train/j9Rv7qdXjd/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c4d207c8cd2911f9bffcca68b21c8058433f97ef --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f760588a74f249a046d2a36b964b17ee60bbc19537860c4e88da7d42555f8025 +size 569562 diff --git a/vlm/train/j9Rv7qdXjd/11.png b/vlm/train/j9Rv7qdXjd/11.png new file mode 100644 index 0000000000000000000000000000000000000000..e95c56afec2127cb4d510bfd07b3f5c1df10ed3b --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a5f5de29efad8df83cfe4b370e0d5299a866d1c3978e51bbef21a5773512d0 +size 569318 diff --git a/vlm/train/j9Rv7qdXjd/12.png b/vlm/train/j9Rv7qdXjd/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9bb80ff7003e780e1dfb57e1a1810cfe8c411590 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa866c396d92fdf9bbd5d7ec8f358498a9f898ee472e5d3e323af23545375ca9 +size 417905 diff --git a/vlm/train/j9Rv7qdXjd/13.png b/vlm/train/j9Rv7qdXjd/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c7fdce53003a6a34d31aca7dad83f41aaf7f71ae --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35fcca212a12323689a55cae974bb181efed6df439f217a252b678b81af2e7b9 +size 584247 diff --git a/vlm/train/j9Rv7qdXjd/14.png b/vlm/train/j9Rv7qdXjd/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f431b16d6aed1f7a51ae3af81c288817360b1da6 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e56ecc2b918045aa271a1a9cfa73e0164302018866cdd8c9cbda7ea5a1a49ff +size 458941 diff --git a/vlm/train/j9Rv7qdXjd/15.png b/vlm/train/j9Rv7qdXjd/15.png new file mode 100644 index 0000000000000000000000000000000000000000..facb155ad0161f28f90bc0235599ce335c108b3a --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d788ee52fc7e64c95c094d470c5698e3e5503ea1be6430b09f189692d3624c4c +size 559934 diff --git a/vlm/train/j9Rv7qdXjd/16.png b/vlm/train/j9Rv7qdXjd/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a7b19a88e1ae18af85c29bb3dc7f56680b1b97fb --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76998ec1ced1aea0b503462f65993a6df820297ec95e46f4b8552ccbd597bcce +size 518116 diff --git a/vlm/train/j9Rv7qdXjd/17.png b/vlm/train/j9Rv7qdXjd/17.png new file mode 100644 index 0000000000000000000000000000000000000000..265435bba61b46d8d050c675f3b471549e346d81 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8745cfd0333013bc8151f4b49d750cd8ba0cad29f4a4a2bfb2cdbd470fbb71 +size 532185 diff --git a/vlm/train/j9Rv7qdXjd/18.png b/vlm/train/j9Rv7qdXjd/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9839e04e09e45fdfc33650f7498eb65bccd7ac0a --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ccc91eee45e757d518ccf333ba0020106a9fb3ccbd83c3c6a08782fd2b1439 +size 603743 diff --git a/vlm/train/j9Rv7qdXjd/19.png b/vlm/train/j9Rv7qdXjd/19.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3be9e65af4f46538c3e1bcac186c75b20838f9 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c0d027caaffdb95a28aa7107a0e97dcd00089979255201bdf2dcd76e980b84 +size 658643 diff --git a/vlm/train/j9Rv7qdXjd/2.png b/vlm/train/j9Rv7qdXjd/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5db0885b0145dbf5b0382865186c79af74f3bd17 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7474c5701e9f10b483c7d84534648d00f5ab6c3ed02b835bd5348fd6dba4afa2 +size 688596 diff --git a/vlm/train/j9Rv7qdXjd/20.png b/vlm/train/j9Rv7qdXjd/20.png new file mode 100644 index 0000000000000000000000000000000000000000..198a6f0b5e312238c548b9114a89ee8dbd2a2847 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b4721424c4e060d71421857e2a42d30cea29670fe8c87dbc1717981d5fb1bc +size 792444 diff --git a/vlm/train/j9Rv7qdXjd/21.png b/vlm/train/j9Rv7qdXjd/21.png new file mode 100644 index 0000000000000000000000000000000000000000..104285b5e2069769cd2365bf0bc53fb9a037b3db --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290b71e48e8e2547c6646930017facb736b2bdd6616b896884023b17dacb250c +size 561157 diff --git a/vlm/train/j9Rv7qdXjd/22.png b/vlm/train/j9Rv7qdXjd/22.png new file mode 100644 index 0000000000000000000000000000000000000000..795cd7f5d5367d9327f60d541208e7af119015b2 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec62f3c3b51ea240785c48e5d8d4810cf32e06d1d7152fe837e3f1cf11e7d3e2 +size 560343 diff --git a/vlm/train/j9Rv7qdXjd/3.png b/vlm/train/j9Rv7qdXjd/3.png new file mode 100644 index 0000000000000000000000000000000000000000..088fd3f7207dc17b717a5e800ceb30cacf684054 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83045e919258a6dfa385ea9a8609c022b17016a12fa8d6725a7e1d22ee3808a +size 614270 diff --git a/vlm/train/j9Rv7qdXjd/4.png b/vlm/train/j9Rv7qdXjd/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd5705affa63edc1c3fcabae87ec498c7a21326 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f280ec0762fdf0a088ef920720fbab1027a902127e062d4bed574d200336e0c3 +size 661736 diff --git a/vlm/train/j9Rv7qdXjd/5.png b/vlm/train/j9Rv7qdXjd/5.png new file mode 100644 index 0000000000000000000000000000000000000000..116ba5b5f1f8f3e6552b3fe7eeff7116d62c7808 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a60d55b47162849a97055b934934c4be5b9ca3802fa711c890ab52fe9d5a2b +size 802632 diff --git a/vlm/train/j9Rv7qdXjd/6.png b/vlm/train/j9Rv7qdXjd/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6ab1d29a93019aec5ee4ea5ae22a395e1f182052 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7619c0cb4ee8667e24a0e3a47ad0ac9a7757bdc8d8cc4778a93c49113d157892 +size 628470 diff --git a/vlm/train/j9Rv7qdXjd/7.png b/vlm/train/j9Rv7qdXjd/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7f220400555f9c98dcde6021ce92fc2a12c49d --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de8f90331f2b3c2da9950c2d25fd5390cd6d69dfefea72c801cfc9b8b6d5aa6 +size 856284 diff --git a/vlm/train/j9Rv7qdXjd/8.png b/vlm/train/j9Rv7qdXjd/8.png new file mode 100644 index 0000000000000000000000000000000000000000..807d401e0e25b5500d749e43be175535c15cf918 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d1cb05bc2e6e89fdfe07b15bcf133161d2855d93d3e3f84285b1b285afa810e +size 613914 diff --git a/vlm/train/j9Rv7qdXjd/9.png b/vlm/train/j9Rv7qdXjd/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0916faf8a9abcb8ba05e1bd022cfc9fd340cd8f9 --- /dev/null +++ b/vlm/train/j9Rv7qdXjd/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6837d6e320b5b3b1738d5fb2c0a184e1fbcbf8801f18f295c4ce192b5863c2f4 +size 527670 diff --git a/vlm/train/jA5LmT2zLk/0.png b/vlm/train/jA5LmT2zLk/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3c9a9e1821c66db3ef27941dd56d6e7a79d5a25c --- /dev/null +++ b/vlm/train/jA5LmT2zLk/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9827c34bb6a12b0886aa8384d8938b7b5bfdd3adaa549e460677e9aaef0376e3 +size 417018 diff --git a/vlm/train/jA5LmT2zLk/1.png b/vlm/train/jA5LmT2zLk/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c19d14c7f845625db6b37737d92614da522a50a5 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ac199d3fae750d9c7e6be454680580ba63223085c7b06d75302452b7d2b866 +size 510135 diff --git a/vlm/train/jA5LmT2zLk/10.png b/vlm/train/jA5LmT2zLk/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ed44fecf6cd71869d5ef9c7f11b9b3d6ff6c5a0f --- /dev/null +++ b/vlm/train/jA5LmT2zLk/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08761c5bcfa3911001bcdd1e99a0f163d585d14d88a561414a95d72517a8c5a +size 538231 diff --git a/vlm/train/jA5LmT2zLk/11.png b/vlm/train/jA5LmT2zLk/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0862d45f9b6a51b401bdd9993d8c332b6bb5b12c --- /dev/null +++ b/vlm/train/jA5LmT2zLk/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83bbbf5cac99e9997e13e546a92192c3d72686645940509b00e62b1b1ddbb0b2 +size 529037 diff --git a/vlm/train/jA5LmT2zLk/12.png b/vlm/train/jA5LmT2zLk/12.png new file mode 100644 index 0000000000000000000000000000000000000000..92b76ec7e3cc35488653844f4763144b1c2f630b --- /dev/null +++ b/vlm/train/jA5LmT2zLk/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2504380c9847a220e06c60b32a00f0fc48567cbdf8f602903389ca6349c8bb3d +size 119277 diff --git a/vlm/train/jA5LmT2zLk/2.png b/vlm/train/jA5LmT2zLk/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1b272157a7c813448aef851f1d0b9ae9640f66e3 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f800a15b8ec22e4b24409107c9cc43498a7ce249be28559614959b7588313215 +size 532773 diff --git a/vlm/train/jA5LmT2zLk/3.png b/vlm/train/jA5LmT2zLk/3.png new file mode 100644 index 0000000000000000000000000000000000000000..332d435d87a8b80bee66bbfaa8324d9e5082aa92 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571dfb23fd920b28bdbaea3aae4c154efc42c8951dc13c626708f8277670b13d +size 657540 diff --git a/vlm/train/jA5LmT2zLk/4.png b/vlm/train/jA5LmT2zLk/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae93c004d070663e410c01c56cbdb5d76132fa18 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2deef12ebac9ae5bcf369ab281e5f4ab5ba401dc1181982cd7d6ad2439b885df +size 502302 diff --git a/vlm/train/jA5LmT2zLk/5.png b/vlm/train/jA5LmT2zLk/5.png new file mode 100644 index 0000000000000000000000000000000000000000..90a74fe8bcd1b64f2872ef66d681ad0f613c8147 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb70fedb55170a4b94c53d416db556cc08b86f6ea0c0e122673399d3f2285db +size 529858 diff --git a/vlm/train/jA5LmT2zLk/6.png b/vlm/train/jA5LmT2zLk/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e46446c085809de22e7b69c9a153961d087a455f --- /dev/null +++ b/vlm/train/jA5LmT2zLk/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c75181491d50bda039eb8f8bb24dcdb3c016bd147fb6cd50a5ca015315b37fd +size 556918 diff --git a/vlm/train/jA5LmT2zLk/7.png b/vlm/train/jA5LmT2zLk/7.png new file mode 100644 index 0000000000000000000000000000000000000000..94849785acaf954e075bdab83baefcc21c52a6eb --- /dev/null +++ b/vlm/train/jA5LmT2zLk/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c80e1f2a3731a5a860cba428c24813125fbba49e84574433c3328e18e8ee53 +size 688117 diff --git a/vlm/train/jA5LmT2zLk/8.png b/vlm/train/jA5LmT2zLk/8.png new file mode 100644 index 0000000000000000000000000000000000000000..41c0158bc9dedaf2878277e023c8f27f56796c74 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcb26642effb743e8abcb49a10b1858c9498609a018b9d8e23a6e7fd136fbff +size 488375 diff --git a/vlm/train/jA5LmT2zLk/9.png b/vlm/train/jA5LmT2zLk/9.png new file mode 100644 index 0000000000000000000000000000000000000000..68f7c164373c28634041eed7166cc35af9c5a0e7 --- /dev/null +++ b/vlm/train/jA5LmT2zLk/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f10e19f8888f4bc4809a446cd4219c72bc7a10d3a23e58fb65af46ec8ba81f +size 554686 diff --git a/vlm/train/ks5nebunVn_/0.png b/vlm/train/ks5nebunVn_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3175b03a3d1ab2148cf61f31f9a41d385b9f9e49 --- /dev/null +++ b/vlm/train/ks5nebunVn_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cedeb649e8ad91ea3adce4c223d40f58fc0bd4d6c5878b8acc755fc283e78b01 +size 479954 diff --git a/vlm/train/ks5nebunVn_/1.png b/vlm/train/ks5nebunVn_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..83008b86c1302dd501097646a845c790bf79ffc9 --- /dev/null +++ b/vlm/train/ks5nebunVn_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b68c68f6aa29f6705ebfee3a8853679589aeb24d74f0cdef7d844ab5486c1b +size 530720 diff --git a/vlm/train/ks5nebunVn_/10.png b/vlm/train/ks5nebunVn_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..95e0a64bdc64edc0573e9e932914f1cd24e90b29 --- /dev/null +++ b/vlm/train/ks5nebunVn_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83ec81f378bd9755c966dd82199700a5a9a2ff03cc6bb84b639e2d6a2c97765 +size 500589 diff --git a/vlm/train/ks5nebunVn_/11.png b/vlm/train/ks5nebunVn_/11.png new file mode 100644 index 0000000000000000000000000000000000000000..cc2debc11170e65ac1e8f9e466c6c87b1a8ddd6e --- /dev/null +++ b/vlm/train/ks5nebunVn_/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51f261194e2db6c91aad21b34b8189fd97599c1b95fe7485173d987256fa0a4 +size 501618 diff --git a/vlm/train/ks5nebunVn_/12.png b/vlm/train/ks5nebunVn_/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0e0edb1ded663fd5b923fb77f5035c5ecdde92f2 --- /dev/null +++ b/vlm/train/ks5nebunVn_/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb3f5c1d1268f58dea46bf000681979dd5fa03f5fbe7c34da1a4a97592c9b28 +size 436016 diff --git a/vlm/train/ks5nebunVn_/13.png b/vlm/train/ks5nebunVn_/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3f689b064ee8e418b974d27e5f5202a1cf269590 --- /dev/null +++ b/vlm/train/ks5nebunVn_/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a763a9e3eefd8cd1bd077341abacb7149dccbbe0b420e85bdb6db95cb3a140 +size 253144 diff --git a/vlm/train/ks5nebunVn_/2.png b/vlm/train/ks5nebunVn_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..233c0de94a63c52ef9a03c5234d2538c4d63ef18 --- /dev/null +++ b/vlm/train/ks5nebunVn_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b792c40f994aba89bae287078ed3bfe9c74f7969f0beef6bbe62397459b197b +size 546448 diff --git a/vlm/train/ks5nebunVn_/3.png b/vlm/train/ks5nebunVn_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba3d37ee599880e4470d33f86447579b8fd4c3d --- /dev/null +++ b/vlm/train/ks5nebunVn_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2099e28b7536beaadaf204125f4078bd6c772cd684267ecfca63149f175b2f04 +size 464140 diff --git a/vlm/train/ks5nebunVn_/4.png b/vlm/train/ks5nebunVn_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fb726befaff8b30d9468011f3b7e832f12dfa3a6 --- /dev/null +++ b/vlm/train/ks5nebunVn_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f203c704f9e8b492641641b9bec1ac7c36c4689243371de5762939fa4ab72aa9 +size 465038 diff --git a/vlm/train/ks5nebunVn_/5.png b/vlm/train/ks5nebunVn_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..dfa4ac247ee6a4acee56e16663bcabba930f80e6 --- /dev/null +++ b/vlm/train/ks5nebunVn_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d752b04c665427c579ef36332b476ea40562060b8eeb6583c66637c5fdd61b72 +size 454359 diff --git a/vlm/train/ks5nebunVn_/6.png b/vlm/train/ks5nebunVn_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..283cf8be0555c04d390cdc71ed8af08656a69dac --- /dev/null +++ b/vlm/train/ks5nebunVn_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f3b00fe837880a5dbd3835b4d338ff4e40280496d474cd5cd581b58dfccf0f +size 508035 diff --git a/vlm/train/ks5nebunVn_/7.png b/vlm/train/ks5nebunVn_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..25a701f325f7164fe66211142fd7f2c40f1364e9 --- /dev/null +++ b/vlm/train/ks5nebunVn_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cb7848f3d247f24f08906019a45502ff606135de7d59b2ff25578f71747019 +size 565954 diff --git a/vlm/train/ks5nebunVn_/8.png b/vlm/train/ks5nebunVn_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..984674285004857c3e80e50b6a6142dbfdb2ef2f --- /dev/null +++ b/vlm/train/ks5nebunVn_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ceaeb0fd92cb5a6d2df2ec449dbeebc1f50c27c4c5be646bdc481dbd5e00ff +size 512278 diff --git a/vlm/train/ks5nebunVn_/9.png b/vlm/train/ks5nebunVn_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..721d923b7efa7d72862ac592791233c87d4f7e70 --- /dev/null +++ b/vlm/train/ks5nebunVn_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7990da85a7d5c670d05739797430bb8b46e8eb2c0b20aad5be595fab89fc9e +size 498032 diff --git a/vlm/train/m4k66oJFK9P/0.png b/vlm/train/m4k66oJFK9P/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1ca5705ea98f4cbffed2df33c412510842f9b51b --- /dev/null +++ b/vlm/train/m4k66oJFK9P/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62efe2ee1c1b687e04417b032b4472c9ebf23b208379eb4e814b3d390742de3e +size 477342 diff --git a/vlm/train/m4k66oJFK9P/1.png b/vlm/train/m4k66oJFK9P/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cf899a60d2dd2d83677753eb19a65f2564c653de --- /dev/null +++ b/vlm/train/m4k66oJFK9P/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3217a9807f92cd05e940cbda073b56d699f8894c6625697927794b3c7c083fe +size 556536 diff --git a/vlm/train/m4k66oJFK9P/10.png b/vlm/train/m4k66oJFK9P/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5520a2cf4e62b1186a636c9c658be427cb9bf0 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe4114d19dbc8cdfc33789f0259009ebfc2cedd47b21bc25e5b76444af1d9dd +size 473310 diff --git a/vlm/train/m4k66oJFK9P/11.png b/vlm/train/m4k66oJFK9P/11.png new file mode 100644 index 0000000000000000000000000000000000000000..35954381c66ec677d57072f40129a4c728466608 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9899fd12d6f39f8af31f9b509c2b0dc351894cff968d45efe0c347f910587343 +size 346140 diff --git a/vlm/train/m4k66oJFK9P/2.png b/vlm/train/m4k66oJFK9P/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ba104c495c9cb96b4e72da459231b19a96cd883 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870c402b1f63f8f2f2bf1bd483fbd179ba01b38d9a7055ebcbb652db9efdce70 +size 579315 diff --git a/vlm/train/m4k66oJFK9P/3.png b/vlm/train/m4k66oJFK9P/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d27824bc3c000e4bdac902675125d0eccd613e8b --- /dev/null +++ b/vlm/train/m4k66oJFK9P/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0c9aa4acba31069ed3b62ee183e5b7b6f6e472aa3372b9007a06bd6df38692 +size 600336 diff --git a/vlm/train/m4k66oJFK9P/4.png b/vlm/train/m4k66oJFK9P/4.png new file mode 100644 index 0000000000000000000000000000000000000000..303509f10451a5243aa2f02d356373d26dbc7cfa --- /dev/null +++ b/vlm/train/m4k66oJFK9P/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00180e02a54f8f5ba34aa21314b2f55f77418a1ce2eb0cca42e5498aa6436b6 +size 545992 diff --git a/vlm/train/m4k66oJFK9P/5.png b/vlm/train/m4k66oJFK9P/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d92bf13a5eb8d5b9eed560cc3c1a57cf0e3c0bd5 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4db2c7db8c98b4931e13fdc0de8f1fd9bacb6bbc04defb2b7fb9b183c2bf380 +size 572272 diff --git a/vlm/train/m4k66oJFK9P/6.png b/vlm/train/m4k66oJFK9P/6.png new file mode 100644 index 0000000000000000000000000000000000000000..de0551e8a908cdae99aee27dea56432480664a34 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2944bfa940ccbb0ce238c60ec10be2e8c71288b8aa9c2d5ff62c3f4460f77cf5 +size 494039 diff --git a/vlm/train/m4k66oJFK9P/7.png b/vlm/train/m4k66oJFK9P/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6c29c4dbb67bea95ad0e117812de4ea8c4d9b5 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0736a85aa3d4248ce42ff7a95db108a042173dc5ee49a57e8d6c944b92bda3 +size 646184 diff --git a/vlm/train/m4k66oJFK9P/8.png b/vlm/train/m4k66oJFK9P/8.png new file mode 100644 index 0000000000000000000000000000000000000000..50c969fbcd5496cda12a5c5f5ed0ebf39acb9be9 --- /dev/null +++ b/vlm/train/m4k66oJFK9P/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0494bcab21e7ff531ce95b9086b28c04780c65fba2583a20ce36c8e22a8398bc +size 526702 diff --git a/vlm/train/m4k66oJFK9P/9.png b/vlm/train/m4k66oJFK9P/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a499cbe44d45a70c64f05193da5fa1a6fab59fff --- /dev/null +++ b/vlm/train/m4k66oJFK9P/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e8d7d90afb9fc1fc3724090e03d78a29001345bda3c85622b89c5a5bf8a436 +size 547837 diff --git a/vlm/train/r1gPoCEKvH/0.png b/vlm/train/r1gPoCEKvH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..83fa3cbfe295931894c576e3f38d73ecf21d059a --- /dev/null +++ b/vlm/train/r1gPoCEKvH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd491be0a8b21756dc42a8db1afe4ac1d7dc495543d26abb28d107a8d02c8690 +size 514017 diff --git a/vlm/train/r1gPoCEKvH/1.png b/vlm/train/r1gPoCEKvH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e49325a5266c7e6e4f986e7525da298a9454c0db --- /dev/null +++ b/vlm/train/r1gPoCEKvH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae480be15ac6bc7ba90be4bb366b306e01428a416acfc83f1dc5b7ba87aa6ee +size 519930 diff --git a/vlm/train/r1gPoCEKvH/10.png b/vlm/train/r1gPoCEKvH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4a47a44cb97fbd6d708885d782c97d8ada5f6e23 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c0e8c8b1d511a0a3ee435c1aedd1ecd8e13fe038d6a9a75182a5814924e9ae +size 345244 diff --git a/vlm/train/r1gPoCEKvH/11.png b/vlm/train/r1gPoCEKvH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b57f57be04fefc89f72a14bee3e79db02e0680a4 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc3ce4a24240f7da12e908ab4d51e1a9aeac3b0667bf83f591fb24ca3020079 +size 265314 diff --git a/vlm/train/r1gPoCEKvH/12.png b/vlm/train/r1gPoCEKvH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1389e172ec09ee4e72c9af15575eab2db11a2690 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6eafbc55933b6608cfe1a8cd8ed5c96b1b5cf69e549d3e4159d86d916b563e +size 161895 diff --git a/vlm/train/r1gPoCEKvH/13.png b/vlm/train/r1gPoCEKvH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..81e6fc752103698980bc360fd45688f2a28990dd --- /dev/null +++ b/vlm/train/r1gPoCEKvH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44331a4bcf7c3f23d041fa2dae6f67c9891b2433c01597fe46413e4306854d54 +size 134897 diff --git a/vlm/train/r1gPoCEKvH/14.png b/vlm/train/r1gPoCEKvH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..19247d1405da912da96755e7f69754f0bc257e49 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3417740e9837cd8a5cade083d5481765e138ced9706d0b3e1da252c98464cad5 +size 165372 diff --git a/vlm/train/r1gPoCEKvH/2.png b/vlm/train/r1gPoCEKvH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..351d148f08292f8cba0670a6b912ba3bc87dac50 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0beb160595d00ac9d1ab3a691058268cfc8d6d047e628b3c883bd9991acca841 +size 527383 diff --git a/vlm/train/r1gPoCEKvH/3.png b/vlm/train/r1gPoCEKvH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5af151b7bb96f844e763aff95bc5f18841777aad --- /dev/null +++ b/vlm/train/r1gPoCEKvH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9005213dda017a33489939224e71585ff390361c177d66015844e2f76ea9695 +size 577210 diff --git a/vlm/train/r1gPoCEKvH/4.png b/vlm/train/r1gPoCEKvH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3c120afe81376cabec4380409a318056f8ec1bd3 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbca4cc7f9f8c3a65efa1dc43c1d2ff38dbb2600a25443b31befd8b0eaa82020 +size 587405 diff --git a/vlm/train/r1gPoCEKvH/5.png b/vlm/train/r1gPoCEKvH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9bdb5d01447437e1a71fbb9beda8fdf7f16a1e1a --- /dev/null +++ b/vlm/train/r1gPoCEKvH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521b039a4df207ec681b2d43281301cae8843b9198d97128f8dcefe6648508e7 +size 607454 diff --git a/vlm/train/r1gPoCEKvH/6.png b/vlm/train/r1gPoCEKvH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f3c61fbd364b7b8eb45920faa21930eabc76dd23 --- /dev/null +++ b/vlm/train/r1gPoCEKvH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787eb76417053189f8feb6402ee007acc1e7efdc518d108f28b866dd8263f290 +size 668642 diff --git a/vlm/train/r1gPoCEKvH/7.png b/vlm/train/r1gPoCEKvH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5d5b906a02fb232581821ef798b8f7e23b443c9e --- /dev/null +++ b/vlm/train/r1gPoCEKvH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8d607dacbde18a739cdd51c1eb5c7f4cc757ac9661a34ccb79dd5d3b7bd0bd +size 677500 diff --git a/vlm/train/r1gPoCEKvH/8.png b/vlm/train/r1gPoCEKvH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..cca4b323ed3f22857b523590a4badc1936feca9d --- /dev/null +++ b/vlm/train/r1gPoCEKvH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189c9617d8b682785936b9715b5ecc6523140033d384c09950bc94945fb499ef +size 535688 diff --git a/vlm/train/r1gPoCEKvH/9.png b/vlm/train/r1gPoCEKvH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..20b4c4850cf5f3637bb77bbcbaf6d407698c37bc --- /dev/null +++ b/vlm/train/r1gPoCEKvH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020e1d6b92ed2d5e779d5431b6c1cdacb3579bf9003c409b7a49a446ec05e3a6 +size 478741 diff --git a/vlm/train/rJeXCo0cYX/0.png b/vlm/train/rJeXCo0cYX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7602197d49cfc042d60cf13015a5f3ed799e7a09 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b548cca58401674be92b4020154cd0661f46c5e7ef82bd73129051a163a438d3 +size 425650 diff --git a/vlm/train/rJeXCo0cYX/1.png b/vlm/train/rJeXCo0cYX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..73f2b15efc7322bd787740fad1187e3eabf23ae7 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7149b81af8665394144cddb20d9cd369bd46106cd4007a3d0a8ecea6a827934 +size 624594 diff --git a/vlm/train/rJeXCo0cYX/10.png b/vlm/train/rJeXCo0cYX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..84fc5e4373e9ba9b23bdbd7676d2cd40e5eaaffd --- /dev/null +++ b/vlm/train/rJeXCo0cYX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16644c91470f0779cccbc6de12eecf8cc9e37f3955e7977dfd679a84571c9103 +size 553037 diff --git a/vlm/train/rJeXCo0cYX/11.png b/vlm/train/rJeXCo0cYX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ae381226a5ece4625284a3f71434b1b8b7e0651c --- /dev/null +++ b/vlm/train/rJeXCo0cYX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2f90137fec489131a77f432ebe82a7a6044f5d07cfbd016edee164942e6ed1 +size 578964 diff --git a/vlm/train/rJeXCo0cYX/12.png b/vlm/train/rJeXCo0cYX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c5432d1312b2f093b997b80cf408768db6923255 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290692056e41862068f1ea01a30e3b0e6debf61cae7f5f2928f0c78a9f24935b +size 338861 diff --git a/vlm/train/rJeXCo0cYX/13.png b/vlm/train/rJeXCo0cYX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..21700849b23dab1df916137508a04af9a4b1bb97 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1fde34ed9dd359ee26dec31e4e4eaecbf53221a4b84663f3060467c75677c45 +size 512952 diff --git a/vlm/train/rJeXCo0cYX/14.png b/vlm/train/rJeXCo0cYX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..65213003bb09d796a1e6f882a8d7722508172eb4 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc3a2a75767a6c821c0ca9340602a33103ff67a5be39f4bc7c4f890ba8f6c39d +size 460084 diff --git a/vlm/train/rJeXCo0cYX/15.png b/vlm/train/rJeXCo0cYX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2a785104b8dfe9881072a4030391799c0e7c6f --- /dev/null +++ b/vlm/train/rJeXCo0cYX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7f2e0d95897f35b059ead658a78245d0f912f974858b57ab91baf0976cfb3a +size 354896 diff --git a/vlm/train/rJeXCo0cYX/16.png b/vlm/train/rJeXCo0cYX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..42ba9387c683423d56dd6d4ef74c096fc0ea4be8 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c748bc2b5551221a7e282bb63b4dbeee93f0fb46cff8d03a6f1f52badb1f659d +size 107863 diff --git a/vlm/train/rJeXCo0cYX/17.png b/vlm/train/rJeXCo0cYX/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1ceaeed2a04df1e47da90830c5d93eb77a07a902 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a5dc2f02e8e1564c25bc9060f25e0a6656415003157e7f81540ee6a4707911 +size 175270 diff --git a/vlm/train/rJeXCo0cYX/18.png b/vlm/train/rJeXCo0cYX/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fa00e3cface0d3181adb580098f3420415a7e03a --- /dev/null +++ b/vlm/train/rJeXCo0cYX/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bc2b76b6fc5e3ec7c68e990bebbcc1e1498afa85ccf2eece467fcb262c7f3b +size 138777 diff --git a/vlm/train/rJeXCo0cYX/2.png b/vlm/train/rJeXCo0cYX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..79ba792fdcc45e176e74dd5b6ec7679b35609a76 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b08444a31895271ad96417149d154e7b57085d623bdc03e525b837fcc705c1 +size 377367 diff --git a/vlm/train/rJeXCo0cYX/3.png b/vlm/train/rJeXCo0cYX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2f754700e50a42919eed15ef1df585a908280868 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e9ac03a0a1aa1c35b4e3ef1b5686474f2db950a66c7e6243b67c92dbd4d772 +size 471759 diff --git a/vlm/train/rJeXCo0cYX/4.png b/vlm/train/rJeXCo0cYX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..997a7ae4118a69d18f1b979c6bc016cecfe41d9e --- /dev/null +++ b/vlm/train/rJeXCo0cYX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfac9ce77c1866162f9da2e046a5865e0bd0b0874eae54c06ad9ae47459efaca +size 451138 diff --git a/vlm/train/rJeXCo0cYX/5.png b/vlm/train/rJeXCo0cYX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bc3ec212483cb8cdf1d2ed602cc8ea2922b35090 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9d0f9abf502843794bddbe2a1c86dedd4d5848125452d420563cbb7ba9b191 +size 383333 diff --git a/vlm/train/rJeXCo0cYX/6.png b/vlm/train/rJeXCo0cYX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..140a3f39f8642a6424503497424447ca29906844 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92edc8d64d675d047219aac1158a4c16133a93a2c483c4d038de55f2e17f87b1 +size 531827 diff --git a/vlm/train/rJeXCo0cYX/7.png b/vlm/train/rJeXCo0cYX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..75cea6c28a033ef296bf8c58b144721de2a20dce --- /dev/null +++ b/vlm/train/rJeXCo0cYX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbd5bbfa7b480acd78d13401a0b8ee860a01bd7686d72656276224a63383611 +size 502300 diff --git a/vlm/train/rJeXCo0cYX/8.png b/vlm/train/rJeXCo0cYX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..521f2b90ff8f42003951cc811778e39be8775011 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0314055748849ba98e122c7e1c3045a9107ef5da808d9acf4d355f47fe42c59 +size 491277 diff --git a/vlm/train/rJeXCo0cYX/9.png b/vlm/train/rJeXCo0cYX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..464c309cd440c22bb9c2d9daec3d2493d4966368 --- /dev/null +++ b/vlm/train/rJeXCo0cYX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b71964da20f3da3fa89bf52dc1638967bd9d5ac73457c8366a4ae1e75eb00e +size 475783 diff --git a/vlm/train/rkWN3g-AZ/0.png b/vlm/train/rkWN3g-AZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d00057e8ceca90c2f5efe69ce9e6396fc8170979 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a656b4e92ec2cf48d67070a480ce61fe2bfb22f244d9e5d142ebbcdc191090 +size 605579 diff --git a/vlm/train/rkWN3g-AZ/1.png b/vlm/train/rkWN3g-AZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..acc80cd235013614b44a1b1aa7fcbc35d2754730 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc18a81f22735394b123e4d46afcc614bd81353b6dfddcfb54eedc359bf3e9b +size 601223 diff --git a/vlm/train/rkWN3g-AZ/10.png b/vlm/train/rkWN3g-AZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9a9b58c66052754924ba9e18f71d492fd4352f90 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ceec8df7193aead9487f1a05079493e003a8be8909ad1fd5c2cfc95d20040b +size 1088007 diff --git a/vlm/train/rkWN3g-AZ/11.png b/vlm/train/rkWN3g-AZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b93be9f791d663241f767b5130b0d916b631d9ce --- /dev/null +++ b/vlm/train/rkWN3g-AZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fc52fa3ea190e86bd5375a33f91e2dc75fff56d215fb8240169854db715548 +size 1571996 diff --git a/vlm/train/rkWN3g-AZ/12.png b/vlm/train/rkWN3g-AZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6d49b65fb1d195a7c473d109687875822047ef09 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0430fa447ff79cc2f8e5429803fcc252b376e65cfffd08f1fc6145d50e4aa9fa +size 981431 diff --git a/vlm/train/rkWN3g-AZ/2.png b/vlm/train/rkWN3g-AZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cd0d9b98c5810daebe13286f8048203a2b77c267 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38dc2b80056e85730f2f52bbbdd19637e5cdce52b56ebafac43038fed33587e4 +size 582009 diff --git a/vlm/train/rkWN3g-AZ/3.png b/vlm/train/rkWN3g-AZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3b728bb9ce8eab2cd969623cb85569654697c7af --- /dev/null +++ b/vlm/train/rkWN3g-AZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573c8898cf47e0cffe707a4e43c4e5ee0465726aca585765c6253eeb308a5cae +size 557958 diff --git a/vlm/train/rkWN3g-AZ/4.png b/vlm/train/rkWN3g-AZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7f58d8bc0428b3723c1adedefdbba60a6cc0209d --- /dev/null +++ b/vlm/train/rkWN3g-AZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ce87cab896a8023441f90b7db3c36b58446b8797ec344549070c232e549ed4 +size 616005 diff --git a/vlm/train/rkWN3g-AZ/5.png b/vlm/train/rkWN3g-AZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0033e56d7927328b440a58404e658a1862aef9 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ce41d0a92b870a4641688965209a1e29cc6c1aacc42f0264efe6a90060fd41 +size 664044 diff --git a/vlm/train/rkWN3g-AZ/6.png b/vlm/train/rkWN3g-AZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7bad5991bfd446361fe7c2fa7a496113d85c841f --- /dev/null +++ b/vlm/train/rkWN3g-AZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74997e2a8119949860bc6bd6be5db07c8b3eae23c7fa17b7b1c6e9eed654882e +size 1211006 diff --git a/vlm/train/rkWN3g-AZ/7.png b/vlm/train/rkWN3g-AZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a8411769d198aabfd1aa96c9443dd85e8d348133 --- /dev/null +++ b/vlm/train/rkWN3g-AZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0c705f4bf9e3eabeb8c7135722a9bea07d822f76860c33db04e9760d67e35e +size 849465 diff --git a/vlm/train/rkWN3g-AZ/8.png b/vlm/train/rkWN3g-AZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..58fc714db00a57c81eda727879a60ac3664573df --- /dev/null +++ b/vlm/train/rkWN3g-AZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb43d80ac8f178ede62a2b08bd68b313d3089da5ff0a657ed7b9d7679e194fb +size 452543 diff --git a/vlm/train/rkWN3g-AZ/9.png b/vlm/train/rkWN3g-AZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..89f7c852b3c4f45ad3c395776551139367563cfa --- /dev/null +++ b/vlm/train/rkWN3g-AZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc33e1fb3cd580ccf2a6143245f984d67f6493350b80a04031c4562d62ac8460 +size 460737 diff --git a/vlm/train/rkg-TJBFPB/0.png b/vlm/train/rkg-TJBFPB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..206cc38b3e6361c95d148436fa8be1341d8273fc --- /dev/null +++ b/vlm/train/rkg-TJBFPB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae9f78d1f745d370420ea53efa20978b9c044e91bd2e199373197e5edcaae3a +size 550642 diff --git a/vlm/train/rkg-TJBFPB/1.png b/vlm/train/rkg-TJBFPB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..499cdceb0c3a38f6be1a18f97e837e2b258738c7 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32074c58da70293edd8dddea4c687c909afb32be4e3bc7404eb26ef62b533a03 +size 566737 diff --git a/vlm/train/rkg-TJBFPB/10.png b/vlm/train/rkg-TJBFPB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0920a9830e47c168d4e008ebad6b2bece0251b15 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af46f55a360b153de140a076da9c8377f7df5d2c42a74bbc72c2336decaebea +size 625609 diff --git a/vlm/train/rkg-TJBFPB/11.png b/vlm/train/rkg-TJBFPB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..aeaf0fb7ee1191aef35f9a38bd46e229ee77c8fb --- /dev/null +++ b/vlm/train/rkg-TJBFPB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41cec511c986750cff2379f7546d72d446c042d25b5a8f87a9b7461c3f8fd39 +size 596200 diff --git a/vlm/train/rkg-TJBFPB/12.png b/vlm/train/rkg-TJBFPB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..19ba22e30aa60829093503c7ae0694ba05760068 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8503c2ad5a028a6f0224a6f497338fc30c89e42ad5342728a514405b01f49b0c +size 624088 diff --git a/vlm/train/rkg-TJBFPB/13.png b/vlm/train/rkg-TJBFPB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c90e380cc7c318cd7dbe1eb7ee9a0b78dfc5243e --- /dev/null +++ b/vlm/train/rkg-TJBFPB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895f37333201d9e5dce2916d3c37faffb6df5a6929b4980338b47c4c0d92bd51 +size 497827 diff --git a/vlm/train/rkg-TJBFPB/14.png b/vlm/train/rkg-TJBFPB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..dae61bbdd79f107d6a07bd455c653ce536da36e2 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1660176a4b1330456ea6e38f93932c2452999b0c5b6c1f69b2484f99167c3ef +size 444709 diff --git a/vlm/train/rkg-TJBFPB/15.png b/vlm/train/rkg-TJBFPB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..26b26091fb4cc1674625752b4c1f18316a0eb0a2 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ab6cef1509c1faa0460f66f406b5206793e260e621eb7abb816981ac7a0350 +size 550578 diff --git a/vlm/train/rkg-TJBFPB/16.png b/vlm/train/rkg-TJBFPB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c570c8795353182ec9b7007c692efb71cf6f4077 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3607003f4e183cdfab52bc6f3bb23ee3db67fe7c6714a03399b53a89d7179e92 +size 481990 diff --git a/vlm/train/rkg-TJBFPB/17.png b/vlm/train/rkg-TJBFPB/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ac36e30225a7781a77404218440ed9957610a501 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351b9dc04632ebd30e6b77066d357395e3eb1bfd8d901334ff5a2a3a3668a8e0 +size 304497 diff --git a/vlm/train/rkg-TJBFPB/18.png b/vlm/train/rkg-TJBFPB/18.png new file mode 100644 index 0000000000000000000000000000000000000000..df5d9c824418f369d5ca66f87a5d8d4a24bd7e3d --- /dev/null +++ b/vlm/train/rkg-TJBFPB/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991b4d295dab1de357631261496b5028517048838f3d1ddc21a586e83ff33d9f +size 365813 diff --git a/vlm/train/rkg-TJBFPB/19.png b/vlm/train/rkg-TJBFPB/19.png new file mode 100644 index 0000000000000000000000000000000000000000..16721d9b1b5e954629108dfa65c17352aac197fa --- /dev/null +++ b/vlm/train/rkg-TJBFPB/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc6af72fc3daf6ed966fd627aeb75c43839a53105766e5eeae01570fa72cdfb +size 396584 diff --git a/vlm/train/rkg-TJBFPB/2.png b/vlm/train/rkg-TJBFPB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9211577228ea7157906721a029e58baddf70c572 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9f151bb7d5fd4a629e621e579a3cc0acf324ea74b58591aa42ffbc9b8d2b1c +size 681118 diff --git a/vlm/train/rkg-TJBFPB/20.png b/vlm/train/rkg-TJBFPB/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b285973c5a87233260ae5f8a7e400cab7bbf37a8 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37dc3cc5566c1baa17f9cfca47151423005b63f6af9832920cc79848a114aa0c +size 126609 diff --git a/vlm/train/rkg-TJBFPB/3.png b/vlm/train/rkg-TJBFPB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2fae13a3e17d1920dd3a3e585ccdf20907b43b68 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c7740a899ec2490eafbb6f99ca6a85aa7cfdf399c0ccb525414bae2b53fc61 +size 595553 diff --git a/vlm/train/rkg-TJBFPB/4.png b/vlm/train/rkg-TJBFPB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..81c1bbe52ba516f2aaff1a58378ee67b23c398bd --- /dev/null +++ b/vlm/train/rkg-TJBFPB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc32a3e69b0e4612df5155ada95b6dff97dbf5d7557b04a46535177c491b13e3 +size 543024 diff --git a/vlm/train/rkg-TJBFPB/5.png b/vlm/train/rkg-TJBFPB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a9b7e0d805ddb3dd200415e8fd791a60e36476c5 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36eeb5dd982c01a022d6e982497a4bbcbfe0facb2824fda22b4a2982d96fac6a +size 551910 diff --git a/vlm/train/rkg-TJBFPB/6.png b/vlm/train/rkg-TJBFPB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..83606f34817093fb0688cbc18cb4f3ee8b0f2a68 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:201073eddc2bae14c550188ebda2f048d52ffb52b7ed2d9ce2d78f2977fecd47 +size 408303 diff --git a/vlm/train/rkg-TJBFPB/7.png b/vlm/train/rkg-TJBFPB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2032922714dd8cc90db592f049454653fbf648fe --- /dev/null +++ b/vlm/train/rkg-TJBFPB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b269785cba128d2e9b1c14313d4a5b74cc2c3580b30fc7cc45f5b54d8b8ab341 +size 630302 diff --git a/vlm/train/rkg-TJBFPB/8.png b/vlm/train/rkg-TJBFPB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..857fb4c615fcd9b056cae92e85ece4400dc93518 --- /dev/null +++ b/vlm/train/rkg-TJBFPB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7dbf9d0580dcf7dba9120b7322a1c5e083d7801a547f36be9d2b48ef5b1877 +size 496800 diff --git a/vlm/train/rkg-TJBFPB/9.png b/vlm/train/rkg-TJBFPB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..51c0f7969b646f8e2afe8133282c87f38400fbae --- /dev/null +++ b/vlm/train/rkg-TJBFPB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a39f740adc9038ec49b9bc6ba2233ce257cec0d53878b3d657cb98123f4a835 +size 564406 diff --git a/vlm/train/rkgK3oC5Fm/0.png b/vlm/train/rkgK3oC5Fm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1a92135656c033bc04ff1dddabe08d48b95bb564 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7deea4c1825f88de633cfd932c256b3259212f53c1e31a17db49ba49877641 +size 508305 diff --git a/vlm/train/rkgK3oC5Fm/1.png b/vlm/train/rkgK3oC5Fm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..12dae27c87e361db42c49508de5648631e8b21a3 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c3475472bbae23cfa7aaea287b511ba0b48af0d3410100ef272c0ae138430c +size 627767 diff --git a/vlm/train/rkgK3oC5Fm/10.png b/vlm/train/rkgK3oC5Fm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..21d49b71f244595142a36be385aef1ef9d43215b --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc75efca733c57c36d5d7c2db2536853ccbc5e1904a93a0b2cecb25961a4607 +size 369509 diff --git a/vlm/train/rkgK3oC5Fm/11.png b/vlm/train/rkgK3oC5Fm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a742cdd8c643b85a81a602bca84e4c52addebc26 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5eb88a2461b9b4aa57a608a27c2936e5a7841c920868d42330ed86646c07e1 +size 503045 diff --git a/vlm/train/rkgK3oC5Fm/12.png b/vlm/train/rkgK3oC5Fm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..901b54ab5c1cac80368a91ebcd38d0d441582d87 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a763fc1f35efd9c8225c154737281b5de10c861c9f9fdc559703c6181f9fcab3 +size 518089 diff --git a/vlm/train/rkgK3oC5Fm/13.png b/vlm/train/rkgK3oC5Fm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ac15510d09cd77f19be40fde7c00a806c4decdd3 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03df405554fd19f42d6d6ce1ec32945c5b5a7b86b0d76a25dfe07e328ac233c +size 390987 diff --git a/vlm/train/rkgK3oC5Fm/14.png b/vlm/train/rkgK3oC5Fm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e25f3a5ee18d9e69785e11ab961023ffdbd59b73 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9174d3bf2b5ed0f2d22f21cd7ca283adf8c1a1e0f311f11e94f7e3c8909c1e75 +size 290911 diff --git a/vlm/train/rkgK3oC5Fm/15.png b/vlm/train/rkgK3oC5Fm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8b6d32c09373387b9720d97aea450f318140f8eb --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495b42adb983a7b7e0623c4cc036160be9065298e2de1a3e66695a9e60228d3d +size 320493 diff --git a/vlm/train/rkgK3oC5Fm/2.png b/vlm/train/rkgK3oC5Fm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e1a9ad1e33d5224418d640567516585122a7b89 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b99c33774233cb0047dba978b5a3f8aec0780cceb017a196ea16b98fb6bfca8 +size 463201 diff --git a/vlm/train/rkgK3oC5Fm/3.png b/vlm/train/rkgK3oC5Fm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ba37ee7920477b1c8c587eb0076c8a0885a49ec6 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a32306a695838366d513093abfd1ef0efdc45788976e7c612b45df7a08cb63b +size 518142 diff --git a/vlm/train/rkgK3oC5Fm/4.png b/vlm/train/rkgK3oC5Fm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b462378dc296dd1bb662b586746bb54c37283487 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b9a3cc455370389b0ee603d4836af5c42dfdd9f4927630ef017e8365f0954a +size 610602 diff --git a/vlm/train/rkgK3oC5Fm/5.png b/vlm/train/rkgK3oC5Fm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0134b3dc2eb8a0ec51b61f7201be6726c3d90b5c --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64cf704ef6f0fec75054c92885540d72163ba93cee3aae84d2b5c6a34d5538cd +size 609059 diff --git a/vlm/train/rkgK3oC5Fm/6.png b/vlm/train/rkgK3oC5Fm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..00d3d2345d2cbdf2acd65bb4892b81f2c88e2a6b --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa59b8c69aa1c885af827e24c8b324e4dae9700b081cf961a02353256d75410a +size 620105 diff --git a/vlm/train/rkgK3oC5Fm/7.png b/vlm/train/rkgK3oC5Fm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a390234a110d9df9ef20d828329e47498cd3ac --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f074e454b60e32bc67504fd8740dd22dde8188dce9a88bb6d54cb3cf576e360 +size 847590 diff --git a/vlm/train/rkgK3oC5Fm/8.png b/vlm/train/rkgK3oC5Fm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b608ad39cbf6a1456c2dd79d3d129ad6011459e2 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655bfeb1f449d1387699ad9c3ec2e8d5beaee7062914e4fc95ad28c64ceb3161 +size 468240 diff --git a/vlm/train/rkgK3oC5Fm/9.png b/vlm/train/rkgK3oC5Fm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..99ed55ade99a0fae953980d8674e3fc4f4956db0 --- /dev/null +++ b/vlm/train/rkgK3oC5Fm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec89062a004a497fc5c6943b61b7e8eacae6a4c1c3638a41f9a8195170a5a51 +size 220077 diff --git a/vlm/train/rkgpy3C5tX/0.png b/vlm/train/rkgpy3C5tX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6c8e5520446030613fe26dd2a6374391817321c1 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed327f8988a6d687a78af272a005468fa52622267b797b6652ea7c25eeefb2b +size 497324 diff --git a/vlm/train/rkgpy3C5tX/1.png b/vlm/train/rkgpy3C5tX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f1e07373a7d114dc88c375b0e105354a74333865 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed182c40a414c991641ba9cea2e216657680b3cc5dc4b998298212d61d17ebcb +size 331035 diff --git a/vlm/train/rkgpy3C5tX/10.png b/vlm/train/rkgpy3C5tX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a9b6ae5850dc133532933da86a8eadf2ce519529 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64690aeb3378cefa90e2ecbd675082091d77667d497fb38da566f0e966006213 +size 534933 diff --git a/vlm/train/rkgpy3C5tX/11.png b/vlm/train/rkgpy3C5tX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5082cb9471a4d3374a5004b3d0ab91bee44b91 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601bc3deccc8e7c45ddb548ca31e0cfeec6714cd94b74dd3e8595db6f84e467a +size 483918 diff --git a/vlm/train/rkgpy3C5tX/12.png b/vlm/train/rkgpy3C5tX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ee6cda99eed32e076bcf6b881c0bfc3f1b5137ea --- /dev/null +++ b/vlm/train/rkgpy3C5tX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a85117ff317eb6df6dc9793490d0182470ad49f91883221740c64c593b586be +size 281917 diff --git a/vlm/train/rkgpy3C5tX/2.png b/vlm/train/rkgpy3C5tX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2889a0f0b11b9661c70b07ab6166d1bf259914f4 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30050f5a66d24eb241d6f101cdc1a0c97f58c5d5322b30750ab6de8af225361e +size 541808 diff --git a/vlm/train/rkgpy3C5tX/3.png b/vlm/train/rkgpy3C5tX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a983f85dc52e7b8a68a7efb308960ba7464e2323 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b782fecce2a5d3a326fb5059cae3b21614a8a400666ec9a5765c42c5c19a5336 +size 457069 diff --git a/vlm/train/rkgpy3C5tX/5.png b/vlm/train/rkgpy3C5tX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9e6f67002484e590ea6340d86c2eb2ab3a36c434 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1018cb2ce3057ec0fbc104557387b9ae179c9ce9b0674b7e39f51febe3f0c927 +size 582310 diff --git a/vlm/train/rkgpy3C5tX/6.png b/vlm/train/rkgpy3C5tX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e00f29f1bb5fb5db6ab8dce061f1125d257a3753 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d192adcee7e425a7bcf58ac2c58189ffdd6cc45e2ba3167159c95ccf181a9571 +size 574264 diff --git a/vlm/train/rkgpy3C5tX/7.png b/vlm/train/rkgpy3C5tX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea77d1446bbc73c37451470e27d1de8912cb8ef --- /dev/null +++ b/vlm/train/rkgpy3C5tX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1570b2a9526eaa0cbabceb840d85c141ef532321846f5cab90e4667be8aeae +size 653744 diff --git a/vlm/train/rkgpy3C5tX/8.png b/vlm/train/rkgpy3C5tX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..311b62366b5af0b8ab27d936603bbee9aac59c8d --- /dev/null +++ b/vlm/train/rkgpy3C5tX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6d932be494bca85f6d5091590f6cbc01489f845e26f87745c28be9a3722710 +size 392297 diff --git a/vlm/train/rkgpy3C5tX/9.png b/vlm/train/rkgpy3C5tX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7f2f4ee2bfb2dc012c911c60e28e8b737b4dfa56 --- /dev/null +++ b/vlm/train/rkgpy3C5tX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc59b949345073e5f1fad0038d2cbddc7cf245bc45a87cd46aebba7bac2ea01 +size 307023 diff --git a/vlm/train/rkuDV6iex/0.png b/vlm/train/rkuDV6iex/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7db0db3b3ae8f85e2bdcf5a179577e805ef53306 --- /dev/null +++ b/vlm/train/rkuDV6iex/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a837ffd5f3cf8b634d9751e5b45c2954fabbb369a329454af79fcd056302d31b +size 433853 diff --git a/vlm/train/rkuDV6iex/1.png b/vlm/train/rkuDV6iex/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7eaaea9f1dc88671b2d30ed554b494f02313b5fa --- /dev/null +++ b/vlm/train/rkuDV6iex/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8523192c72debb57bd4b60b29b2c44bbad165e061554e983fd260fb458dfcb80 +size 468956 diff --git a/vlm/train/rkuDV6iex/10.png b/vlm/train/rkuDV6iex/10.png new file mode 100644 index 0000000000000000000000000000000000000000..24e63ab75d5b46c4b8210045d4ed539521652311 --- /dev/null +++ b/vlm/train/rkuDV6iex/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2388e06d11a6b15fe16ad2e6cebe91cc44e6b62e0b8dd14c640788260b7fe7 +size 516450 diff --git a/vlm/train/rkuDV6iex/11.png b/vlm/train/rkuDV6iex/11.png new file mode 100644 index 0000000000000000000000000000000000000000..580bd87ebdd681bb666e3a8034281ee91bb4c1c2 --- /dev/null +++ b/vlm/train/rkuDV6iex/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e5e0b18b8ff50a132059f3329c49608f5c5dcf8069b41270fb91116e3c32b5 +size 342954 diff --git a/vlm/train/rkuDV6iex/12.png b/vlm/train/rkuDV6iex/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8d7101a10ddbe8aa1c58cde812446654e1b8dc --- /dev/null +++ b/vlm/train/rkuDV6iex/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a07bda74c44c69d2023ef5885bc4952457108152af91de76443e5901efe8ba +size 351503 diff --git a/vlm/train/rkuDV6iex/13.png b/vlm/train/rkuDV6iex/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5f8b2f1686cfc00691de244217c27da6d59a93dd --- /dev/null +++ b/vlm/train/rkuDV6iex/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8777b54390ecd328ae3256a4a850d89afb5efe032abc4fc9ec23bd29b7c9b90f +size 362727 diff --git a/vlm/train/rkuDV6iex/14.png b/vlm/train/rkuDV6iex/14.png new file mode 100644 index 0000000000000000000000000000000000000000..22f8a29f4385656f6c8023ffaf32d83b008c9993 --- /dev/null +++ b/vlm/train/rkuDV6iex/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c3c65a70c412359fb675f982ccaded8c5313090308aa170f076adaed1c5387 +size 470814 diff --git a/vlm/train/rkuDV6iex/15.png b/vlm/train/rkuDV6iex/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7d760dcbc0b0285722d133790800ba91c5f51c6b --- /dev/null +++ b/vlm/train/rkuDV6iex/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f157430813434988a2667f105d6dea958247e19bc2add38d82730cfb09958a3 +size 361738 diff --git a/vlm/train/rkuDV6iex/16.png b/vlm/train/rkuDV6iex/16.png new file mode 100644 index 0000000000000000000000000000000000000000..b6fdcf456bcae793730a361e8830481a0e5e351a --- /dev/null +++ b/vlm/train/rkuDV6iex/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75440aad895725dc00615e23937569505d076cb0bb48f36ef99db03045a6036d +size 241350 diff --git a/vlm/train/rkuDV6iex/17.png b/vlm/train/rkuDV6iex/17.png new file mode 100644 index 0000000000000000000000000000000000000000..425b8349b6a4719e2f72d6fde665c0b59045f179 --- /dev/null +++ b/vlm/train/rkuDV6iex/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411454733459ad4550e3a7bd4033843d2a4b4016dde3790f62f742e118749201 +size 415467 diff --git a/vlm/train/rkuDV6iex/18.png b/vlm/train/rkuDV6iex/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ad682b930eedb367fe5cdc016efb24055ea44964 --- /dev/null +++ b/vlm/train/rkuDV6iex/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751a16d831bfbdf2361e6367b582c30a7145b10e42c949e425ba13c87bddb585 +size 385996 diff --git a/vlm/train/rkuDV6iex/19.png b/vlm/train/rkuDV6iex/19.png new file mode 100644 index 0000000000000000000000000000000000000000..04c2d612585cd6e79344804b4d6b3630423d219b --- /dev/null +++ b/vlm/train/rkuDV6iex/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3012eb983cb5f78f400b9adf727d458d8c7808257e65c649c24bc888360af357 +size 197538 diff --git a/vlm/train/rkuDV6iex/2.png b/vlm/train/rkuDV6iex/2.png new file mode 100644 index 0000000000000000000000000000000000000000..45f8eee42430018800cfc549981109acc170db82 --- /dev/null +++ b/vlm/train/rkuDV6iex/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b35e9252c3c9417ba990b69c7b8d00b80a14b1f7708bfe88ac853e65ed5355 +size 533305 diff --git a/vlm/train/rkuDV6iex/3.png b/vlm/train/rkuDV6iex/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1d9dc9306de8c9f2dfb9f541fe1f228ea9ded776 --- /dev/null +++ b/vlm/train/rkuDV6iex/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d058d36014cec6714bf1302365f8692634ca6eafa500ba2d28e74de51ec5241e +size 508175 diff --git a/vlm/train/rkuDV6iex/4.png b/vlm/train/rkuDV6iex/4.png new file mode 100644 index 0000000000000000000000000000000000000000..feaffe5a1c00d7602da8a7a6324b429b8918e74a --- /dev/null +++ b/vlm/train/rkuDV6iex/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b3bc64b3a7cfc6997f9a449fb366fe8161e033c92bf24afe0eda71e1e83f6b +size 299506 diff --git a/vlm/train/rkuDV6iex/5.png b/vlm/train/rkuDV6iex/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2066f160c91bad7b5854f7aa3550cb180e106fdf --- /dev/null +++ b/vlm/train/rkuDV6iex/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417aa08445c03743b410859523ae26d95c44b7f393b69726d1dee45211aed63e +size 447439 diff --git a/vlm/train/rkuDV6iex/6.png b/vlm/train/rkuDV6iex/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8b592aa95e832a5179786616782b7694211ca0bd --- /dev/null +++ b/vlm/train/rkuDV6iex/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14be753ccecfc3f3cf100d6a422333d55809c8e2506cf5640e87c220fc56bfae +size 403349 diff --git a/vlm/train/rkuDV6iex/7.png b/vlm/train/rkuDV6iex/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1023ecbd2ebf4efa08fbeea691822f3352d94834 --- /dev/null +++ b/vlm/train/rkuDV6iex/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de36b7427607a5e5b5c0ca1b130ea18c411da988bf0989c38243e5174e8757ec +size 394227 diff --git a/vlm/train/rkuDV6iex/8.png b/vlm/train/rkuDV6iex/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ea3b2124dd09123a6704c53ad50ba19f65732d --- /dev/null +++ b/vlm/train/rkuDV6iex/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8023f9c41ff15741f3ceb48ad8ecd2396798dc4526a078bf9a729f4f3a1b2b +size 563776 diff --git a/vlm/train/rkuDV6iex/9.png b/vlm/train/rkuDV6iex/9.png new file mode 100644 index 0000000000000000000000000000000000000000..327137c0efe2fe281b50b003a864dce990d772fd --- /dev/null +++ b/vlm/train/rkuDV6iex/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e3c936853a1f581fb3061c6c7734382a51d3864304cd0dc69a14d9feb98495 +size 481176 diff --git a/vlm/train/tkAtoZkcUnm/0.png b/vlm/train/tkAtoZkcUnm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..504626548df950d5ad03d74cd0fb2e0dd2cf10aa --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc1f27fced03417ff935dd3b29d6984f09e9dc5b44dd3149066d6e3070ad93c +size 476138 diff --git a/vlm/train/tkAtoZkcUnm/1.png b/vlm/train/tkAtoZkcUnm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b578e169b42326d287288d5f5db2122b657bdc73 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813f2d24d14cbacefa53b20a308bdc15b4d7751bcf54331cc337e9c11e14d242 +size 540648 diff --git a/vlm/train/tkAtoZkcUnm/10.png b/vlm/train/tkAtoZkcUnm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1ca5e05c5c491d10d89b650130b7da016f4f07e4 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f267d0d39f0e58f6a1bd6490b25e4b8a884c0742e89ff739851c3869bc0aba +size 566854 diff --git a/vlm/train/tkAtoZkcUnm/11.png b/vlm/train/tkAtoZkcUnm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d1d613f26e60540cea409b3f60b934193ba97d97 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a224ce82a3477a08dbfb710f10fd2d73635a58771f2ed6d93051b957647c663 +size 233955 diff --git a/vlm/train/tkAtoZkcUnm/12.png b/vlm/train/tkAtoZkcUnm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6162bdb18a741a7adf5202c52d6f328ab5252c5e --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb3dcd230d83c7aa6b990bf2c856f2e030e4c3e9c1d3b0881f918974375e9bd +size 459645 diff --git a/vlm/train/tkAtoZkcUnm/13.png b/vlm/train/tkAtoZkcUnm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..844de83f0e6bd013bec96cc301c349c2c017b657 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5fcf777ad662e8c263aba59009ebb4f3fd1847cbf38e57447b6ae57a82a3a32 +size 345254 diff --git a/vlm/train/tkAtoZkcUnm/14.png b/vlm/train/tkAtoZkcUnm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..05e879b1f927e29021c055ba5c2783f098332691 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e060a1fb316d4df93b33af8f91a1fcf00aff6d85f177890f5ddc89725572ac +size 354263 diff --git a/vlm/train/tkAtoZkcUnm/15.png b/vlm/train/tkAtoZkcUnm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d96187fbe0cc6c9d49887cf69a06038291eedf18 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00574934511413def8e9c92cd6d9d430e59af6545f54f64800ce813ea3896e2 +size 369117 diff --git a/vlm/train/tkAtoZkcUnm/16.png b/vlm/train/tkAtoZkcUnm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..22aca1ade542ee7c8f45ef855f6fb45be54e2af8 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4797faaa8ef07e5115d8cb7907265f8beaa857e14ee0da279fcc92f96b6dcd01 +size 444490 diff --git a/vlm/train/tkAtoZkcUnm/17.png b/vlm/train/tkAtoZkcUnm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..381f1b478ee5e333635539f00a6e1db3a86e12ff --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001beaaf8a46d75e382caa5deff967ef2a80fa934744d96ac8257a29d95e81b3 +size 351039 diff --git a/vlm/train/tkAtoZkcUnm/18.png b/vlm/train/tkAtoZkcUnm/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fda937bddefa10b299cca249e321ad9bbe94cc24 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122d20e919f2e18d9e15c0bfbd3ec6f7969ab2f7ed9badd14f1ec733330e9d06 +size 320474 diff --git a/vlm/train/tkAtoZkcUnm/19.png b/vlm/train/tkAtoZkcUnm/19.png new file mode 100644 index 0000000000000000000000000000000000000000..6bdaf74b5958c278c6483c596ccc32ff0e5f5947 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85999b1d3de7b733c3369bbf4e6ab67895bf24e81c41a34842fd63fe96999e5c +size 359316 diff --git a/vlm/train/tkAtoZkcUnm/2.png b/vlm/train/tkAtoZkcUnm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f23b8771f0da63c17c29a88c79d0689a02fe8d2c --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e8b89f15481683b1600ba5028b539de300677a265838f078b186c52567ffd5 +size 498209 diff --git a/vlm/train/tkAtoZkcUnm/20.png b/vlm/train/tkAtoZkcUnm/20.png new file mode 100644 index 0000000000000000000000000000000000000000..bba112eb9784af74df27901661947e2c8d33e1b3 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08317c51a7c5f71e2b570fecc86485751f27ecc82612f646366a5fff278aefb +size 388897 diff --git a/vlm/train/tkAtoZkcUnm/21.png b/vlm/train/tkAtoZkcUnm/21.png new file mode 100644 index 0000000000000000000000000000000000000000..99370cff86880604610677bb08534b34dc5b3c82 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58ba1bee9abc74b4bc64e42080fadc664f47076a468882968a62f9cbfd16a8d +size 383377 diff --git a/vlm/train/tkAtoZkcUnm/22.png b/vlm/train/tkAtoZkcUnm/22.png new file mode 100644 index 0000000000000000000000000000000000000000..9f3c4d377d5ec378666cccd4cd3030070803dd21 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d4f1bcc7c2e71b70869bd3adb11cbecb28f3e653599367393e99718e808850 +size 412965 diff --git a/vlm/train/tkAtoZkcUnm/23.png b/vlm/train/tkAtoZkcUnm/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c6047f8d5b20675098b8c2a4cfebed9e37bf8023 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e960a4ad92f4edd2a005b5c0aeaf603d9f68a92b5ef14afb209d32174f2e84b3 +size 323720 diff --git a/vlm/train/tkAtoZkcUnm/24.png b/vlm/train/tkAtoZkcUnm/24.png new file mode 100644 index 0000000000000000000000000000000000000000..4b48e69b619df7f87b1f35a90793e82e03da36c4 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e94679781d0c21d9f2344d459d3da43858bda17683307b49a5b0341bd7150e +size 422644 diff --git a/vlm/train/tkAtoZkcUnm/25.png b/vlm/train/tkAtoZkcUnm/25.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0219eceace0f940f8cc386db3b45e5c2aa235c --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28191cc8e694e5e3621249adf5be7c11bb3b11a0b27233491db4d628b2fb3fdb +size 330679 diff --git a/vlm/train/tkAtoZkcUnm/3.png b/vlm/train/tkAtoZkcUnm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b05429a976a2a71c02257f48fa1dc301eebbdc28 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cad02779c537108e24dcbd88682093267d41ad53f885aa90ea2239eb8946281 +size 597565 diff --git a/vlm/train/tkAtoZkcUnm/4.png b/vlm/train/tkAtoZkcUnm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..39b96cd1345e58179a21e3f91365755153cc2f18 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7999a20cb18049b0d3b78f9e22410d4976e331fcf907455cad8e945ed267dd +size 506304 diff --git a/vlm/train/tkAtoZkcUnm/5.png b/vlm/train/tkAtoZkcUnm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d11a324533174e6b34e65c3a45342b644eb937 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a054f13a50042c3f270cd73c8af8dc2686381c6b7195f07fd102d3e5a4d2303 +size 396757 diff --git a/vlm/train/tkAtoZkcUnm/6.png b/vlm/train/tkAtoZkcUnm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d71371eff7d6cf6adfd06e70966449bd0d7eddc --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a72e4524c0e154004a0d4bdc453a1cc819be514130f1c85969d01fbb756d27 +size 517147 diff --git a/vlm/train/tkAtoZkcUnm/7.png b/vlm/train/tkAtoZkcUnm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9ed07241401218685efb2b30e969400b76bd7d85 --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b5cbe30bff6b4fe4c243824b391048eac17b6cec082da0ca3a8a29c83539f9 +size 512240 diff --git a/vlm/train/tkAtoZkcUnm/8.png b/vlm/train/tkAtoZkcUnm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e594c43eb382555b2fbe9a3b7d6739801c30a64a --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd64cee7c87954e68932c89a7c7d8202601fe68bdc7a78b56bdc3b8f3ea6c851 +size 538569 diff --git a/vlm/train/tkAtoZkcUnm/9.png b/vlm/train/tkAtoZkcUnm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..00a1314d8bedd88a98bb678dcea7138bc0375fcc --- /dev/null +++ b/vlm/train/tkAtoZkcUnm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00681289fa1a5ada1dc2ca95886b8a8bb8abd7bd5a7e4841fb626c08cf39f6c +size 561547 diff --git a/vlm/train/wWK7yXkULyh/0.png b/vlm/train/wWK7yXkULyh/0.png new file mode 100644 index 0000000000000000000000000000000000000000..16588f24af338639511059b8b2fb2e58cf24df07 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b789a75a09a3c8c5ea15538cacc2e75cea5323d0d22447c366084b967d047ed6 +size 546239 diff --git a/vlm/train/wWK7yXkULyh/1.png b/vlm/train/wWK7yXkULyh/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cf9929ec8669148bd3f45036fb1078ff75c8dc16 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:603d5ffe2fb27247af9193bf336970e54c76dc7970d337e47edda0ba17b32448 +size 634419 diff --git a/vlm/train/wWK7yXkULyh/10.png b/vlm/train/wWK7yXkULyh/10.png new file mode 100644 index 0000000000000000000000000000000000000000..613f0f025d9a55ecdcbb5d85a98d6307da33efe0 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70ad26b340ac71d967e8edfbfb8ae421ff185992271396137b841c66cd88ab0 +size 567340 diff --git a/vlm/train/wWK7yXkULyh/11.png b/vlm/train/wWK7yXkULyh/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b52ea743cfbefa1a34a677492d9cb2964da0596f --- /dev/null +++ b/vlm/train/wWK7yXkULyh/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d92d6258d4cea23b234f64caf9ad87983f5fd02a13db315d328c47952ffc28d +size 503022 diff --git a/vlm/train/wWK7yXkULyh/12.png b/vlm/train/wWK7yXkULyh/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2e5e503281fffc453291c9255e8fee3507e6505d --- /dev/null +++ b/vlm/train/wWK7yXkULyh/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46f17b261ea8626f095e9a5fe6053bb1764083c939beb9a85f4606c776ad6cf +size 589036 diff --git a/vlm/train/wWK7yXkULyh/13.png b/vlm/train/wWK7yXkULyh/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6b3cb0b464dbb698d8a60e7fc579f3205f3fd9 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff87a9eef7adff3c7887992419186ae3d5384f87bb8612788c1a4c793dc51451 +size 115279 diff --git a/vlm/train/wWK7yXkULyh/14.png b/vlm/train/wWK7yXkULyh/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a37e9ed33cd7357d900c46c258b7a9b8d6521839 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c49f25fc139968c869b3dccd6bcf1324f529d5024338f16dcd7509c7eccb7ae7 +size 157246 diff --git a/vlm/train/wWK7yXkULyh/15.png b/vlm/train/wWK7yXkULyh/15.png new file mode 100644 index 0000000000000000000000000000000000000000..49df71dc225c794dd0e0084e8fda79254300b113 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130d7c4cc190aec7918d41ca4c9a165461c3e0a93a6fa5449e427ad965f7f024 +size 421151 diff --git a/vlm/train/wWK7yXkULyh/16.png b/vlm/train/wWK7yXkULyh/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4b8e6e92b531d87bd8689c89c1124509fbae9ed2 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e561991229454a7cc0f39da654b2c47a4d73174f982ca22377244d1a4555a8ec +size 478164 diff --git a/vlm/train/wWK7yXkULyh/17.png b/vlm/train/wWK7yXkULyh/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0718da580941372a893a8212745fbbaa59117c21 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6b6229183689775ccb1864a9cec4c7cd61792e6f846cd60c4a347b83ab4382 +size 367259 diff --git a/vlm/train/wWK7yXkULyh/18.png b/vlm/train/wWK7yXkULyh/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8351e51ae88000e375c7c71b244830645ec98602 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa666888a3598eed4a487fb460116950b8370085fe9f97d434d0f04b4a912284 +size 351900 diff --git a/vlm/train/wWK7yXkULyh/19.png b/vlm/train/wWK7yXkULyh/19.png new file mode 100644 index 0000000000000000000000000000000000000000..21928aede19191cf5991841117c836213600a1da --- /dev/null +++ b/vlm/train/wWK7yXkULyh/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c4d9bd1f755c6cf8869393d1f4ec95cb79656adbd18c79d59e53b5479b9e58 +size 288324 diff --git a/vlm/train/wWK7yXkULyh/2.png b/vlm/train/wWK7yXkULyh/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ed966df408dcaf90fa6335beb8667e4d5051d0f --- /dev/null +++ b/vlm/train/wWK7yXkULyh/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b55a9758276e96b7d83cd2e0bc822fde598bf499c0327d79517e7fe80af8df +size 625204 diff --git a/vlm/train/wWK7yXkULyh/20.png b/vlm/train/wWK7yXkULyh/20.png new file mode 100644 index 0000000000000000000000000000000000000000..3b45d87a7a5a6336a1bb400b8556831d6fb4da62 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f71f7932380dcf44eb4f395d349433dfe1f5a0b52b334d831a116c209e64bb +size 295739 diff --git a/vlm/train/wWK7yXkULyh/21.png b/vlm/train/wWK7yXkULyh/21.png new file mode 100644 index 0000000000000000000000000000000000000000..2740eb0d6ca5ec0135cf8d6a332c2f8163af1a00 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f85895f89e9d8e084fed0e0d57da831c07c0e11f8523568a7ee4c78a3feb8a9f +size 307785 diff --git a/vlm/train/wWK7yXkULyh/22.png b/vlm/train/wWK7yXkULyh/22.png new file mode 100644 index 0000000000000000000000000000000000000000..91ea91382cbfa0032f9a403c29ef01bbc7b74e8a --- /dev/null +++ b/vlm/train/wWK7yXkULyh/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e4c1c37cbd7f3f279e39637cb804900a4d3640a795367251af9291b3da37a5 +size 337133 diff --git a/vlm/train/wWK7yXkULyh/23.png b/vlm/train/wWK7yXkULyh/23.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d5581340f412be44368f26323d4c55fc0458ae --- /dev/null +++ b/vlm/train/wWK7yXkULyh/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702d81d36e5223e48cd8a30dfcdba77ac281bae3a4c00f871979dac29f416af0 +size 339577 diff --git a/vlm/train/wWK7yXkULyh/24.png b/vlm/train/wWK7yXkULyh/24.png new file mode 100644 index 0000000000000000000000000000000000000000..95272188d6486ddb6edcdf5145400f606da2f2c4 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb064d2ed8925955a927d6874c202333c6c4edb86f7b53adbe940339ea379a0e +size 164840 diff --git a/vlm/train/wWK7yXkULyh/25.png b/vlm/train/wWK7yXkULyh/25.png new file mode 100644 index 0000000000000000000000000000000000000000..0c8b8c1f0e02b281e91b4511b573b34d39a46696 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c6b71a5e436facdd89b29dbbde99893f1ab61fb313914173b7240f8fea78ed +size 360166 diff --git a/vlm/train/wWK7yXkULyh/26.png b/vlm/train/wWK7yXkULyh/26.png new file mode 100644 index 0000000000000000000000000000000000000000..879332ff1714def84062c693236f8b86f693fe91 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daeab01b60336a2ac6ca68aaa686773d44bc6b6399e85c33b19ff95125183b16 +size 267598 diff --git a/vlm/train/wWK7yXkULyh/27.png b/vlm/train/wWK7yXkULyh/27.png new file mode 100644 index 0000000000000000000000000000000000000000..46d0fe6ce156e2fcdf6d4d03692961a73e3dca9f --- /dev/null +++ b/vlm/train/wWK7yXkULyh/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a35486bf92a3de4f12752abf4cdbc54f7241b56af8b993288ff07f4cc006bd2 +size 501260 diff --git a/vlm/train/wWK7yXkULyh/28.png b/vlm/train/wWK7yXkULyh/28.png new file mode 100644 index 0000000000000000000000000000000000000000..08dacef30335b1a9ef81686bee57ce3d626fb8d9 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97168a5994abd601eb4eda5665bf9e6f48f24097ace9afc75750606171a9fb24 +size 407225 diff --git a/vlm/train/wWK7yXkULyh/29.png b/vlm/train/wWK7yXkULyh/29.png new file mode 100644 index 0000000000000000000000000000000000000000..0a85831670713d64e7daa7522c13fabe7a43ddf8 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6766ff5677471b286ab04fbfa774a079ed132509138432faefa1e500055c24c9 +size 157971 diff --git a/vlm/train/wWK7yXkULyh/3.png b/vlm/train/wWK7yXkULyh/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3004577156d60dcfc762bfb30f6b1b3a940b9176 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e632ac57aa3031468153cf3b71c893a03ffd95d32aad805ac2de7abdebe0ce59 +size 594838 diff --git a/vlm/train/wWK7yXkULyh/30.png b/vlm/train/wWK7yXkULyh/30.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e8070c09be86c7d3c2d482cec2d6980c609743 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee1079c2b2b008699f465c90044e2ba8a3839446c99c3381f13035bd7c2f61a +size 599215 diff --git a/vlm/train/wWK7yXkULyh/31.png b/vlm/train/wWK7yXkULyh/31.png new file mode 100644 index 0000000000000000000000000000000000000000..2021f3e92cc64f6799297c6a4142af3e5f3058b5 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e665f61d19155fe8200e99104d7dea6dac4e8cf3f1716b52a728cb77fd54ce6f +size 467263 diff --git a/vlm/train/wWK7yXkULyh/32.png b/vlm/train/wWK7yXkULyh/32.png new file mode 100644 index 0000000000000000000000000000000000000000..c2ee8c0d59e7d651d506eea47a3bf926c7b862a4 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79941d58a3945f888e93ab272303926809ce4fb042889d6cdfdd7a99e932ba9c +size 569609 diff --git a/vlm/train/wWK7yXkULyh/4.png b/vlm/train/wWK7yXkULyh/4.png new file mode 100644 index 0000000000000000000000000000000000000000..87fa37b91abae6b043030eae398c9084831ff66a --- /dev/null +++ b/vlm/train/wWK7yXkULyh/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56797d92b9f87a632df997d32eeb7bd6436b0e1692ca9a4b4ac5e491b7d006ff +size 558415 diff --git a/vlm/train/wWK7yXkULyh/5.png b/vlm/train/wWK7yXkULyh/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c9490f4330577303ffbf5bb5554bc528b7504e44 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fe7c82a5a6681699fbaddb1577e85b016d08121e27473cc2c038b5548e40ae +size 600920 diff --git a/vlm/train/wWK7yXkULyh/6.png b/vlm/train/wWK7yXkULyh/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9f3d29387dc0b8b73f02bb01e8935fffd9c74978 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc018b779b44cfdc82ade6fa6bdd5e4a9d636c94ca22652110dac8399e8b26f +size 620219 diff --git a/vlm/train/wWK7yXkULyh/7.png b/vlm/train/wWK7yXkULyh/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7c3ce13ce84e3ffbf00d5f4d730f6df00211703e --- /dev/null +++ b/vlm/train/wWK7yXkULyh/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1fd4a060c6134fecebb22b72dcc54141017c9bf8ac6f8bb69ace2adc3d51fe +size 625673 diff --git a/vlm/train/wWK7yXkULyh/8.png b/vlm/train/wWK7yXkULyh/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ff1d64da4274012413e98fddd6ed03254c828fe0 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8a68649577586e07c911f3fbfe641f52f1da35f13a582475c9f12314c31f3d +size 639233 diff --git a/vlm/train/wWK7yXkULyh/9.png b/vlm/train/wWK7yXkULyh/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8ffe10fd3589277683c00c5ae2bd2d99af2de3 --- /dev/null +++ b/vlm/train/wWK7yXkULyh/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0ee4bd37cd3204e2166f72b08289aafe1336ce2f787bf840007e91f9cefe0d +size 563668 diff --git a/vlm/train/yWkP7JuHX1/0.png b/vlm/train/yWkP7JuHX1/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f363b9725c0cf04d451c28e17a10bb9f1f5d6560 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8981244884b682dbe14b5c2512a47ec28201c8b33d7ee962c5a46ec17cd547 +size 468437 diff --git a/vlm/train/yWkP7JuHX1/1.png b/vlm/train/yWkP7JuHX1/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c0527d2578c8b842020b6594e342a8eb1024e112 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:742f6810ccad5958ecb28ac1959b2c23aab621dfd29a7905861a44dfcbfd1f09 +size 731691 diff --git a/vlm/train/yWkP7JuHX1/10.png b/vlm/train/yWkP7JuHX1/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0670d0a279a6448f48d38f4283fdbbbbc1716770 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c9ca2e05da6fd0f45e8c106197087d6468f730d8a2b5f8719015cdb59cd8c9 +size 568341 diff --git a/vlm/train/yWkP7JuHX1/11.png b/vlm/train/yWkP7JuHX1/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c032e60378a8495231cb9139598329a4887f562a --- /dev/null +++ b/vlm/train/yWkP7JuHX1/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa7a18d36dc9b6db5db6459525fedcc9dbc228af2d8968e37a9f76c6e5e7d80 +size 166870 diff --git a/vlm/train/yWkP7JuHX1/12.png b/vlm/train/yWkP7JuHX1/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7e711272047570f720de9b446ab355287872b362 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a5236ed6bf3484b50fa25d157511538752e00c51bc1f60533dfc6338c5fd1b +size 637521 diff --git a/vlm/train/yWkP7JuHX1/13.png b/vlm/train/yWkP7JuHX1/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d774872aa0ab01042518e94c8448d0bb41c4a484 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f55ad73a48ed309d0921dfb7b6abb21659222e24c604ac4be39d0aecf17eae +size 2014411 diff --git a/vlm/train/yWkP7JuHX1/14.png b/vlm/train/yWkP7JuHX1/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d45f47d32148d23fd9a6977b0825978a944c6cfa --- /dev/null +++ b/vlm/train/yWkP7JuHX1/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6883361da0fefa29eb6f3a571ebb67713426fd253a295bef4757be81e21269 +size 2663243 diff --git a/vlm/train/yWkP7JuHX1/15.png b/vlm/train/yWkP7JuHX1/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9534a4fb6e17f7928304b3f3b74c841ece3f0788 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43153db6a693aa73269cd78039b41da1556f7fd41ffddfbb5dfb32ef7e1509d7 +size 592072 diff --git a/vlm/train/yWkP7JuHX1/16.png b/vlm/train/yWkP7JuHX1/16.png new file mode 100644 index 0000000000000000000000000000000000000000..aa6e144aa52a83d459d9cb924c579e1839a10d4b --- /dev/null +++ b/vlm/train/yWkP7JuHX1/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234ddbd4f3bfcb060e871e5fbbecd600c44d26a832a1e2268bbf9552714fe37e +size 1575937 diff --git a/vlm/train/yWkP7JuHX1/17.png b/vlm/train/yWkP7JuHX1/17.png new file mode 100644 index 0000000000000000000000000000000000000000..08b710cca5983e170613cb00034454a69117cbac --- /dev/null +++ b/vlm/train/yWkP7JuHX1/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6beeb40d1a40a981cfa02dd973572078ff9a017e945e80a7e6bbcd976705289 +size 1479349 diff --git a/vlm/train/yWkP7JuHX1/18.png b/vlm/train/yWkP7JuHX1/18.png new file mode 100644 index 0000000000000000000000000000000000000000..e35cc922c01d83f35963fb320ab5ad417e4e19f0 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f01ca90f41cf747523f383a2b98f0fd57000d0ae8e768f00d98bfe76a76285c +size 1533514 diff --git a/vlm/train/yWkP7JuHX1/19.png b/vlm/train/yWkP7JuHX1/19.png new file mode 100644 index 0000000000000000000000000000000000000000..20eae54e823e4288308d0cde1cbf273c415674e3 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17b8fecfebb2c351f685c29c941da0d7d1db92b818b2f7622d59251f904daa59 +size 1657407 diff --git a/vlm/train/yWkP7JuHX1/2.png b/vlm/train/yWkP7JuHX1/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e4c59f9b20ef59743ec516521db42abb55bce9fc --- /dev/null +++ b/vlm/train/yWkP7JuHX1/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27fb5ccb0a29500d7e88d801fe6bb750539c56a0210ebd1485834af65bfe243 +size 1193858 diff --git a/vlm/train/yWkP7JuHX1/20.png b/vlm/train/yWkP7JuHX1/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b43011140abae71dc706e9e0607e5b7936101993 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2505f84d9c03a633eb25f1065a6b702b80ab19653231ee996d6f3e4e5218f965 +size 636861 diff --git a/vlm/train/yWkP7JuHX1/21.png b/vlm/train/yWkP7JuHX1/21.png new file mode 100644 index 0000000000000000000000000000000000000000..b8b32b33b63bb4e17eb794603d353760af70052a --- /dev/null +++ b/vlm/train/yWkP7JuHX1/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5ced454cf413c7f057cff13fcc52e3580b2c02a6381a0ba505c6dac9654d1e +size 1459427 diff --git a/vlm/train/yWkP7JuHX1/22.png b/vlm/train/yWkP7JuHX1/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc06acc552b9625a927c3b77b77303d23745236 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a2d0df571bd35c044ba0fe77d42246d12b0272c7fa345052b75fa1d930e029 +size 1946922 diff --git a/vlm/train/yWkP7JuHX1/23.png b/vlm/train/yWkP7JuHX1/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0d8b3c435881a562491b8ae803f867a35501a448 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca4945b5d44bbd6aa589d9ae5852f2fa2e6e543436fdda835844528dd24d7ae +size 1860225 diff --git a/vlm/train/yWkP7JuHX1/24.png b/vlm/train/yWkP7JuHX1/24.png new file mode 100644 index 0000000000000000000000000000000000000000..2f71d535bd2dbf7bcf4dfe6141a9262aff5696e3 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e040ba83c5b5e065188360e955ddb6970ea64a9380f793648f77b89cf5ade83 +size 1347691 diff --git a/vlm/train/yWkP7JuHX1/3.png b/vlm/train/yWkP7JuHX1/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d2ac00458cc7f4cd7a8c4715cdfcde1fdc21b087 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c295f8c54db0446c7284079add2d0717b3cb67aee57a8f69190c979c890dcd32 +size 609685 diff --git a/vlm/train/yWkP7JuHX1/4.png b/vlm/train/yWkP7JuHX1/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b46632dbddd1e55d1590eb08367d64c175abfbff --- /dev/null +++ b/vlm/train/yWkP7JuHX1/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb7f93886dfbbf6cb30e40626d4fffd4f0531596fce348403ca9ec38bc4d4ef +size 630862 diff --git a/vlm/train/yWkP7JuHX1/5.png b/vlm/train/yWkP7JuHX1/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5c325f0c2417b473975904c4dc46034700ffaec1 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780099f65a091ecc576493bdef740ab4fdb8a4a8f4be175d0f8ae4fd22e924e8 +size 989846 diff --git a/vlm/train/yWkP7JuHX1/6.png b/vlm/train/yWkP7JuHX1/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0a30e352a1db1149ac4459d6b5cd10a4503425cf --- /dev/null +++ b/vlm/train/yWkP7JuHX1/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4044886beac65b6ad26171855f0bfb37c2e556dec21160f68f0edc902e291833 +size 905388 diff --git a/vlm/train/yWkP7JuHX1/7.png b/vlm/train/yWkP7JuHX1/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5733c66ba58cd227ca4c4b875fff7800cf0fc8c8 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfadde60a94416107f20f0a82be1c42e319a5484d8afe5a515b18d9e83df278 +size 1669113 diff --git a/vlm/train/yWkP7JuHX1/8.png b/vlm/train/yWkP7JuHX1/8.png new file mode 100644 index 0000000000000000000000000000000000000000..607167b761b381bc2a99bbe987de90c60735a96c --- /dev/null +++ b/vlm/train/yWkP7JuHX1/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9396148c343039c4120c1635b080ef6ba4df05afc8a77b6659403478137bc9f2 +size 573049 diff --git a/vlm/train/yWkP7JuHX1/9.png b/vlm/train/yWkP7JuHX1/9.png new file mode 100644 index 0000000000000000000000000000000000000000..356c5cda0d5f2f2744dc2bc363fcf0ef511399f7 --- /dev/null +++ b/vlm/train/yWkP7JuHX1/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1ff8269ceb8ff959be5236c05696b8f79b02ee5a74c0e239f1f8a5b335984f +size 558810