Papers
Topics
Authors
Recent
Search
2000 character limit reached

LeGS in Robotics & 3D Gaussian Splatting

Updated 5 July 2026
  • LeGS is a polysemous term describing multiple systems in robotics, including humanoid loco-manipulation, 3D Gaussian splatting, semantic mapping, and exploratory grasping.
  • Some LEGS variants enhance 3D reconstruction by integrating techniques like Laplacian-based loss weighting and reinforcement learning for density control, leading to improved photorealism and lower operational costs.
  • Other LEGS approaches focus on robotic grasp optimization and passive gait synchronization, demonstrating efficiency through adaptive active sets and dynamic coupling in experimental setups.

Searching arXiv for the relevant LEGS papers to ground the article and disambiguate the acronym. LeGS, also written LEGS, is a polysemous label in recent arXiv literature rather than a single canonical method. In current usage it denotes distinct systems for humanoid loco-manipulation, structure-aware and learnable 3D Gaussian Splatting, room-scale semantic mapping, and exploratory grasping, while adjacent work on Extra Robotic Legs analyzes passive gait synchronization with related nomenclature (Kim et al., 31 May 2026, Guo et al., 6 Jun 2026, Ning et al., 1 May 2026, Yu et al., 2024, Fu et al., 2021, Gonzalez et al., 2020). The shared acronym masks substantial methodological divergence: some works use LEGS for simulator design and teleop-free data generation, some for loss shaping or density control in 3DGS, some for CLIP-grounded semantic mapping, and some for active-set Bayesian bandits in robotic manipulation.

1. Nomenclature and scope

The main arXiv uses of the label are summarized below.

arXiv id Expansion Problem setting
(Kim et al., 31 May 2026) Loco-Manipulation via Embodied Gaussian Splatting Teleop-free VLA fine-tuning for humanoid loco-manipulation
(Guo et al., 6 Jun 2026) Laplacian-Enhanced Gaussian Splatting Nonlinear structure-aware loss for 3DGS
(Ning et al., 1 May 2026) Learnable Density Control for 3D Gaussian Splatting RL policy for densify/clone/split/prune decisions
(Yu et al., 2024) Language-Embedded Gaussian Splats Online room-scale semantic mapping with open-vocabulary queries
(Fu et al., 2021) Learning Efficient Grasp Sets Exploratory grasping via adaptive active sets
(Gonzalez et al., 2020) Extra Robotic Legs Passive quadrupedal gait synchronization

These works are unrelated in authorship, task definition, and technical substrate, but several of them cluster around embodied perception and Gaussian Splatting. The overlap is strongest among the 2024–2026 3DGS papers, where LEGS/LeGS designates either a rendering loss, a density-control policy, a semantic map representation, or a humanoid simulation environment.

2. LEGS as teleop-free humanoid loco-manipulation

“LEGS: Fine-Tuning Teleop-Free VLAs for Humanoid Loco-manipulation in an Embodied Gaussian Splatting World” defines LEGS as “Loco-manipulation via Embodied Gaussian Splatting,” a hybrid simulator that composites a mesh foreground over a photorealistic 3D Gaussian Splatting background reconstructed from handheld capture (Kim et al., 31 May 2026). The motivation is the cost and complexity of human teleoperation for humanoid loco-manipulation, especially when scaling across scenes and appearance conditions.

The simulator reconstructs a static background by capturing a 1–2 minute handheld video, estimating camera poses via COLMAP SfM, and fitting a field of 3D Gaussians by minimizing photometric rendering error. Its rendering model is written as

C(x)=iwiexp ⁣[12(xμi)TΣi1(xμi)].C(x)=\sum_i w_i \exp\!\bigl[-\tfrac12 (x-\mu_i)^T \Sigma_i^{-1} (x-\mu_i)\bigr].

Dynamic elements are handled separately: robot, object, and prop meshes are rasterized under MuJoCo physics, then merged with the 3DGS render by a depth test. This design explicitly decouples physics and appearance.

A central technical component is a deterministic two-stage color calibration. Stage 1 rescales each mesh’s vertex colors to match its source photograph:

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).

Stage 2 fits a global linear RGB transform from 24-patch chart measurements:

M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.

The calibrated transform is then applied to every composite frame.

LEGS also replaces teleoperation with a procedural motion-primitive generator. Using privileged simulator state, it composes high-level Walk, Pick, and Place behaviors from parameterized lower-level primitives such as Align, Approach, Reach, and Adapt. Demonstrations are saved only after primitive-specific success checks such as VerifyHold and VerifyPlace. At 30 Hz, the system records composite RGB, robot proprioception, an 18-D high-level SONIC command, and ground-truth object poses and segmentation masks.

