Unified Human-Scene Interaction via
Prompted Chain-of-Contacts

Zeqi Xiao1,2, Tai Wang1, Jingbo Wang1, Jinkun Cao1,3, Wenwei Zhang1, Bo Dai1,
 Dahua Lin1, Jiangmiao Pang1
1
Shanghai AI Laboratory, 2S-Lab, NTU, 3CMU
Abstract

Human-Scene Interaction (HSI) is a vital component of fields like embodied AI and virtual reality. Despite advancements in motion quality and physical plausibility, two pivotal factors, versatile interaction control and user-friendly interfaces, require further exploration for the practical application of HSI. This paper presents a unified HSI framework, named UniHSI, that supports unified control of diverse interactions through language commands. The framework defines interaction as “Chain of Contacts (CoC)”, representing steps involving human joint-object part pairs. This concept is inspired by the strong correlation between interaction types and corresponding contact regions. Based on the definition, UniHSI constitutes a Large Language Model (LLM) Planner to translate language prompts into task plans in the form of CoC, and a Unified Controller that turns CoC into uniform task execution. To support training and evaluation, we collect a new dataset named ScenePlan that encompasses thousands of task plans generated by LLMs based on diverse scenarios. Comprehensive experiments demonstrate the effectiveness of our framework in versatile task execution and generalizability to real scanned scenes.

✉ Corresponding Author. Project page at this URL.
Refer to caption
Figure 1: UniHSI facilitates unified and long-horizon control in response to natural language commands, offering notable features such as diverse interactions with a singular object, multi-object interactions, and fine-granularity control.

1 Introduction

Human-Scene Interaction (HSI) constitutes a crucial element in various applications, including embodied AI and virtual reality. Despite the great efforts in this domain to promote motion quality (Holden et al., 2017; Starke et al., 2019; 2020; Hassan et al., 2021b; Zhao et al., 2022; Hassan et al., 2021a; Wang et al., 2022a) and physical plausibility (Holden et al., 2017; Starke et al., 2019; 2020; Hassan et al., 2021b; Zhao et al., 2022; Hassan et al., 2021a; Wang et al., 2022a), two key factors, versatile interaction control and the development of a user-friendly interface, are yet to be explored before HSI can be put into practical usage.

This paper aims to provide an HSI system that supports versatile interaction control through language commands, one of the most uniform and accessible interfaces for users. Such a system requires: 1) Aligning language commands with precise interaction execution, 2) Unifying diverse interactions within a single model to ensure scalability. To achieve this, the initial effort involves the uniform definition of different interactions. We propose that interaction itself contains a strong prior in the form of human-object contact regions. For example, in the case of “lie down on the bed”, it can be interpreted as “first the pelvis contacting the mattress of the bed, then the head contacting the pillow”. To this end, we formulate interaction as ordered sequences of human joint-object part contact pairs, which we refer to as Chain of Contacts (CoC). Unlike previous contact-driven methods, which are limited to supporting specific interactions through manual design, our interaction definition is generalizable to versatile interactions and capable of modeling multi-round transitions. The recent advancements in Large Language Models have made it possible to translate language commands into CoC. The structured formulation then can be uniformly processed for the downstream controller to execute.

Following the above formulation, we propose UniHSI, the first Unified physical HSI framework with language commands as inputs. UniHSI consists of a high-level LLM Planner to translate language inputs into the task plans in the form of CoC and a low-level Unified Controller for executing these plans. Combining language commands and background information such as body joint names and object part layout, we harness prompt engineering techniques to instruct LLMs to plan interaction step by step. We design the TaskParser to support the unified execution. It serves as the core of the Unified Controller. Following CoC, the TaskParser collects information including joint poses and object point clouds from the physical environment, then formulates them into uniform task observations and task objectives.

As illustrated in Fig. 1, the Unified Controller models whole-body joints and arbitrary parts of objects in the scenarios to enable fine-granularity control and multi-object interaction. With different language commands, we can generate diverse interactions with the same object. Unlike previous methods that only model a limited horizon of interactions, like “sitting down”, we design the TaskParser to evaluate the completion of the current steps and sequentially fetch the next step, resulting in multi-round and long-horizon transition control. The Unified control leverages the adversarial motion prior framework (Peng et al., 2021) that uses a motion discriminator for realistic motion synthesis and a physical simulation (Makoviychuk et al., 2021) to ensure physical plausibility.

Another impressive feature of our framework is the training is interaction annotation-free. Previous methods typically require datasets that capture both target objects and the corresponding motion sequences, which demand numerous laboring. In contrast, we leverage the interaction knowledge of LLMs to generate interaction plans. It significantly reduces the annotation requirements and makes versatile interaction training feasible. To this end, we create a novel dataset named ScenePlan. It encompasses thousands of interaction plans based on scenarios constructed from PartNet (Mo et al., 2019) and ScanNet (Dai et al., 2017) datasets. We conduct comprehensive experiments on ScenePlan. The results illustrate the effectiveness of the model in versatile interaction control and good generalizability on real scanned scenarios.

2 Related Works

Kinematics-based Human-Scene Interaction. How to synthesize realistic human behavior is a long-standing topic. Most existing methods focus on promoting the quality and diversity of humanoid movements (Barsoum et al., 2018; Harvey et al., 2020; Pavllo et al., 2018; Yan et al., 2019; Zhang et al., 2022a; Tevet et al., 2022b; Zhang et al., 2023b) but do not consider scene influence. Recently, there has been a growing interest in synthesizing motion with human-scene interactions, driven by its applications in various applications like embodied AI and virtual reality. Many previous methods (Holden et al., 2017; Starke et al., 2019; 2020; Hassan et al., 2021b; Zhao et al., 2022; Hassan et al., 2021a; Wang et al., 2022a; Zhang et al., 2022b; Wang et al., 2022b) use data-driven kinematic models to generate static or dynamic interactions. These methods are typically inferior in physical plausibility and prone to synthesizing motions with artifacts, such as penetration, floating, and sliding. The need for additional post-processing to mitigate these artifacts hinders the real-time applicability of these frameworks.

Physics-based Human-Scene Interaction. Recent advances in physics-based methods (e.g., (Peng et al., 2021; 2022; Hassan et al., 2023; Juravsky et al., 2022; Pan et al., 2023) hold promise for ensuring physical realism through physics-aware simulators. However, they have limitations: 1) They typically require separate policy networks for each task, limiting their ability to learn versatile interactions within a unified controller. 2) These methods often focus on basic action-based control, neglecting finer-grained interaction details. 3) They heavily rely on annotated motion sequences for human-scene interactions, which can be challenging to obtain. In contrast, our UniHSI redesigns human-scene interactions into a uniform representation, driven by world knowledge from our high-level LLM Planner. This allows us to train a unified controller with versatile interaction skills without the need for annotated motion sequences. Key feature comparisons are in Tab. 1.

