Pith. sign in

REVIEW 4 major objections 6 minor 3 cited by

SkillMimic-V2: Learning Robust and Generalizable Interaction Skills from Sparse and Noisy Demonstrations

T0 review · 4 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read Sparse, noisy demonstrations can be turned into generalizable robot interaction skills by augmenting them with a field of physically plausible transitions.

desk verdict A solid, system-level improvement for RLID that earns a real look, but the masked-buffer bridging story is less verified than the ablation numbers imply. read the letter →

arxiv 2505.02094 v1 pith:KUUNMAL6 submitted 2025-05-04 cs.LG cs.CV

classification cs.LGcs.CV
keywords CharacterAnimationHuman-ObjectInteractionReinforcementLearningManipulationDataAugmentationSkillTransitionImitationPhysics-BasedSimulation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to show that the information bottleneck in learning interaction skills from demonstrations is not the noise or sparsity of the data, but the failure to exploit the continuous space of physically feasible trajectories that surrounds any demonstration. Its proposal is to convert sparse clips into a dense training field: a Stitched Trajectory Graph (STG) connects states from different skill clips, and a State Transition Field (STF) assigns every state in an epsilon-neighborhood of the reference a unique transition back to the clip, with masked buffer states absorbing the long jumps. Training on this augmented field, it argues, lets a single Reinforcement Learning from Interaction Demonstration (RLID) policy master skills that never co-occur in the data, recover from perturbed states, and execute longer than the reference clips. The reported results support the claim on basketball and household tasks, with success rates rising from around 53% to 97% on the basketball benchmark and from 5.5% to 100% on the household benchmark.

What carries the argument

The load-bearing mechanism is the masked-buffer stitched trajectory: given two states judged similar, the method inserts N masked states as temporal buffers, where N is set by a similarity score, turning a long or physically impossible jump into a missing-data inpainting problem that RLID can solve from the imitation reward on visible states alone. STF builds a field of unique transition directions from every epsilon-neighborhood state back to its most similar reference state, avoiding the convergence ambiguity of naive neighborhood noise; STG expands this field across different skills' clips so transitions absent from the demonstrations become trainable. Adaptive Trajectory Sampling (ATS) reweights training clips according to their per-frame reconstruction reward, so hard segments are sampled more often and the chain break around corrupted frames is repaired. The History Encoder, pretrained by behavioral cloning and frozen during RLID, compresses the past k states into a compact embedding (dimension 3) so that memory-dependent transitions—states that look identical but require different futures—are disambiguated without manual phase specification.

What would settle it

Take two skill clips whose only physical bridge passes through an obstacle or through a pose unreachable in one simulation step, stitch them with the paper's connection rules, and train the full method; if skill-transition success remains at baseline while the visible-state rewards are high, the inpainting assumption fails. A minimal version: corrupt a middle segment of a single noisy clip, then test whether a policy initialized inside the masked region recovers to within the epsilon tolerance of the reference—if recovery stays near zero, the field has not bridged the gap it was designed to fill.

Watch

Extended reading notes

Core claim

The central claim is that infinitely many valid but uncaptured trajectories exist around any demonstration—bridging between demonstrated skills or emerging from their neighboring states—and that explicitly constructing them as training data is what separates robust skill acquisition from fragile imitation. The paper asserts that a masked-buffer trajectory, built by sampling an epsilon-neighborhood start, connecting it to its most similar reference state, and inserting mask tokens where transitions are too distant, is a well-posed inpainting problem for RLID: the imitation reward is computed only on visible states and the policy must fill in the masked gaps. On top of this, the Stitched Trajectory Graph (STG) adds transitions between different skills' clips, so skills that never appear together in the demonstrations become chainable, and the State Transition Field (STF) ensures each neighborhood state has a unique transition direction to avoid ambiguous convergence. The paper reports that this combination yields 96.9% average success rate and 93.8% average skill-transition success on BallPlay-M, versus 53.3% and 15.1% for the prior RLID baseline, and raises average success on the ParaHome household tasks from 5.5% to 100%.

Load-bearing premise

That a trajectory created by stitching two states together with masked buffer frames in between will be physically plausible and learnable: the RLID imitation reward, computed only on visible frames, is assumed to be enough for the policy to discover a valid transition across the masked gap, no matter how the gap was constructed.