The resulting data are used to fine-tune three VLA backbones—ψ0\psi_0, π0.5\pi_{0.5}, and GR00T N1.6—under the same 18-D action space and fixed SONIC whole-body controller. The optimization target is behavior cloning cross-entropy or flow-matching on 18-D actions,

LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],

with a cosine learning-rate schedule and mixed precision for 20 k steps.

On a Unitree G1 humanoid robot, the reported end-task success rates over 10 trials show that LEGS-trained policies match or exceed teleoperation across all experiments. For Task 1, Teleop (50) obtains 8–2–4 and LEGS (200) obtains 10–6–9 for ψ0\psi_0π0.5\pi_{0.5}–GR00T N1.6; for Task 2, Teleop (50) gives 6–0–2 and LEGS (200) gives 9–5–8; for Task 3, Teleop (50) gives 0–0–0 and LEGS (200) gives 5–2–6 (Kim et al., 31 May 2026). The mesh-only SAM3D baseline underperforms LEGS, and the paper attributes this to photorealistic 3DGS backgrounds closing the visual transfer gap.

A further property of the simulator is that humanoid motion is recorded independently of scene appearance. The same trajectories can therefore be re-rendered under new backgrounds and object meshes. The paper reports that each new appearance costs ~0.1 hr GPU versus each new teleoperation scene at >1.5 hr, i.e. ~15× lower operator cost, and that only re-rendered LEGS-aug (200) retains high success under combined object-and-scene appearance shift, reaching up to 100% on easy tasks and 40% on Task 3 while Teleop (50), SAM3D (50), and LEGS (50) without re-render collapse to near 0% (Kim et al., 31 May 2026). Reported limitations are fixed-exposure color calibration, static-background assumptions, non-optimal procedural motions, narrow object variation, and evaluation on one platform and one controller.

3. LEGS as Laplacian-enhanced Gaussian Splatting

“LEGS: Laplacian-Enhanced Gaussian Splatting with a Nonlinear Weighted Loss” introduces a loss-level extension to 3DGS that reweights photometric errors according to second-order structure (Guo et al., 6 Jun 2026). The starting point is the standard 3DGS reconstruction loss,

L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),

which treats flat and structure-rich regions identically. The paper positions LEGS against EGGS, which uses first-order gradient weighting,

Wg(u,v)=1+βF(u,v)p,W_g(u,v)=1+\beta \|\nabla F(u,v)\|_p,

but still relies on linear response-to-weight mapping.

LEGS replaces first-order guidance with the Laplacian,

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).0

and forms a raw response map

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).1

This map is normalized per image,

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).2

then passed through one of five nonlinear mappings s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).3 to obtain s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).4 and final weights

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).5

The weighted photometric term is

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).6

and the full objective is

s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).7

The method is explicitly described as leaving the original 3DGS rendering pipeline unchanged. No architectural or renderer modifications are required; only the reconstruction loss is replaced. This makes the method a plug-in for other Gaussian Splatting systems.

The quantitative results reported on Tanks & Temples and Mip-NeRF360 are specific. The 3DGS baseline yields PSNR 26.67 dB and 29.32 dB; EGGS yields 27.90 and 30.48; LEGS-L, which is second-order but linear, yields 27.88 and 30.39; and full LEGS with nonlinear s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).8 weighting yields 28.20 and 31.00 (Guo et al., 6 Jun 2026). The reported gains are therefore up to 1.53 dB over 3DGS and 0.30 dB over EGGS on Tanks & Temples, and up to 1.68 dB over 3DGS and 0.52 dB over EGGS on Mip-NeRF360. When inserted into FastGS and FasterGS, the same second-order nonlinear weighting produces up to 1.69 dB PSNR improvement. Qualitatively, the paper attributes these gains to sharper contours, thinner structures, and less color bleeding across edges.

4. LeGS as learnable density control for 3D Gaussian Splatting

“Beyond Heuristics: Learnable Density Control for 3D Gaussian Splatting” uses the variant spelling “LeGS” and addresses a different failure mode in 3DGS: heuristic densification and pruning (Ning et al., 1 May 2026). Rather than altering the photometric loss, this work reformulates density control as a parameterized policy network trained by reinforcement learning.

Each Gaussian is represented by gradients with respect to its attributes, s(c)=clip(μT(c)/μS(c),0.5,3.0).s^{(c)}=\mathrm{clip}(\mu_T^{(c)}/\mu_S^{(c)},\,0.5,\,3.0).9, M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.0, M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.1, and M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.2, together with a sensitivity score M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.3. The policy network is a 3-layer MLP with hidden dimension 64 and SwiGLU activation. Its action space is discrete:

M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.4

The key reward signal is based on the marginal contribution of each Gaussian to reconstruction error. Sensitivity is defined as

M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.5

and the per-Gaussian reward across a refinement step is

M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.6

The paper further derives an M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.7 closed form for masked-out rendering,

M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.8