Languages in Human Motion Control. Incorporating language understanding into human motion control has become a recent research focus. Existing methods primarily focus on scene-agnostic motion synthesis (Zhang et al., 2022a; Chen et al., 2023; Tevet et al., 2022a; b; Zhang et al., 2023a; b; Jiang et al., 2023) (Athanasiou et al., 2023). Generating human-scene interactions using language commands poses additional challenges because the output movements must align with the commands and be coherent with the environment. Zhao et al. (2022) generates static interaction gestures through rule-based mapping of language commands to specific tasks. Juravsky et al. (2022) utilized BERT (Devlin et al., 2018) to infer language commands, but their method requires pre-defined tasks and different low-level policies for task execution. Wang et al. (2022b) unified various tasks in a CVAE (Yao et al., 2022) network with a language interface, but their performance was limited due to challenges in grounding target objects and contact areas for the characters. Recently, there have been some explorations on LLM-based agent control. Brohan et al. (2023) uses fine-tuned VLM (Vision Language Model) to directly output actions for low-level robots. Rocamonde et al. (2023) employs CLIP-generated cos-similarity as RL training rewards. In contrast, UniHSI utilizes large language models to transfer language commands into the formation of Chain of Contacts and design a robust unified controller to execute versatile interaction based on the structured formation.

Table 1: Comparative Analysis of Key Features between UniHSI and Preceding Methods.
Methods Unified Interaction Language Input Long-horizon Transition Interaction Annotation-free Control Joints Multi-object Interactions
NSM Starke et al. (2019) 3 (pelvis, hands)
SAMP Hassan et al. (2021a) 1 (pelvis)
COUCH Zhang et al. (2022b) 3 (pelvis, hands)
HUMANISE Wang et al. (2022b) -
ScenDiffuser Huang et al. (2023) -
PADL Juravsky et al. (2022) -
InterPhys Hassan et al. (2023) 4 (pelvis, head, hands)
Ours 15 (whole-body)

3 Methodology

Refer to caption
Figure 2: Comprehensive Overview of UniHSI. The entire pipeline comprises two principal components: the LLM Planner and the Unified Controller. The LLM Planner processes language inputs and background scenario information to generate multi-step plans in the form of CoC. Subsequently, the Unified Controller executes CoC step by step, producing interaction movements.

As shown in Fig. 2, UniHSI supports versatile human-scene interaction control following language commands. In the following subsections, we first illustrate how we design the unified interaction formulation as CoC(Sec. 3.1). Then we show how we translate language commands into the unified formulation by the LLM Planner (Sec. 3.2). Finally, we elaborate on the construction of the Unified Controller (Sec. 3.3).

3.1 Chain of Contacts

The initial effort of UniHSI lies in the unified formulation of interaction. Inspired by Hassan et al. (2021b), which infers contact regions of humans and objects based on the interaction gestures of humans, we propose a high correlation between contact regions and interaction types. Further, interactions are not limited to a single gesture but involve sequential transitions. To this end, we can universally define interaction as CoC 𝒞, with the formulation as

𝒞={𝒮1,𝒮2,}, (1)

where 𝒮i is the ith contact step. Each step 𝒮 includes several contact pairs. For each contact pair, we control whether a joint contacts the corresponding object part and the direction of the contact. We construct each contact pair with five elements: an object o, an object part p, a humanoid joint j, the contact type c of j and p, and the relative direction d from j to p. The contact type includes “contact”, “not contact”, and “not care”. The relative direction includes “up”, “down”, “front”, “back”, “left”, and “right”. For example, one contact unit {o,p,j,c,d} could be {chair, seat surface, pelvis, contact, up}. In this way, we can formulate each 𝒮 as

𝒮={{o1,p1,j1,c1,d1},{o2,p2,j2,c2,d2},}. (2)

CoC is the output of the LLM Planner and the input of the Unified Controller.

3.2 Large Language Model Planner

We leverage LLMs as our planners to infer language commands into manageable plans 𝒞. As shown in Fig. 3, the inputs of the LLM Planner include language commands , background scenario information , humanoid joint information 𝒥 together with pre-set instructions, rules and examples. Specifically, includes several objects 𝒪 and their optional spatial layouts. Each object consists of several parts 𝒫, i.e., a chair could consist of arms, the back, and the seat. The humanoid joint information is pre-defined for all scenarios. We use prompt engineering to combine these elements together and instruct LLMs to output task plans. By modifying instructions in the prompts, we can generate specified numbers of plans for diverse ways of interactions. We can also let LLMs automatically generate plausible plans given the scenes. In this way, we build our interaction datasets to train and evaluate the Unified Controller.

3.3 Unified Controller

The Unified Controller takes multi-step plans 𝒞 and background scenarios in the form of meshes and point clouds as input and outputs realistic movements coherent to the environments.

Preliminary. We build the controller upon AMP (Peng et al., 2021). AMP is a goal-conditioned reinforcement learning framework incorporated with an adversarial discriminator to model the motion prior. Its objective is defined by a reward function R() as

R(𝒔t,𝒂t,𝒔t+1,𝒢)=wGRG(𝒔t,𝒂t,𝒔t+1,𝒢)+wSRS(𝒔t,𝒔t+1). (3)

The task reward RG defines the high-level goal 𝒢 an agent should achieve. The style reward RS encourages the agent to imitate low-level behaviors from motion datasets. wG and wS are empirical weights of RG and RS, respectively. 𝒔t, 𝒂t, 𝒔t+1 are the state at time t, the action at time t, the state at time t+1, respectively. The style reward RS is modeled using an adversarial discriminator D, which is trained according to the objective:

argminD𝔼d(𝒔t,𝒔t+1)[log(D(𝒔tA,𝒔t+1A))]𝔼dπ(𝒔,𝒔t+1)[log(1D(𝒔A,𝒔t+1A))] (4)
+wgp𝔼d(𝒔,𝒔t+1)[||ϕD(ϕ)|ϕ=(𝒔A,𝒔t+1A)||2],

where d(𝒔,𝒔t+1) and dπ(𝒔,𝒔t+1) denote the likelihood of a state transition from 𝒔t to 𝒔t+1 in the dataset and the policy π respectively. wgp is an empirical coefficient to regularize gradient penalty. 𝒔A=Φ(𝒔) is the observation for discriminator. The style reward rS=RS() for the policy is then formulated as:

RS(𝒔t,𝒔t+1)=log(1D(𝒔tA,𝒔t+1A)). (5)

We adopt the key design of motion discriminator for realistic motion modeling. In our implementation, we feed 10 adjacent frames together into the discriminator to assess the style. Our main contribution to the controller parts lies in unifying different tasks. As shown in the left part of Fig. 4 (a), AMP (Peng et al., 2021), as well as most of the previous methods (Juravsky et al., 2022; Zhao et al., 2023), design specified task observations, task objectives, and hyperparameters to train task-specified control policy. In contrast, we unify different tasks into Chains of Contacts and devise a TaskParser to process the uniform representation.

TaskParser. As the core of the Unified Controller, the TaskParser is responsible for formulating CoC into uniform task observations and task objectives. It also sequentially fetches steps for multi-round interaction execution.