Editorial extensions

If this is right

  • A single, brief demonstration clip (1-3 seconds) suffices to train a policy that can sustain a skill for at least 10 seconds; the paper reports Layup success rising from 0% to 91.5% with one noisy clip.
  • Skills never co-occurring in the reference data can be chained at test time; average skill-transition success on BallPlay-M reaches 93.8% versus 15.1% for the baseline.
  • Policies become robust to being initialized anywhere within an epsilon-neighborhood of the reference, not just at the reference states themselves, which is the basis for recovery from perturbations and object-pose generalization on ParaHome.
  • The augmentation machinery transfers beyond interaction: the same recipe improves locomotion skills on BallPlay-M (Run-to-Getup transition 100% versus 44.9% for the baseline) and turns discretely sampled grasp poses into continuous in-hand reorientation of a cube.
  • Data efficiency scales with augmentation: on ball pickup with 10 clips the method reaches 85.68% success versus 32.26% for the baseline, and with 40 clips 96.32% versus 82.84%.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • An editorial extension: the masked-buffer inpainting recipe is not tied to RLID—any trajectory optimizer or motion-inpainting model with a per-state fidelity cost could consume the same stitched graph, so the method's core idea may transfer to non-RL generation pipelines.
  • A testable prediction implied by the paper's construction: the similarity threshold tau and the maximum mask count N_max should control a phase transition in skill-transition success; sweeping those two hyperparameters over a fixed dataset would reveal the gap lengths the inpainting mechanism can bridge.
  • The paper's own noted limitation on heavily corrupted demonstrations suggests that the next version would need a learned dynamics prior to keep stitched trajectories physically plausible when the gaps are long—an extension the authors do not test.
  • If the in-hand reorientation result generalizes, the practical recipe for dexterous manipulation changes: capture a few grasp poses, exploit object symmetry to expand them, and let the transition field synthesize the motion, which could cut data collection costs substantially.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. This paper presents SkillMimic-V2, a data-augmentation and training framework for reinforcement learning from interaction demonstrations (RLID). Given sparse, noisy reference trajectories, the method (i) constructs a Stitched Trajectory Graph (STG) that connects states from different skill demonstrations, and (ii) builds a State Transition Field (STF) that assigns to each state in an epsilon-neighborhood of a reference state a unique directed transition to the most similar reference state, connected by a buffer of N masked (reward-excluded) frames that RLID is expected to 'inpaint.' Training uses Adaptive Trajectory Sampling (ATS) to up-weight hard clips and a pretrained History Encoder (HE) to provide temporal context. Experiments on the BallPlay-M basketball dataset and the ParaHome household dataset report large gains over the SkillMimic (SM) and DeepMimic (DM) baselines: on BallPlay-M, average SR rises from 53.3% to 96.9% and average TSR from 15.1% to 93.8%. Ablations (Tab. 3) attribute most of the gain to STG and STF, and additional experiments cover data noise, data efficiency, locomotion transfer, and in-hand reorientation.

Significance. If the reported results are reproducible, this is a substantial contribution: the masked-buffer idea is a clean mechanism for converting sparse interaction demonstrations into dense transition coverage, and the evaluation is unusually broad (two datasets, per-component ablations with negative controls SM+HS and SM+IAE, noise sweeps, data-efficiency curves, locomotion transfer, and a zero-shot reorientation application). The paper also states its limitation with heavily corrupted demonstrations in the conclusion. However, the significance is bounded by three gaps: the core inpainting mechanism rests on an unverified reachability assumption about the masked buffer (Sec. 4.3.2 and B.4); the headline TSR metric is measured on transition classes that STG itself injects into training, so the 'zero-shot' framing overstates what is tested; and all results are single-seed with no code release, so the claims are not yet independently checkable. These gaps are fixable but essential.

