c66855adfc
Sync to site1 / sync (push) Has been cancelled
- 移除 JEPA/lejepa-identifiability 子模块 gitlink - 移除 research/multiply/MultiPLY 子模块 gitlink - 删除 .gitmodules(不再有外部 URL 依赖) - 两个目录内容作为普通文件纳入主仓库追踪 - 删除各自内部 .git 目录,消除嵌套 git 仓库
77 lines
2.8 KiB
Markdown
77 lines
2.8 KiB
Markdown
<br/>
|
|
<p align="center">
|
|
<h1 align="center">MultiPLY: A Multisensory Object-Centric
|
|
Embodied Large Language Model in 3D World </h1>
|
|
<p align="center">
|
|
<a href="https://evelinehong.github.io">Yining Hong</a>,
|
|
Zishuo Zheng,
|
|
<a href="https://peihaochen.github.io">Peihao Chen</a>,
|
|
<a href="https://wangyian-me.github.io/">Yian Wang</a>,
|
|
<a href="https://senfu.github.io/">Junyan Li</a>,
|
|
<a href="https://people.csail.mit.edu/ganchuang">Chuang Gan</a>
|
|
</p>
|
|
<p align="center">
|
|
<a href='https://arxiv.org/abs/2401.08577'>
|
|
<img src='https://img.shields.io/badge/Paper-PDF-red?style=flat&logo=arXiv&logoColor=red' alt='Paper PDF'>
|
|
</a>
|
|
<a href='https://vis-www.cs.umass.edu/multiply/' style='padding-left: 0.5rem;'>
|
|
<img src='https://img.shields.io/badge/Project-Page-blue?style=flat&logo=Google%20chrome&logoColor=blue' alt='Project Page'>
|
|
</a>
|
|
</p>
|
|
<p align="center">
|
|
<img src="figs/teaser.png" alt="Logo" width="80%">
|
|
</p>
|
|
</p>
|
|
|
|
MultiPLY is a <strong>multisensory embodied</strong> large language model that could actively interact with the objects in the 3D environment and dynamically collect their multisensory information. It could incorporate multisensory interactive data, including visual, audio, tactile, and thermal information into large language models, thereby establishing the correlation among words, actions, and perceptions.
|
|
|
|
## Method
|
|
<p align="center">
|
|
<img src="figs/method.png" alt="Logo" width="80%">
|
|
</p>
|
|
|
|
We first encode the scene as an abstracted object-centric representation, while multisensory details
|
|
of objects can only be unveiled when the agent executes an action and interacts with them. We devise a set of action tokens denoting the
|
|
actions of agents to interact with the environment. The interaction results are appended back to the LLM via state tokens
|
|
|
|
## Requirements
|
|
TODO
|
|
|
|
## Training
|
|
We use FSDP training. It might differ on different clusters. An example on the trained cluster is:
|
|
```
|
|
RANDOM=$$
|
|
DIV=1000
|
|
OFFSET=24000
|
|
MASTER_PORT=$(($RANDOM%$DIV+$OFFSET))
|
|
export OMP_NUM_THREADS=1
|
|
export TOKENIZERS_PARALLELISM=true
|
|
NODE_RANK=${SLURM_PROCID}
|
|
|
|
SLURM=${SLURM_NODELIST:0:3}
|
|
ip=${SLURM}${SLURM_NODELIST:4:2}
|
|
|
|
# run the training script
|
|
NUM_GPUS_PER_NODE=${1:-8}
|
|
echo $NUM_GPUS_PER_NODE
|
|
|
|
NUM_NODES=${2:-1}
|
|
CMD="torchrun --nnodes=$NUM_NODES --nproc_per_node=$NUM_GPUS_PER_NODE --master_addr=$ip --node_rank=$NODE_RANK"
|
|
|
|
$CMD \
|
|
fsdp_train.py --folder retrieval_attention3 --num_epochs=1000
|
|
```
|
|
|
|
## Dataset Curation
|
|
TODO
|
|
|
|
## Citation
|
|
```
|
|
@article{multiply,
|
|
author = {Hong, Yining and Zheng, Zishuo and Chen, Peihao and Wang, Yian and Li, Junyan and Chen, Zhenfang and Gan, Chuang},
|
|
title = {MultiPLY: A Multisensory Object-Centric Embodied Large Language Model in 3D World},
|
|
journal = {arXiv},
|
|
year = {2024},
|
|
}
|
|
```
|