Given one specific contacting pair {o,p,j,c,d}, for task observation, the TaskParser collects the corresponding position 𝒗j3 of the joint j, and point clouds 𝒗pm×3 of the object part p from the simulation environment, where m is the point number of point clouds. It selects the nearest point 𝒗np𝒗p from 𝒗p to 𝒗j as the target point for contact. We formulate task observation of the single pair as {𝒗np𝒗j,c,d}. For the task observation in the network, we map c and d into digital numbers, but we still use the same notation for simplicity. Combining these contact pairs together, we get the uniform task observations sU={{𝒗1np𝒗1j,c1,d1},{𝒗2np𝒗2j,c2,d2},,{𝒗nnp𝒗nj,cn,dn}}.

Refer to caption
Figure 3: The Procedure for Translating Language Commands into Chains of Contacts.

The task reward rG=RG() is the summarization of all contact pair rewards:

RG=kwkRk,k=1,2,,n. (6)

We model each contact reward Rk according to the contact type ck. When ck=contact, the contact reward encourages the joint j to be close to the part p, satisfying the specified direction d. When ck=notcontact, we hope the joint j is not close to the part p. If ck=notcare, we directly set the reward to max. Following the idea, the kth contact reward Rk is defined as

Rk={wdisexp(wdk𝒅k)+wdirmax(𝒅¯k𝒅^k,0),ck=contact1exp(wdk𝒅k),ck=notcontact1,ck=notcare (7)

where 𝒅k=𝒗np𝒗j indicates the kth distance vector, 𝒅¯k is the normalized unit vector of 𝒅k, 𝒅^k is the unit direction vector specified by direction dk, and ck is the kth contact type. wdis, wdir, wdk are corresponding weights. We set the scale interval of Rk as [0,1] and use exp to ensure it.

Similar to the formulation of contact reward, the TaskParser considers a step to be completed if All k=1,2,,n satisfy: if ck=contact:𝒅k<0.1and𝒅¯k𝒅^k>0.8, if ck=notcontact:𝒅k>0.1, if ck=notcare,True.

Adaptive Contact Weights. The formulation of 6 includes lots of weights to balance different contact parts of the rewards. Empirically setting them requires much laboring and is not generalizable to versatile tasks. To this end, we adaptively set these weights based on the current optimization process. The basic idea is to give parts of rewards that are hard to optimize high rewards while lowering the weights of easier parts. Given R1, R2, …, Rn, we heuristically set their weights to

wk=1Rknk=1,2,,nRk+e, (8)

Ego-centric Heightmap. The humanoid must be scene-aware to avoid collision when navigating or interacting in a scene. We adopt similar approaches in Wang et al. (2022a); Won et al. (2022); Starke et al. (2019) that sample surrounding information as the humanoid’s observation. We build a square ego-centric heightmap that samples the height of surrounding objects (Fig. 4 (b)). It is important to extend our methods into real scanned scenarios such as ScanNet (Dai et al., 2017) in which various objects are densely distributed and easily collide.

Refer to caption
Figure 4: Design Visualization. (a) Our framework ensures a unified design across tasks using the unified interface and the TaskParser. (b) The ego-centric height map in a ScanNet scene is depicted by green dots, with darker shades indicating greater height.
Table 2: Performance Evaluation on the ScenePlan Dataset.
Source Success Rate (%) Contact Error Success Steps
Simple Mid Hard Simple Mid Hard Simple Mid Hard
PartNet (Mo et al., 2019) 91.1 63.2 39.7 0.038 0.073 0.101 2.3 4.5 6.1
wo Adaptive Weights 21.2 5.3 0.1 0.181 0.312 0.487 0.7 1.2 0.0
wo Heightmap 61.6 45.7 0.0 0.068 0.076 - 1.8 3.4 0.0
ScanNet (Dai et al., 2017) 76.1 43.5 32.2 0.067 0.101 0.311 1.8 2.9 4.9

4 Experiments

Existing methods and datasets related to human-scene interactions mainly focus on short and limited tasks (Hassan et al., 2021a; Peng et al., 2021; Hassan et al., 2023; Wang et al., 2022b). To the best of our knowledge, we are the first method that supports arbitrary horizon interactions with language commands as input. To this end, we construct a novel dataset for training and evaluation. We also conduct various ablations with vanilla baselines and key components of our framework.

Refer to caption
Figure 5: Visual Examples Illustrating Tasks of Varying Difficulty Levels.

4.1 Datasets and Metrics

To facilitate the training and evaluation of UniHSI, we construct a novel ScenePlan dataset comprising various indoor scenarios and interaction plans. The indoor scenarios are collected and constructed from object datasets and scanned scene datasets. We leverage our LLM Planner to generate interaction plans based on these scenarios. The training of our model also requires motion datasets to train the motion discriminator, which constrains our agents to interact in natural ways. We follow the practice of Hassan et al. (2023) to evaluate the performance of our method.

ScenePlan. We gather scenarios for ScenePlan from PartNet (Mo et al., 2019) and ScanNet (Dai et al., 2017) datasets. PartNet offers indoor objects with fine-grained part annotations, ideal for LLM Planners. We select diverse objects from PartNet and compose them into scenarios. For ScanNet, which contains real indoor room scenes, we collect scenes and annotate key object parts based on fragmented area annotations. We then employ the LLM Planner to generate various interaction plans from these scenarios. Our training set includes 40 objects from PartNet, with 5-20 plausible interaction steps generated for each object. During training, we randomly choose 1-4 objects from this set for each scenario and select their steps as interaction plans. The evaluation set consists of 40 PartNet objects and 10 ScanNet scenarios. We construct objects from PartNet into scenarios either manually or randomly. We generated 1,040 interaction plans for PartNet scenarios and 100 interaction plans for ScanNet scenarios. These plans encompass diverse interactions, including different types, horizons, and multiple objects.

Motion Datasets. We use the SAMP dataset (Hassan et al., 2021a) and CIRCLE (Araújo et al., 2023) as our motion dataset. SAMP includes 100 minutes of MoCap clips, covering common walking, sitting, and lying down behaviors. CIRCLE contains diverse right and left-hand reaching data. We use all clips in SAMP and pick 20 representative clips in CIRCLE for training.

Metrics. We follow Hassan et al. (2023) that uses Success Rate and Contact Error (Precision in Hassan et al. (2023)) as the main metrics to measure the quality of interactions quantitatively. Success Rate records the percentage of trials that humanoids successfully complete every step of the whole plan. In our experiments, we consider a trial of n steps to be successfully completed if humanoids finish it in n×10 seconds. We also record the average error of all contact pairs:

ContactError=i,ci0eri/i,ci01,eri={𝒅k,ci=contactmin(0.3𝒅k,0).ci=notcontact (9)

We further record Success Steps, which denotes the average success step in task execution.

4.2 Performance on ScenePlan

We initially conducted experiments on our ScenePlan dataset. To measure performance in detail, we categorize task plans into three levels: simple, medium, and hard. We classify plans within 3 steps as simple tasks, those with more than 3 steps but with a single object as medium-level tasks, and those with multiple objects as hard tasks. Simple task plans typically involve straightforward interactions. Medium-level plans encompass more diverse interactions with multiple rounds of transitions. Hard task plans introduce multiple objects, requiring agents to navigate between these objects and interact with one or more objects simultaneously. Examples of tasks are illustrated in Fig. 5.

As shown in Table 2, UniHSI performs well in simple task plans, exhibiting a high Success Rate and low Error. However, as task plans become more diverse and complex, the performance of our model experiences a noticeable decline. Nevertheless, the Success Steps metric continues to increase, indicating that our model still performs well in parts of the plans. It’s important to note that the scenarios in the ScenePlan test set are unseen during training, and scenes from ScanNet exhibit a modality gap with the training set. The overall performance on the test set demonstrates the versatile capability, robustness, and generalization ability of UniHSI.

Table 3: Ablation Study on Baseline Models and Vanilla Implementations.
Methods Success Rate (%) Contact Error
Sit Lie Down Reach Sit Lie Down Reach
NSM - Sit (Starke et al., 2019) 75.0 - - 0.19 - -
SAMP - Sit (Hassan et al., 2021a) 75.0 - - 0.06 - -
SAMP - Lie Down(Hassan et al., 2021a) - 50.0 - - 0.05 -
InterPhys - Sit (Hassan et al., 2023) 93.7 - - 0.09 - -
InterPhys - Lie Down(Hassan et al., 2023) - 80.0 - - 0.30 -
AMP (Peng et al., 2021)-Sit 77.3 - - 0.090 - -
AMP-Lie Down - 21.3 - - 0.112 -
AMP-Reach - - 98.1 - - 0.016
AMP-Vanilla Combination (VC) 62.5 20.1 90.3 0.093 0.108 0.032
UniHSI 94.3 81.5 97.5 0.032 0.061 0.016
Refer to caption
Figure 6: Visual Ablations. (a) Our model exhibits superior natural and accurate performance compared to baselines in tasks such as “Sit” and “Lie Down”. (b) Our model demonstrates more efficient and effective training procedures.

4.3 Ablation Studies

4.3.1 Key Components Ablation

Choice of LLMs for UniHSI. We evaluated different Language Model (LM) choices

Table 4: UniHSI with different LLMs.
LLM Type ESR (%) PC (%)
Human 73.2 -
w. GPT-3.5 35.6 49.1
w. GPT-4 57.3 71.9

for the LLM Planner using 100 sets of language commands. We compared task plan Execution Success Rate (ESR) and Planning Correctness (PC) among humans, GPT-3.5OpenAI (2020), and GPT-4OpenAI (2023) across 10 tests per plan. PC is evaluated by humans, with choices of ”correct” and ”not correct”. GPT-4 outperformed GPT-3.5, but both LLMs still lag behind human performance. Failures typically involved incomplete planning and out-of-distribution interactions, like GPT-3.5 occasionally skipping transitions or generating out-of-distribution actions like opening a laptop. While using more rules in prompts and GPT-4 can mitigate these issues, errors can still occur.

Adaptive Weights. Table 2 demonstrates that removing Adaptive Weights from our controller leads to a substantial performance decline across all task levels. Adaptive Weights are crucial for optimizing various contact pairs effectively. They automatically adjust weights, reducing them for unused or easily learned pairs and increasing them for more challenging pairs. This becomes especially vital as tasks become more complex.

Ego-centric Heightmap. Removing the Ego-centric Heightmap results in performance degradation, especially for difficult tasks. This heightmap is essential for agent navigation within scenes, enabling perception of surroundings and preventing collisions with objects. This is particularly critical for challenging tasks involving complex scenarios and numerous objects. Additionally, the Ego-centric Heightmap is key to our model’s ability to generalize to real scanned scenes.

4.3.2 Design Comparison with Previous Methods

Baseline Settings. We compared our approach to previous methods using simple interaction tasks like “Sit,” “Lie Down,” and “Reach.” Direct comparisons are challenging due to differences in training data and code unavailability for a closely related method (Hassan et al., 2023; Starke et al., 2019; Hassan et al., 2021a). Thus we list the results from their papers and implement a simple version of InterPhys (Hassan et al., 2023). We integrated key design elements from Hassan et al. (2023) into our baseline model (Peng et al., 2021) to ensure fairness. Task observations and objectives were manually formulated for various tasks, following Hassan et al. (2023), with task objectives expressed as:

RG={0.7Rnear+0.3Rfar,if distance>0.5m0.7Rnear+0.3,otherwise (10)

In this equation, Rfar encourages character movement toward the object, and Rnear encourages specific task performance when the character is close, necessitating task-specific designs.

We also created a vanilla baseline by consolidating multiple tasks within a single model. We combined task observations from various tasks and included task choices within these observations. We randomly selected tasks and trained them with their respective rewards during training. This experiment involved a total of 70 objects (30 for sitting, 30 for lying down, and 10 for reaching) with 4096 trials per task and random variations in orientation and object placement during evaluation.

Quantitative Comparison. In Table 3, UniHSI consistently outperforms or matches baseline implementations across various metrics. The performance advantage is most pronounced in complex tasks, especially the challenging “Lie Down” task. This improvement stems from our approach of breaking tasks into multi-step plans, reducing task complexity. Additionally, our model benefits from shared motion transitions among tasks, enhancing its adaptability. Figure 6 (b) shows that our methods achieve higher success rates and converge faster than baseline implementations. Importantly, the vanilla combination of AMP (Peng et al., 2021) results in a noticeable performance drop in all tasks while our methods remain effective. This difference is because the vanilla combination introduces interference and inefficiencies in training, whereas our approach unifies tasks into consistent representations and objectives, enhancing multi-task learning.

Qualitative Comparison. In Figure 6 (a), we qualitatively visualize the performance of baseline methods and our model. Our model performs more naturally and accurately than the baselines in tasks like “Sit” and “Lie Down”. This is primarily attributed to the differences in task objectives. Baseline objectives (Eq. 10) model the combination of sub-tasks, such as walking close and sitting down, as simultaneous processes. Consequently, agents tend to perform these different goals simultaneously. For example, they may attempt to sit down even if they are not in the correct position or throw themselves like a projectile onto the bed, disregarding the natural task progression. On the other hand, our methods decompose tasks into natural movements through language planners, resulting in more realistic interactions.

5 Conclusion

UniHSI is a unified Human-Scene Interaction (HSI) system adept at diverse interactions and language commands. Defined as Chains of Contacts (CoC), interactions involve sequences of human joint-object part contact pairs. UniHSI integrates a Large Language Planner for command translation into CoC and a Unified Controller for uniform execution. Comprehensive experiments showcase UniHSI’s effectiveness and generalizability, representing a significant advancement in versatile and user-friendly HSI systems. Acknowledgement. We acknowledge Shanghai AI Lab and NTU S-Lab for their funding support.

Appendix A Limitations and Future Work.

Apart from the advantages of our framework, there are a few limitations. First, our framework can only control humanoids to interact with fixed objects. We do not take moving or carrying objects into consideration. Enabling humanoids to interact with movable objects is an important future direction. Besides, we do not integrate LLM seamlessly into the training process. In the current design, we use pre-generated plans. Involving LLM in the training pipeline will promote the scalability of interaction types and make the whole framework more integrated.

Appendix B Implementation Details

We follow Peng et al. (2021) to construct the low-level controller, including a policy and discriminator networks. The policy network comprises a critic network and an actor network, both of which are modeled as a CNN layer followed by two MLP layers with [1024, 1024, 512] units. The discriminator is modeled with two MLP layers having [1024, 1024, 512] units. We use PPO (Schulman et al., 2017) as the base reinforcement learning algorithm for policy training and employ the Adam optimizer Kingma & Ba (2014) with a learning rate of 2e-5. Our experiments are conducted on the IsaacGym (Makoviychuk et al., 2021) simulator using a single Nvidia A100 GPU with 8192 parallel environments.

Appendix C Detailed prompting example of the LLM Planner

As shown in Table. 7. We present the full prompting example of the input and output of the LLM Planner that is demonstrated in Fig. 2 and Fig. 3 of the main paper. The output is generated by OpenAI (2020). Notably, in Tab. 7, example 1 step 2 pair 2: the OBJECT is the chair and PART is the left knee. It’s a design choice. Our framework supports interactions between joints. We model the interaction between joints in the same way as the interaction with objects. We only need to replace the point cloud of the object part with a joint position. Some parts of the plans involve ”walking to a specific place,” which do not contain contacts. To model these special cases in our representations and execute them uniformly, we treat them as a pseudo contact: contacting the pelvis (root) to the target place point. This allows the policy to output a ”walking” movement. We represent such cases as {object, none, none, none, direction}. In the future study, we will collect a list of language commands and integrate ChatGPT OpenAI (2020) and GPT OpenAI (2023) into the loop to evaluate the performance of the whole framework of UniHSI.

Refer to caption
Figure 7: Illustration of a Multi-Object Interaction Scenario.
Refer to caption
Figure 8: Illustration of a Multi-Step Interaction Involving the Same Object.

Appendix D Details of the ScenePlan

We present three examples of different levels of interaction plans in the ScenePlan in Table 8, 9, and 10, respectively. Simple-level interaction plans involve interactions within 3 steps and with 1 object. Medium-level interaction plans involve more than 3 steps with 1 object. Hard-level interaction plans involve interactions of more than 3 steps and more than 1 object. Specifically, each interaction plan has an item number and two subitems named ”obj” and ”chain_of_contacts”. The ”obj” item includes information about objects like object ID, name, and transformation parameters. The ”chain_of_contacts” item includes steps of contact pairs in the form of CoC.

We provide the list of interaction types that are included in the training and evaluation of our framework in Table 11 and 12.

Appendix E More Visualizations

We further provide more quantitative results in Fig. 7, 8, 9.

Refer to caption
Figure 9: Illustration of Multi-Agent Interaction. Note: Achieving “multi-agent interaction” is presently limited to the commands level.

Appendix F Demonstration of failure planning

In Table 5, we showcase instances where LLMs encounter challenges in generating accurate plans. We bolded the failure in the plans. Plans produced by LLMs may occasionally falter in spatial relations. This issue is mainly attributed to their suboptimal grasp of spatial contexts. Furthermore, LLMs may occasionally devise plans involving object manipulation, presenting difficulties in successful execution at the current stage.

Table 5: Demonstration of Failure Planning.
Instruction: I want to get up from the bed and watch movies.
Output
Human GPT-3.5 (OpenAI, 2020) GPT-4 (OpenAI, 2023)
Step 1: Get up from the bed. Pair 1: {bed, mattress, torso, not contact, up} Pair 2: {bed, mattress, pelvis, contact, up} Step 2: Stand up from the bed. Pair 1: {bed, none, none, none, front} Step 3: Get close to the chair. Pair 1: {chair, none, none, none, front} Step 4: Sit on the chair. Pair 1: {chair, seat surface, pelvis, contact, up} Step 5: control the laptop. Pair 1: {laptop, keyboard, right hand, contact, up} Pair 2: {laptop, keyboard, left hand, contact, up} Step 1: Get up from the bed. Pair 1: {bed, none, none, none, up} Step 2: Get close to the chair. Pair 1: {chair, none, none, none, front} Step 3: Open the laptop. Pair 1: {laptop, screen, left hand, contact, up} Pair 2: {laptop, screen, right hand, contact, up} Step 4: Search for movies on the laptop. Pair 1: {laptop, keyboard, left hand, contact, up} Pair 2: {laptop, keyboard, right hand, contact, up} Step 1: Get up from the bed. Pair 1: {bed, mattress, torso, not contact, up} Step 2: Move away from the bed. Pair 1: {bed, none, none, none, back} Step 3: Get close to the chair. Pair 1: {chair, none, none, none, front} Step 4: Sit on the chair. Pair 1: {chair, seat surface, pelvis, contact, up} Step 5: Use the keyboard of the laptop to start a movie. Pair 1: {laptop, keyboard, right hand, contact, up} Pair 2: {laptop, keyboard, left hand, contact, up}

Appendix G User Study on Motion Reality.

To examine the global reality of the generated motion, we further conducted a user study on the evaluation of motion reality. The results are presented in the Table 6. The Naturalness score, ranging from 0 to 5, reflects the degree of perceived naturalness, with higher scores indicating a more natural movements. Similarly, the Semantic Faithfulness score ranges from 0 to 5. A higher score denotes a greater alignment with the semantic input.

However, quantitative evaluation is challenging at this stage and requires further exploration.

Table 6: User Study on Motion Reality.
Naturalness Semantic Faithfulness
AMPPeng et al., 2021-baseline 3.3 -
UniHSI-PartNetMo et al.,2019 4.2 4.2
UniHSI-ScanNetDai et al.,2017 3.9 4.1
Table 7: Exemplification of the LLM Planner through Detailed Prompting. This caption provides a comprehensive illustration of the input and output of the LLM Planner.
Input
Instruction: I want to play video games for a while, then go to sleep.
Background Information:
[start of background Information]
The room has OBJECTS: [bed, chair, table, laptop].
The [OBJECT: laptop] is upon the [OBJECT: table]. The [OBJECT: table] is in front of the [OBJECT: chair]. The [OBJECT: bed] is several meters away from [OBJECT: table]. The human is several meters away from these objects.
The [OBJECT: bed] has PARTS: [pillow, mattress]. The [OBJECT: chair] has PARTS: [back_soft_surface, seat_surface, left_armrest_hard_surface, right_armrest_hard_surface]. The [OBJECT: table] has PARTS: [board]. The [OBJECT: laptop] has PARTS: [screen, keyboard]. The human has JOINTS: [pelvis, left hip, left knee, left foot, right hip, right knee, right foot, torso, head, left shoulder, left elbow, left hand, right shoulder, right elbow, right hand].
[end of background Information]
Given the instruction and background information, generate 1 task plan according to the following rules and examples.
[start of rules]
1. Each task plan should be composite into detailed steps. If the human is not close to the target object, the first step should be to get close to the object.
2. Each step should contain meaningful joint-part pairs.
3. Each joint-part pair should be formatted into {OBJECT, PART, JOINT, Contact type, Contact Direcion}. Or if the step is getting close to an object, the step should be formatted into {none, none, none, none, relative direction of the target object}. JOINT should replace JOINT in the format in the background information. Important: PART in the format should only be replaced by PART or JOINT in the background information. The choices of Contact type include [contact, not contact]. The choices of Contact Direction include [front, back, left, right, up, down, none].
4. Be plausible. Do not generate uncommon interactions.
5. Only interact with still objects. Do not move objects.
[end of rules]
[start of an example]
Instruction: Generate a 6-step interaction with the object.
[start of background Information]
The room has a [OBJECT: chair].
The [OBJECT: chair] has PARTS: [back_soft_surface, armrest_hard_surface, armrest_hard_surface, seat_surface].
The human has JOINTS: [pelvis, left hip, left knee, left foot, right hip, right knee, right foot, torso, head, left shoulder, left elbow, left hand, right shoulder, right elbow, right hand].
The human is several meters away from the [OBJECT: chair].
[end of background Information]
Step 1: Get close to the chair.
Pair 1: {chair, none, none, none, front}
Step 2: Sit on the chair.
Pair 1: {chair, seat_surface, pelvis, contact, up}
Step 3: Rest the right hand on the right arm of the chair.
Pair 1: {chair, seat_surfac, pelvis, contact, up}
Pair 2: {chair, armrest_hard_surface, right hand, contact, up}
Step 4: Place the right foot on the left knee.
Pair 1: {chair, seat_surface, pelvis, contact, up}
Pair 2: {chair, left knee, right foot, contact, up}
Step 5: Stand up.
Pair 1: {chair, none, none, none, front}
Step 6: Sit on the chair.
Pair 1: {chair, seat_surface, pelvis, contact, up}
[end of an example]
Output
Step 1: Get close to the chair.
Pair 1: {chair, none, none, none, front}
Step 2: Sit on the chair.
Pair 1: {chair, seat_surface, pelvis, contact, up}
Step 3: Use the laptop to play video games.
Pair 1: {chair, seat_surface, pelvis, contact, up}
Pair 2: {laptop, keyboard, left hand, contact, up}
Pair 3: {laptop, keyboard, right hand, contact, up}
Step 4: Stand up from the chair.
Pair 1: {chair, none, none, none, front}
Step 5: Get close to the bed.
Pair 1: {bed, none, none, none, front}
Step 6: Sit on the bed.
Pair 1: {bed, mattress, pelvis, contact, up}
Step 7: Lie down on the bed.
Pair 1: {bed, mattress, pelvis, contact, up}
Pair 2: {bed, mattress, torso, contact, up}
Pair 3: {bed, pillow, head, contact, up}
Table 8: Illustration of Simple-Level Interaction Plans in ScenePlan. Simple-level interaction plans encompass interactions within three steps and involve a single object.
{
  “0000”:
  {
    “obj”:
    {
        “000”:
        {
          “id”: “12747”,
          “name”: “bed”,
          “rotate”: [[1.5707963267948966, 0, 0], [0, 0, -1.5707963267948966]],
          “scale”: 2.5,
          ”transfer”: [0,-2,0],
        }
    },
    “chain_of_contacts”: [[[“bed000”, “none”, “none”, “none”, “front”]],
              [[“bed000”, “mattress25”, “pelvis”, “contact”, “up”],
                  [“bed000”, “mattress25”, “head”, “not contact”, “up”]],
              [[“bed000”, “mattress25”, “pelvis”, “contact”, “up”],
                  [“bed000”, “mattress25”, “left_foot”, “contact”, “up”],
                  [“bed000”, “mattress25”, “right_foot”, “contact”, “up”],
                  [“bed000”, “mattress25”, “head”, “contact”, “up”]]]
  }
}
Table 9: Exemplar of Medium-Level Interaction Plans in ScenePlan. Medium-level interaction plans encompass interactions exceeding three steps and involving a single object.
{
  “0000”:
  {
    “obj”: {
        “000”:{
          “id”: “45005”,
          “name”: “chair”,
          “rotate”: [[1.5707963267948966, 0, 0], [0, 0, -1.5707963267948966]],
          “scale”: 1.5,
          “transfer”: [0,-2,0],
          }
        },
    “chain_of_contacts”: [[[“chair000”, “none”, “none”, “none”, “front”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”],
              [“chair000”, “back_soft_surface47”, “torso”, “contact”, “none”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”],
              [“chair000”, “back_soft_surface47”, “torso”, “contact”, “none”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”],
              [“chair000”, “arm_sofa_style44”, “left_hand”, “contact”, “up”],
              [“chair000”, “arm_sofa_style48”, “right_hand”, “contact”, “up”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”],
              [“chair000”, “arm_sofa_style44”, “left_hand”, “not contact”, “up”],
              [“chair000”, “arm_sofa_style48”, “right_hand”, “not contact”, “up”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”],
              [“chair000”, “left_knee”, “right_foot”, “contact”, “none”]],
              [[“chair000”, “seat_soft_surface42”, “pelvis”, “contact”, “up”],
              [“chair000”, “back_soft_surface47”, “torso”, “not contact”, “none”]],
              [[“chair000”, “none”, “none”, “none”, “front”]]]}
}
Table 10: An example of hard-level interaction plans in ScenePlan. Hard-level interaction plans involve interactions of more than 3 steps and more than 1 object.
{
  “0000”:
  {
    “obj”:
    {
      ”000”:
      {
        “id”: “37825”,
        “name”: “chair”,
        “rotate”: [[1.5707963267948966, 0, 0], [0, 0, -1.5707963267948966]],
        “scale”: 1.5,
        “transfer”: [0,-2,0]
      },
      “001”:
      {
        “id”: “21980”,
        “name”: “table”,
        “rotate”: [[1.5707963267948966, 0, 0], [0, 0, 1.5707963267948966]],
        “scale”: 1.8,
        “transfer”: [1,-2,0]
      },
      “002”:
      {
        “id”: “11873”,
        “name”: “laptop”,
        “rotate”: [[1.5707963267948966, 0, 0], [0, 0, 1.5707963267948966]],
        “scale”: 0.6,
        “transfer”: [0.8,-2,0.65]
      },
      “003”:
      {
        “id”: “10873”,
        “name”: “bed”,
        “rotate”: [[1.5707963267948966, 0, 0], [0, 0, -1.5707963267948966]],
        “scale”: 3,
        “transfer”: [-0.2,-4,0]
      }
    },
    “chain_of_contacts”: [[[“chair000”, “none”, “none”, “none”, “front”]],
            [[“chair000”, “seat_soft_surface58”, “pelvis”, “contact”, “up”]],
            [[“chair000”, “seat_soft_surface58”, “pelvis”, “contact”, “up”],
              [“laptop002”, “keyboard15”, “left_hand”, “contact”, “none”],
              [“laptop002”, “keyboard15”, “right_hand”, “contact”, “none”]],
            [[“chair000”, “none”, “none”, “none”, “front”]],
            [[“bed003”, “none”, “none”, “none”, “front”]],
            [[“bed003”, “mattress16”, “pelvis”, “contact”, “up”],
              [“bed003”, “mattress16”, “head”, “not contact”, “up”]],
            [[“bed003”, “mattress16”, “pelvis”, “contact”, “up”],
              [“bed003”, “mattress16”, “left_foot”, “contact”, “up”],
              [“bed003”, “mattress16”, “right_foot”, “contact”, “up”],
              [“bed003”, “pillow17”, “head”, “contact”, “up”]],
            [[“bed003”, “mattress16”, “pelvis”, “contact”, “up”],
              [“bed003”, “mattress16”, “head”, “not contact”, “up”]],
              [[“bed003”, “none”, “none”, “none”, “front”]]]
  }
}
Table 11: List of Interactions in ScenePlan-1
Interaction Type Contact Formation
Get close to xxx {xxx, none, none, none, dir}
Stand up {xxx, none, none, none, dir}
Left hand reaches xxx {xxx, part, left_hand, contact, dir}
Right hand reaches xxx {xxx, part, right_hand, contact, dir}
Both hands reaches xxx {{xxx, part, left_hand, contact, dir}, {xxx, part, right_hand, contact, dir}}
Sit on xxx {xxx, seat_surface, pelvis, contact, up}
Sit on xxx, left hand on left arm {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_arm, left_hand, contact, up}}
Sit on xxx, right hand on right arm {{xxx, seat_surface, pelvis, contact, up}, {xxx, right_arm, right_hand, contact, up}}
Sit on xxx, hands on arms {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_arm, left_hand, contact, none}, {xxx, right_arm, right_hand, contact, none}}
Sit on xxx, hands away from arms {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_arm, left_hand, not contact, none}, {xxx, right_arm, right_hand, not contact, none}}
Sit on xxx, left elbow on left arm {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_arm, left_elbow, contact, up}}
Sit on xxx, right elbow on right arm {{xxx, seat_surface, pelvis, contact, up}, {xxx, right_arm, right_elbow, contact, up}}
Sit on xxx, elbows on arms {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_arm, left_elbow, contact, none}, {xxx, right_arm, right_elbow, contact, none}}
Sit on xxx, left hand on left knee {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_knee, left_hand, contact, up}}
Sit on xxx, right hand on right knee {{xxx, seat_surface, pelvis, contact, up}, {xxx, right_knee, right_hand, contact, up}}
Sit on xxx, hands on knees {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_knee, left_hand, contact, none}, {xxx, right_knee, right_hand, contact, none}}
Sit on xxx, left hand on stomach {{xxx, seat_surface, pelvis, contact, up}, {xxx, pelvis, left_hand, contact, none}}
Sit on xxx, right hand on stomach {{xxx, seat_surface, pelvis, contact, up}, {xxx, pelvis, right_hand, contact, none}}
Sit on xxx, hands on stomach {{xxx, seat_surface, pelvis, contact, up}, {xxx, pelvis, left_hand, contact, none}, {xxx, pelvis, right_hand, contact, none}}
Sit on xxx, left foot on right knee {{xxx, seat_surface, pelvis, contact, up}, {xxx, right_knee, left_foot, contact, none}}
Sit on xxx, right foot on left knee {{xxx, seat_surface, pelvis, contact, up}, {xxx, left_knee, right_foot, contact, none}}
Sit on xxx, lean forward {{xxx, seat_surface, pelvis, contact, up}, {xxx, back_surface, torso, not contact, none}}
Sit on xxx, lean backward {{xxx, seat_surface, pelvis, contact, up}, {xxx, back_surface, torso, contact, none}}
Table 12: List of Interactions in ScenePlan-2
Interaction Type Contact Formation
Lie on xxx {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}}
Lie on xxx, left knee up {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up {xxx, mattress, left_knee, not contact, none}}
Lie on xxx, right knee up {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, mattress, right_knee, not contact, none}}
Lie on xxx, knees up {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, mattress, left_knee, not contact, none}, {xxx, mattress, right_knee, not contact, none}}
Lie on xxx, left hand on pillow {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, pillow, left_hand, contact, none}}
Lie on xxx, right hand on pillow {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, pillow, right_hand, contact, none}}
Lie on xxx, hands on pillow {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, pillow, left_hand, contact, none}, {xxx, pillow, right_hand, contact, none}}
Lie on xxx, on left side {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, mattress, right_shoulder, not contact, none}}
Lie on xxx, on right side {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, mattress, left_shoulder, not contact, none}}
Lie on xxx, left foot on right knee {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, right_knee, left_foot, contact, up}}
Lie on xxx, right foot on left knee {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, contact, up}, {xxx, left_knee, right_foot, contact, up}}
Lie on xxx, head up {{xxx, mattress, pelvis, contact, up}, {xxx, pillow, head, not contact, none}}