major comments (4)
  1. [Sec. 4.3.2, Eq. (20), Sec. B.4] The masked-buffer bridge length is N = min(-floor(log10(beta)), N_max) with N_max = 10 (Eq. 20, Tab. 9), i.e., at most 10 policy steps (about 0.167 s at 60 Hz), and the validity threshold is tau = 1e-10 (Tab. 9), so near-dissimilar STG edges are accepted with the full 10-frame buffer. The reward is computed only on visible states (Eq. 2; Sec. 4.3 states masked states are 'excluded from reward computation'), so if the physics simulator cannot move the humanoid and object from the sampled start state s_new to the visible reference state s_j within N steps, the first visible reward is near zero and the bridge supplies no learning signal; yet the paper reports no reachability check, no sensitivity study over N_max, and no error analysis of the generated bridge samples. Because Tab. 3 attributes the largest gains to STF and STG (SM+STF: 68.67% SR, SM+STG: 74.74% SR vs. SM: 53.30% SR), this mechanism is load-bearing, and the present evidence does not establish that the gains come from inpainting rather than from simple exposure to the target skill's own frames. I ask for (i) a sensitivity sweep over N_max (e.g., 2, 5, 10, 20, 40), (ii) a distributional analysis of achievable transition times for randomly sampled STG/STF edges under the simulator, or (iii) an explicit reachability filter at data-generation time.
  2. [Sec. 5.1, Tab. 1, Sec. 4.4] TSR is evaluated on the inter-skill pairs DL-DR, DF-DR, DF-Shot, and Layup-DFA (Tab. 1), which are exactly the classes of transitions that STG constructs during training: Sec. 4.4 and Algorithm 1 connect states from every other skill to each skill A, and Tab. 3 shows that STG alone raises TSR from 15.11% to 71.67%. The label 'zero-shot skill transition' (Fig. 3) is therefore misleading: the transitions are untrained with respect to the original demonstrations but trained-for with respect to the augmented corpus, and the only held-out variation is the epsilon-NSI perturbation. Please either evaluate TSR on transitions whose source skill was excluded from STG construction during training, or explicitly re-frame TSR as generalization to unseen instances of trained transition classes.
  3. [Sec. 5.2, Tabs. 1-7] All tables report a single number per entry with no standard deviation and no statement of the number of training seeds. The 10,000-trial evaluation (Sec. 5.1) averages over initial states only and does not capture the variance of PPO training, which is generally the dominant source of variance in this setting; entries such as the epsilon-NSR gap between SM+STG (28.91%) and SM+STF (36.96%) in Tab. 3, or the NR column in Tab. 1, are not interpretable without that variance. No code or pretrained models are provided. I request mean +/- std over at least three seeds for the main tables (Tabs. 1-3), or, failing that, a code release with a documented evaluation script so that the results can be reproduced independently.
  4. [Sec. 4.2-4.3] The paper uses 'theoretically' for both the coverage claim ('random initialization within the entire epsilon-neighborhood theoretically ensures complete coverage of states in S', Sec. 4.2) and the failure of naive NSI ('convergence issues both theoretically and empirically', Sec. 4.3), and asserts that the benefit of ATS follows 'as implied by Eq. 1,' but no formal statement or proof is given anywhere in the paper or appendix. The two claims are also in tension: if naive NSI fails because overlapping neighborhoods create non-unique transition targets, the uniqueness imposed by the STF connection rule (Eq. 6) must be shown to resolve that failure, not merely asserted. Please either provide a formal analysis of an idealized setting or remove the theoretical framing and label these arguments as heuristic motivations.
minor comments (6)
  1. [Sec. 1, Sec. 5.3, author block] Sec. 1 contains 'noisy and parse' (should be 'sparse'), the Sec. 5.3 heading reads 'Datase' (should be 'Dataset'), and the ACM reference block spells the author name 'Hok Wai Tusi' while the author list spells it 'Hok Wai Tsui'.
  2. [Tabs. 1-2] In the provided text the table entries run together (e.g., 'DM + Ours83.2' and '0.0993.4'), making the tables difficult to parse; please ensure clear cell separation in the final version.
  3. [Tab. 3, Sec. 5.4] The text says 'each proposed component yields substantial performance gains,' but adding HE alone decreases epsilon-NSR from 18.26% to 4.33%, and adding ATS to SM+STG+STF slightly lowers SR (77.12 to 76.44) and TSR (73.18 to 70.23); at least one sentence explaining these non-monotonic interactions is needed.
  4. [Eq. (8)] The ATS weights use average per-frame rewards r-bar_i, but the text does not state when these rewards are measured (current-policy rollouts vs. one-time estimates) or how they are updated during training; Fig. 3 mentions 'Reward Statistics' but the main text is silent on the update procedure.
  5. [Sec. 1] The headline '40-50% improvement' is ambiguous between absolute percentage points and relative improvement; in Tab. 1 the average SR increases from 53.3% to 96.9% (+43.6 points, about +82% relative), so please state the convention explicitly.
  6. [Conclusion] The limitation statement ('our framework shows limitations with heavily corrupted demonstrations') sits in tension with the noise experiments in Tab. 4 (sigma up to 30 mm), which show strong robustness; please clarify what 'heavily corrupted' means relative to the tested sigma range.