reducing reward calculation from naive M=argminMPQMF2=(QTQ)1QTP.M^*=\arg\min_M \|P-QM\|_F^2=(Q^TQ)^{-1}Q^T P.9 to ψ0\psi_00.

Policy optimization uses PPO with the clipped surrogate

ψ0\psi_01

and a maintain-action value baseline instead of a separate critic. Reported hyperparameters include discount ψ0\psi_02, GAE ψ0\psi_03, clip ψ0\psi_04, PPO epochs = 2, n-step = 2, and a learning-rate schedule of ψ0\psi_05.

Across Mip-NeRF360, Tanks & Temples, and Deep Blending, LeGS is reported to achieve the best PSNR/SSIM/LPIPS while using among the fewest Gaussians (Ning et al., 1 May 2026). On Mip-NeRF360, for example, it reports SSIM 0.837, PSNR 28.30, LPIPS 0.184, and 2.17M Gaussians, compared with FastGS* at 0.824, 27.73, 0.186, and 2.49M. On Tanks & Temples the corresponding LeGS figures are 0.871, 24.74, 0.142, and 1.63M. On Deep Blending they are 0.914, 30.35, 0.227, and 1.05M. The sensitivity computation itself is reported at 0.9 ms per tile versus ~30.5 ms for naive ψ0\psi_06 re-rendering.

The paper also reports overhead: on Mip-NeRF360, FastGS* takes 599 s total training time with 9 GB peak GPU memory, while LeGS takes 745 s with 12.6 GB (Ning et al., 1 May 2026). The stated limitations are additional RL overhead in time and memory, and the periodic cost of per-Gaussian sensitivity evaluation.

5. LEGS as language-embedded Gaussian splats

“Language-Embedded Gaussian Splats (LEGS): Incrementally Building Room-Scale Representations with a Mobile Robot” uses LEGS for online semantic mapping rather than rendering optimization (Yu et al., 2024). The scene is represented as anisotropic 3D splats with mean ψ0\psi_07, covariance ψ0\psi_08, opacity ψ0\psi_09, and color π0.5\pi_{0.5}0, and rasterized with front-to-back π0.5\pi_{0.5}1-blending. The semantic layer is a learned language feature field

π0.5\pi_{0.5}2

where π0.5\pi_{0.5}3 is a query point and π0.5\pi_{0.5}4 is a physical scale.

Feature images are rendered analogously to color, then supervised by CLIP image embeddings extracted from training RGB images at multiple crop scales. The language loss is

π0.5\pi_{0.5}5

At test time, an open-vocabulary text query is embedded with the CLIP text encoder, and each Gaussian receives a relevance score

π0.5\pi_{0.5}6

The splat with maximal π0.5\pi_{0.5}7 gives the predicted 3D location.

The mapping pipeline runs online on a 3-camera mobile robot: one forward-facing RealSense D455 RGB-D and two side-facing Zed-2 stereo cameras. DROID-SLAM operates on the left Zed stream, new keyframes initialize π0.5\pi_{0.5}8 splats by back-projecting random depth pixels, and every 150 keyframes the system invokes DROID-SLAM global bundle adjustment before continuing concurrent optimization of geometry, appearance, opacity, and language parameters. The reported wall-clock time for building and refining a room-scale representation is ≈12 minutes on two NVIDIA RTX 4090 GPUs.

Relative to LERF, the paper reports that LEGS converges to PSNR 20–24 dB in 12 minutes on average, whereas LERF requires 44 minutes for comparable image reconstruction quality, corresponding to a 3.5× speedup (Yu et al., 2024). Query evaluation over 4 room-scale scenes with 15 open-vocabulary queries per scene reports Office Kitchen 10/15 versus 9/15 for LERF, Office Dining 11/15 versus 11/15, Office Workspace 9/15 versus 10/15, and Grocery Store Testbed 10/15 versus 12/15. The summary states that LEGS can localize open-vocabulary and long-tail object queries with up to 66% accuracy, and also reports average recall ≈66% on long-tail objects. A single-camera ablation further shows that global bundle adjustment raises PSNR from 18.6 to 22.7 dB on a Realsense D435, from 20.0 to 23.5 dB on a D455, and from 19.2 to 23.8 dB on Zed 2 stereo.

The reported limitations are static-scene assumptions, pose degradation from motion blur and caster-wheel jitter, floating splats from sparse obstacle observations, and CLIP-induced language biases (Yu et al., 2024). The summary characterizes the system as the first to perform online, multi-camera, incremental 3D Gaussian splatting with end-to-end language grounding.

6. LEGS as learned efficient grasp sets

“LEGS: Learning Efficient Grasp Sets for Exploratory Grasping” predates the Gaussian Splatting usages and applies the acronym to robotic grasp discovery under a finite trial budget (Fu et al., 2021). The setting is exploratory grasping on novel or adversarial objects, modeled as a multi-armed bandit over stable poses and candidate grasps.