References

  • Araújo et al. (2023) Joao Pedro Araújo, Jiaman Li, Karthik Vetrivel, Rishi Agarwal, Jiajun Wu, Deepak Gopinath, Alexander William Clegg, and Karen Liu. Circle: Capture in rich contextual environments. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.  21211–21221, 2023.
  • Athanasiou et al. (2023) Nikos Athanasiou, Mathis Petrovich, Michael J Black, and Gül Varol. Sinc: Spatial composition of 3d human motions for simultaneous action generation. arXiv preprint arXiv:2304.10417, 2023.
  • Barsoum et al. (2018) Emad Barsoum, John Kender, and Zicheng Liu. Hp-gan: Probabilistic 3d human motion prediction via gan. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops, pp.  1418–1427, 2018.
  • Brohan et al. (2023) Anthony Brohan, Noah Brown, Justice Carbajal, Yevgen Chebotar, Xi Chen, Krzysztof Choromanski, Tianli Ding, Danny Driess, Avinava Dubey, Chelsea Finn, et al. Rt-2: Vision-language-action models transfer web knowledge to robotic control. arXiv preprint arXiv:2307.15818, 2023.
  • Chen et al. (2023) Xin Chen, Biao Jiang, Wen Liu, Zilong Huang, Bin Fu, Tao Chen, and Gang Yu. Executing your commands via motion diffusion in latent space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.  18000–18010, 2023.
  • Dai et al. (2017) Angela Dai, Angel X Chang, Manolis Savva, Maciej Halber, Thomas Funkhouser, and Matthias Nießner. Scannet: Richly-annotated 3d reconstructions of indoor scenes. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.  5828–5839, 2017.
  • Devlin et al. (2018) Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.
  • Harvey et al. (2020) Félix G Harvey, Mike Yurick, Derek Nowrouzezahrai, and Christopher Pal. Robust motion in-betweening. ACM Transactions on Graphics (TOG), 39(4):60–1, 2020.
  • Hassan et al. (2021a) Mohamed Hassan, Duygu Ceylan, Ruben Villegas, Jun Saito, Jimei Yang, Yi Zhou, and Michael J Black. Stochastic scene-aware motion prediction. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pp.  11374–11384, 2021a.
  • Hassan et al. (2021b) Mohamed Hassan, Partha Ghosh, Joachim Tesch, Dimitrios Tzionas, and Michael J Black. Populating 3d scenes by learning human-scene interaction. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.  14708–14718, 2021b.
  • Hassan et al. (2023) Mohamed Hassan, Yunrong Guo, Tingwu Wang, Michael Black, Sanja Fidler, and Xue Bin Peng. Synthesizing physical character-scene interactions. arXiv preprint arXiv:2302.00883, 2023.
  • Holden et al. (2017) Daniel Holden, Taku Komura, and Jun Saito. Phase-functioned neural networks for character control. ACM Transactions on Graphics (TOG), 36(4):1–13, 2017.
  • Huang et al. (2023) Siyuan Huang, Zan Wang, Puhao Li, Baoxiong Jia, Tengyu Liu, Yixin Zhu, Wei Liang, and Song-Chun Zhu. Diffusion-based generation, optimization, and planning in 3d scenes. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.  16750–16761, 2023.
  • Jiang et al. (2023) Biao Jiang, Xin Chen, Wen Liu, Jingyi Yu, Gang Yu, and Tao Chen. Motiongpt: Human motion as a foreign language. arXiv preprint arXiv:2306.14795, 2023.
  • Juravsky et al. (2022) Jordan Juravsky, Yunrong Guo, Sanja Fidler, and Xue Bin Peng. Padl: Language-directed physics-based character control. In SIGGRAPH Asia 2022 Conference Papers, pp.  1–9, 2022.
  • Kingma & Ba (2014) Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014.
  • Makoviychuk et al. (2021) Viktor Makoviychuk, Lukasz Wawrzyniak, Yunrong Guo, Michelle Lu, Kier Storey, Miles Macklin, David Hoeller, Nikita Rudin, Arthur Allshire, Ankur Handa, et al. Isaac gym: High performance gpu-based physics simulation for robot learning. arXiv preprint arXiv:2108.10470, 2021.
  • Mo et al. (2019) Kaichun Mo, Shilin Zhu, Angel X Chang, Li Yi, Subarna Tripathi, Leonidas J Guibas, and Hao Su. Partnet: A large-scale benchmark for fine-grained and hierarchical part-level 3d object understanding. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.  909–918, 2019.
  • OpenAI (2020) OpenAI. Gpt-3: Generative pre-trained transformer 3. https://openai.com/research/gpt-3, 2020.
  • OpenAI (2023) OpenAI. Gpt-4 technical report, 2023.
  • Pan et al. (2023) Liang Pan, Jingbo Wang, Buzhen Huang, Junyu Zhang, Haofan Wang, Xu Tang, and Yangang Wang. Synthesizing physically plausible human motions in 3d scenes. arXiv preprint arXiv:2308.09036, 2023.
  • Pavllo et al. (2018) Dario Pavllo, David Grangier, and Michael Auli. Quaternet: A quaternion-based recurrent model for human motion. arXiv preprint arXiv:1805.06485, 2018.
  • Peng et al. (2021) Xue Bin Peng, Ze Ma, Pieter Abbeel, Sergey Levine, and Angjoo Kanazawa. Amp: Adversarial motion priors for stylized physics-based character control. ACM Transactions on Graphics (ToG), 40(4):1–20, 2021.
  • Peng et al. (2022) Xue Bin Peng, Yunrong Guo, Lina Halper, Sergey Levine, and Sanja Fidler. Ase: Large-scale reusable adversarial skill embeddings for physically simulated characters. ACM Transactions On Graphics (TOG), 41(4):1–17, 2022.
  • Rocamonde et al. (2023) Juan Rocamonde, Victoriano Montesinos, Elvis Nava, Ethan Perez, and David Lindner. Vision-language models are zero-shot reward models for reinforcement learning. arXiv preprint arXiv:2310.12921, 2023.
  • Schulman et al. (2017) John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.
  • Starke et al. (2019) Sebastian Starke, He Zhang, Taku Komura, and Jun Saito. Neural state machine for character-scene interactions. ACM Trans. Graph., 38(6):209–1, 2019.
  • Starke et al. (2020) Sebastian Starke, Yiwei Zhao, Taku Komura, and Kazi Zaman. Local motion phases for learning multi-contact character movements. ACM Transactions on Graphics (TOG), 39(4):54–1, 2020.
  • Tevet et al. (2022a) Guy Tevet, Brian Gordon, Amir Hertz, Amit H Bermano, and Daniel Cohen-Or. Motionclip: Exposing human motion generation to clip space. In Computer Vision–ECCV 2022: 17th European Conference, Tel Aviv, Israel, October 23–27, 2022, Proceedings, Part XXII, pp.  358–374. Springer, 2022a.
  • Tevet et al. (2022b) Guy Tevet, Sigal Raab, Brian Gordon, Yonatan Shafir, Daniel Cohen-Or, and Amit H Bermano. Human motion diffusion model. arXiv preprint arXiv:2209.14916, 2022b.
  • Wang et al. (2022a) Jingbo Wang, Yu Rong, Jingyuan Liu, Sijie Yan, Dahua Lin, and Bo Dai. Towards diverse and natural scene-aware 3d human motion synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.  20460–20469, 2022a.
  • Wang et al. (2022b) Zan Wang, Yixin Chen, Tengyu Liu, Yixin Zhu, Wei Liang, and Siyuan Huang. Humanise: Language-conditioned human motion generation in 3d scenes. Advances in Neural Information Processing Systems, 35:14959–14971, 2022b.
  • Won et al. (2022) Jungdam Won, Deepak Gopinath, and Jessica Hodgins. Physics-based character controllers using conditional vaes. ACM Transactions on Graphics (TOG), 41(4):1–12, 2022.
  • Yan et al. (2019) Sijie Yan, Zhizhong Li, Yuanjun Xiong, Huahan Yan, and Dahua Lin. Convolutional sequence generation for skeleton-based action synthesis. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pp.  4394–4402, 2019.
  • Yao et al. (2022) Heyuan Yao, Zhenhua Song, Baoquan Chen, and Libin Liu. Controlvae: Model-based learning of generative controllers for physics-based characters. ACM Transactions on Graphics (TOG), 41(6):1–16, 2022.
  • Zhang et al. (2023a) Jianrong Zhang, Yangsong Zhang, Xiaodong Cun, Shaoli Huang, Yong Zhang, Hongwei Zhao, Hongtao Lu, and Xi Shen. T2m-gpt: Generating human motion from textual descriptions with discrete representations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2023a.
  • Zhang et al. (2022a) Mingyuan Zhang, Zhongang Cai, Liang Pan, Fangzhou Hong, Xinying Guo, Lei Yang, and Ziwei Liu. Motiondiffuse: Text-driven human motion generation with diffusion model. arXiv preprint arXiv:2208.15001, 2022a.
  • Zhang et al. (2022b) Xiaohan Zhang, Bharat Lal Bhatnagar, Sebastian Starke, Vladimir Guzov, and Gerard Pons-Moll. Couch: Towards controllable human-chair interactions. In European Conference on Computer Vision, pp.  518–535. Springer, 2022b.
  • Zhang et al. (2023b) Yaqi Zhang, Di Huang, Bin Liu, Shixiang Tang, Yan Lu, Lu Chen, Lei Bai, Qi Chu, Nenghai Yu, and Wanli Ouyang. Motiongpt: Finetuned llms are general-purpose motion generators. arXiv preprint arXiv:2306.10900, 2023b.
  • Zhao et al. (2022) Kaifeng Zhao, Shaofei Wang, Yan Zhang, Thabo Beeler, and Siyu Tang. Compositional human-scene interaction synthesis with semantic control. In European Conference on Computer Vision, pp.  311–327. Springer, 2022.
  • Zhao et al. (2023) Kaifeng Zhao, Yan Zhang, Shaofei Wang, Thabo Beeler, and Siyu Tang. Synthesizing diverse human motions in 3d indoor scenes. arXiv preprint arXiv:2305.12411, 2023.