Circularity Check

2 steps flagged · score 4.0 of 10

TSR and εNSR are evaluated on transition/noise distributions that STG/STF themselves inject into training, so the 'zero-shot transition' and 'generalization' claims are partly trained-for; the core augmentation pipeline otherwise retains independent content.

  1. fitted input called prediction [Sec. 4.4 (Stitched Trajectory Graph), Sec. 5.1 (TSR metric), Fig. 3 caption]
    ""For each state in B, we employ similar connection rules as described in Sec. 4.3.2 to construct its path to trajectory A... we are essentially construct a Stitched Trajectory Graph (STG) of skill A" (Sec. 4.4); "Skill Transition Success Rate (TSR): the percentage of successful target skill executions when initialized from other skills" (Sec. 5.1); Fig. 3: "Robust Zero-Shot Skill Transition.""

    STG's training augmentation explicitly stitches states from every other-skill trajectory B to the target trajectory A and trains the policy on those stitched paths. TSR is then measured by initializing from other skills, i.e., from the same B states whose connections were synthesized and fed into RLID. The 'zero-shot transition' result is therefore evaluated on the augmented training distribution by construction, not on a held-out transition set. The ablation confirms this: adding STG raises TSR from 15.11 to 71.67, so TSR largely tracks the injected stitching. This is partial rather than total circularity because the policy must still learn to execute the stitched paths, and other components and datasets add independent evidence.

  2. fitted input called prediction [Sec. 4.3.1 (ε-NSI), Sec. 5.1 (εNSR), Table 1 footnote]
    ""we randomly select a time i and sample a new state 𝒔new uniformly from the 𝜺-neighborhood of the reference state ˆ𝒔𝑖 as the initial state of the sampled trajectory" (Sec. 4.3.1); "𝜺-Neighborhood Success Rate (𝜺NSR): this metric evaluates robustness and generalization capabilities by measuring the success rate when initializing from states sampled within an 𝜺-neighborhood of the reference trajectory" (Sec. 5.1); "The neighborhood range 𝜺 for 𝜺NSR test is consistent with training settings" (Table 1)."

    The εNSR test uses the same ε-neighborhood from which STF training samples perturbed initial states via ε-NSI, and Table 1 states explicitly that the test ε matches the training ε. Consequently, the reported 'generalization performance' gain is measured on the same distribution used to construct STF training data, so it is in-distribution robustness of the augmented training set rather than a held-out generalization range. The metric is still meaningful because the policy must actually reach the reference trajectory from those perturbed states, but framing it as generalization beyond the augmented training distribution overstates what is tested.

full rationale

Two evaluation claims are partly trained-for. STG explicitly constructs transitions from every other-skill state to the target skill and uses them as training data; TSR then reports success from exactly those other-skill states, so calling these transitions 'zero-shot' is true only relative to the original demonstrations, not relative to the augmented training set. Similarly, εNSR is evaluated with the same ε used by the STF training sampler, so it measures in-distribution robustness of the augmented distribution rather than generalization to a held-out range. These are distribution-overlap issues rather than mathematical derivations that reduce to their inputs; the policy still must learn to execute the stitched and perturbed trajectories, and the results are externally anchored by ParaHome evaluations, DeepMimic comparisons, and noise/data-efficiency ablations. The self-citations to SkillMimic (unified imitation reward, conditioning, baselines, and the BallPlay-M dataset) are reused components with independent benchmarks, not load-bearing uniqueness claims, so they do not raise the score beyond the evaluation-overlap concern. The masked-buffer reachability assumption of Eq. 20 with Nmax=10 is an unverified empirical premise and a correctness risk, but it is not circularity. Overall score 4 reflects partial circularity in the TSR/εNSR framing while the central augmentation pipeline retains substantial independent content.