The formal objective is to minimize the optimality gap

π0.5\pi_{0.5}9

LEGS maintains a small adaptive active set LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],0 of grasps per pose rather than exploring the full reservoir uniformly. For each active grasp LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],1, the algorithm keeps a Beta posterior LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],2, updates LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],3 on success and LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],4 on failure, and computes confidence bounds

LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],5

Every LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],6 trials on a pose, grasps are pruned if they are locally suboptimal,

LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],7

or globally suboptimal,

LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],8

Discarded arms are replaced by new candidates ranked by a learned prior such as GQ-CNN from Dex-Net 4.0.

The algorithm also implements a high-confidence stopping rule. With a Dirichlet prior over pose-drop probabilities and posterior samples LBC=Es,a[logπ(as)],\mathcal{L}_{BC}=E_{s,a}[-\log \pi(a|s)],9, it forms overall success samples

ψ0\psi_00

then computes a lower confidence bound ψ0\psi_01 and stops when ψ0\psi_02.

The implementation reported in the summary uses a Dex-Net 4.0 antipodal grasp sampler producing ψ0\psi_03 candidates per pose, active set size ψ0\psi_04, resample interval ψ0\psi_05, confidence interval ψ0\psi_06, global threshold ψ0\psi_07, early-stop confidence ψ0\psi_08, and ψ0\psi_09 posterior samples (Fu et al., 2021). In simulation over 3000 grasp trials per object, LEGS achieves aggregate optimality gap 0.04±0.03 on Dex-Net Adversarial and 0.14±0.03 on EGAD!, compared with BORGES(100) at 0.13±0.07 and 0.25±0.04, and LEGS(-AS) at 0.22±0.06 and 0.28±0.04. The paper further states that LEGS achieves the lowest gap on 10/14 Dex-Net objects and 25/39 EGAD! objects.

The stopping rule is reported to be well calibrated: 95% of the time, LEGS’s 95%-confidence lower bound correctly underestimates true performance, with mean gap ≈3%, and across thresholds π0.5\pi_{0.5}0 the method stops in π0.5\pi_{0.5}1 trials, saving up to 70% of exploration time (Fu et al., 2021). In physical experiments on Bar Clamp, Pawn, and Pipe Connector, LEGS reaches >80% grasp success in ≈200 trials on the first two objects, while BORGES(2000) takes >600 trials; on Pipe Connector both methods converge slowly but LEGS maintains a small advantage.

7. Extra robotic legs and passive synchronization

The 2020 paper “Passive Quadrupedal Gait Synchronization for Extra Robotic Legs Using a Dynamically Coupled Double Rimless Wheel Model” is not a LEGS acronym paper in the same sense as the others, but it is closely adjacent in nomenclature because it studies Extra Robotic Legs (XRL) as a wearable locomotion system (Gonzalez et al., 2020). Its objective is to obtain a gait in which the rear robotic legs lead the human front legs by 25% of the gait period.

The modeling assumption is that the human and XRL can be approximated as two weakly coupled limit-cycle oscillators, each represented by a rimless wheel. For a single wheel, the swing dynamics are

π0.5\pi_{0.5}2

with impact reset

π0.5\pi_{0.5}3

The coupled system introduces a spring-dashpot torque

π0.5\pi_{0.5}4

which enters the two wheel equations with opposite signs. A Poincaré section is then constructed at wheel-1 impact, with reduced state

π0.5\pi_{0.5}5

The desired synchronized gait corresponds to a fixed point with π0.5\pi_{0.5}6 and π0.5\pi_{0.5}7, and local stability is determined by the eigenvalues of the Jacobian of π0.5\pi_{0.5}8.

Numerical analysis over nondimensional parameters π0.5\pi_{0.5}9 and L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),0 identifies an optimal region near

L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),1

with dominant eigenvalue magnitude L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),2 (Gonzalez et al., 2020). Converted back to physical units for the human-scale example, this corresponds to approximately L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),3 and L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),4.

The hardware realization uses two human-scale rimless wheels with L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),5 m, L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),6, and 12 spokes, connected by a spring with L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),7 N/m and a dashpot with L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),8 Ns/m on a L3DGS=(1λ)UF1+λDssim(U,F),L_{3DGS}=(1-\lambda)\|U-F\|_1+\lambda \, D_{ssim}(U,F),9 wooden ramp. An initial phase offset of ~21.6% converges to within ±6% of the desired 50% step-step phasing, i.e. 25% quadrupedal phasing, in 7 steps, and two trials settle within ±2° of the fixed point in under 5 s (Gonzalez et al., 2020). The paper frames this as evidence that passive components alone may achieve rapid synchronization, while also noting that fixed coupler parameters may degrade performance under changes in walking speed, slope, or operator mass.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to LeGS.