Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

πŸš€ Dataset Usage

To facilitate researchers, we provide the processed streaming 272-dim Motion Representation of BABEL dataset in this Hugging Face repo.

NOTE: We process the original BABEL dataset to support training of streaming motion generation. e.g. If there is a motion sequence A, annotated as (A1, A2, A3, A4) in BABEL dataset, each subsequence has text description: (A1_t, A2_t, A3_t, A4_t).

Then, our BABEL-stream is constructed as:

seq1: (A1, A2) --- seq1_text: (A1_t*A2_t#A1_length)

seq2: (A2, A3) --- seq2_text: (A2_t*A3_t#A2_length)

seq3: (A3, A4) --- seq3_text: (A3_t*A4_t#A3_length)

Here, * and # is separation symbol, A1_length means the number of frames of subsequence A1.

Motions are resampled into 30 FPS.

The dataset is organized as:

./
  β”œβ”€β”€ train_stream
      β”œβ”€β”€ seq1.npy
      ...
  β”œβ”€β”€ train_stream_text
      β”œβ”€β”€ seq1.txt
      ...
  β”œβ”€β”€ val_stream
      β”œβ”€β”€ seq1.npy
      ...
  β”œβ”€β”€ val_stream_text
      β”œβ”€β”€ seq1.txt
      ...

❗️❗️❗️ The processed data is solely for academic purposes. Make sure you read through the BABEL License.

πŸ“– Paper & Project Page & Code

πŸƒ Processing script

For more details of how to obtain the 272-dim motion representation, as well as other useful tools (e.g., Visualization and Conversion to BVH format), please refer to our GitHub repo.

🌹 Acknowledgement

This repository builds upon the following awesome datasets and projects:

🀝🏼 Citation

If our project is helpful for your research, please consider citing :

@article{xiao2025motionstreamer,
      title={MotionStreamer: Streaming Motion Generation via Diffusion-based Autoregressive Model in Causal Latent Space},
      author={Xiao, Lixing and Lu, Shunlin and Pi, Huaijin and Fan, Ke and Pan, Liang and Zhou, Yueer and Feng, Ziyong and Zhou, Xiaowei and Peng, Sida and Wang, Jingbo},
      journal={arXiv preprint arXiv:2503.15451},
      year={2025}
    }
Downloads last month
11