Assumptions & free parameters 7 free parameters · 4 assumptions · 0 invented entities

The central claim rests mainly on hand-chosen data augmentation hyperparameters (N_max, tau, epsilon, p_e, p_n, lambda_s) and on two unproven domain assumptions: the existence of physically feasible bridging trajectories and the inpainting capability of RLID through masked states. No new physical entities are postulated.

free parameters (7)
  • epsilon-neighborhood radius (per state dim) = 0.1 for root pos/vel/rot, DOF, object pos/vel/rot (Tab. 9)
    Hand-chosen; defines STF coverage and the epsilon-NSR test distribution.
  • similarity threshold tau for valid connections = 1e-10 (Tab. 9)
    Essentially admits all connections, so STG/STF filtering is nearly inactive.
  • maximum masked states N_max = 10 (Tab. 9)
    Caps the inpainting distance between stitched states.
  • STG/STF sampling probabilities p_e, p_n = 0.1, 0.1 (Tab. 9)
    Control how often external states and neighborhood states are used as initialization.
  • ATS coefficients lambda_s and lambda_c = 10, 5 (Tab. 9)
    Control the curriculum emphasis on hard clips and hard skill classes.
  • history embedding dimension mu and horizon k = 3, 60 (Tab. 8)
    Hand-chosen; the 3-dim embedding is the entire temporal memory the policy receives.
  • policy variance Sigma_pi = 0.055 (Tab. 8)
    Fixed exploration variance; hand-chosen and annealed only via entropy in baseline comparisons.
assumptions (4)
  • domain assumption There exist infinite physically feasible trajectories that bridge demonstrated skills or emerge from their neighboring states
    Stated as the key insight in Sec. 1 and 4.2; not proven, foundational for STG/STF.
  • domain assumption RLID with masked states can inpaint physically infeasible or missing transitions from visible reference states
    Used in Sec. 4.3.2 and Eq. 7: masked states serve as temporal buffers and are excluded from reward, yet the policy is expected to reconstruct them.
  • domain assumption The SkillMimic multiplicative imitation reward (Eq. 2) is a valid similarity measure both for learning and for the STG/STF connection rules
    Borrowed from Wang et al. 2024c; all connection decisions and rewards use this metric.
  • domain assumption Isaac Gym's physics simulation reliably models the humanoid-object interactions
    Used for all experiments; standard in the field, but a simulation-to-real gap is unaddressed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of SkillMimic-V2: Learning Robust and Generalizable Interaction Skills from Sparse and Noisy Demonstrations." pith.science (2026). https://pith.science/paper/KUUNMAL6

@misc{pith2026250502094,
  author       = {Pith},
  title        = {Pith review of: SkillMimic-V2: Learning Robust and Generalizable Interaction Skills from Sparse and Noisy Demonstrations},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/KUUNMAL6}},
  note         = {Machine review of arXiv:2505.02094}
}
read the original abstract

We address a fundamental challenge in Reinforcement Learning from Interaction Demonstration (RLID): demonstration noise and coverage limitations. While existing data collection approaches provide valuable interaction demonstrations, they often yield sparse, disconnected, and noisy trajectories that fail to capture the full spectrum of possible skill variations and transitions. Our key insight is that despite noisy and sparse demonstrations, there exist infinite physically feasible trajectories that naturally bridge between demonstrated skills or emerge from their neighboring states, forming a continuous space of possible skill variations and transitions. Building upon this insight, we present two data augmentation techniques: a Stitched Trajectory Graph (STG) that discovers potential transitions between demonstration skills, and a State Transition Field (STF) that establishes unique connections for arbitrary states within the demonstration neighborhood. To enable effective RLID with augmented data, we develop an Adaptive Trajectory Sampling (ATS) strategy for dynamic curriculum generation and a historical encoding mechanism for memory-dependent skill learning. Our approach enables robust skill acquisition that significantly generalizes beyond the reference demonstrations. Extensive experiments across diverse interaction tasks demonstrate substantial improvements over state-of-the-art methods in terms of convergence stability, generalization capability, and recovery robustness.

Figures

Figures reproduced from arXiv: 2505.02094 by the authors.

Figure 1
Figure 1. Our framework enables physically simulated robots to learn robust and generalizable interaction skills from sparse [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Given a degraded reference trajectory containing [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Given sparse demonstrations (e.g., two short trajectories of Shot and Dribble), there exist infinite valid but uncaptured [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Qualitative comparison on BallPlay-M. Blue trajectories in (a,b) indicate executions beyond the reference Layup data [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Qualitative comparison on ParaHome. Humanoid performing (a,c) tea-pouring and teapot placement, (b,d) standing [PITH_FULL_IMAGE:figures/full_fig_p006_5.png]
Figure 6
Figure 6. Figure 6: Performance comparisons of the proposed approach against baselines across four key metrics. [PITH_FULL_IMAGE:figures/full_fig_p010_6.png]
Figure 7
Figure 7. Figure 7: Comparison of skill transition success rate (%) between five basketball skills. Our method demonstrates robust [PITH_FULL_IMAGE:figures/full_fig_p010_7.png]
Figure 8
Figure 8. Figure 8: Increasing and annealing the exploration rate in [PITH_FULL_IMAGE:figures/full_fig_p012_8.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 3 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Go to Zero: Towards Zero-shot Motion Generation with Million-scale Data

    cs.CV 2025-07 conditional novelty 6.0 of 10

    A 7B text-to-motion model trained on the new 2M-clip MotionMillion dataset is reported to generalize zero-shot to complex, out-of-domain prompts.

  2. CoDA: Coordinated Diffusion Noise Optimization for Whole-Body Manipulation of Articulated Objects

    cs.GR 2025-05 conditional novelty 6.0 of 10

    CoDA generates coordinated whole-body articulated-object manipulation by optimizing the noise of three decoupled diffusion models, guided by BPS-based end-effector and object trajectories.

  3. Tired Actor: Fatigue-Informed Character Control

    cs.RO 2026-08 conditional novelty 5.0 of 10

    Injecting a muscle-fatigue model into a general physics-based character controller preserves motion imitation accuracy while producing tired, more human-like behaviors such as shorter steps, corner cutting, and fall c...

Reference graph

Works this paper leans on

4 extracted references · 1 canonical work pages · cited by 3 Pith papers

  1. [4]

    In ACM SIGGRAPH 2023 Conference Proceedings

    Calm: Conditional adversarial latent models for directable virtual characters. In ACM SIGGRAPH 2023 Conference Proceedings . 1–9. Jiashun Wang, Jessica Hodgins, and Jungdam Won. 2024b. Strategy and skill learning for physics-based table tennis animation. InACM SIGGRAPH 2024 Conference Papers. 1–11. Ruicheng Wang, Jialiang Zhang, Jiayi Chen, Yinzhen Xu, Pu...

  2. [2002]

    ACM Transactions on Graphics (TOG) 21, 3 (2002), 491–500

    Interactive control of avatars animated with human motion data. ACM Transactions on Graphics (TOG) 21, 3 (2002), 491–500. Jiaman Li, Alexander Clegg, Roozbeh Mottaghi, Jiajun Wu, Xavier Puig, and C Karen Liu. 2023a. Controllable human-object interaction synthesis. arXiv preprint arXiv:2312.03913 (2023). Jiaman Li, Alexander Clegg, Roozbeh Mottaghi, Jiajun...

  3. [2023]

    Physically Plausible Full-Body Hand-Object Interaction Synthesis

    Physically plausible full-body hand-object interaction synthesis. arXiv preprint arXiv:2309.07907 (2023). Yuanpei Chen, Chen Wang, Yaodong Yang, and C Karen Liu. 2024. Object-centric dexterous manipulation from human motion data. arXiv preprint arXiv:2411.04005 (2024). Zhiyang Dou, Xuelin Chen, Qingnan Fan, Taku Komura, and Wenping Wang. 2023. C· ase: Lea...

  4. [2024]

    arXiv preprint arXiv:2403.10506 (2024)

    HumanoidBench: Simulated Humanoid Benchmark for Whole-Body Loco- motion and Manipulation. arXiv preprint arXiv:2403.10506 (2024). Sebastian Starke, Yiwei Zhao, Taku Komura, and Kazi Zaman. 2020. Local motion phases for learning multi-contact character movements. ACM Trans. Graph. 39, 4 (aug 2020). doi:10.1145/3386569.3392450 Sebastian Starke, Yiwei Zhao, ...

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.