Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
14
14
202008647_0001
202008647_0002
202008647_0003
202008647_0004
202008647_0005
202008647_0006
202008647_0007
202008647_0008
202008647_0009
202008647_0010
202008647_0011
202008647_0012
202008647_0013
202008648_0001
202008648_0002
202008648_0003
202008648_0004
202008648_0005
202008648_0006
202008648_0007
202008648_0008
202008648_0009
202008648_0010
202008648_0011
202008648_0012
202008648_0013
202008649_0001
202008649_0002
202008649_0003
202008649_0004
202008649_0005
202008649_0006
202008649_0007
202008649_0008
202008649_0009
202008649_0010
202008649_0011
202008649_0012
202008649_0013
202008649_0014
202008649_0015
202008649_0016
202008649_0017
202008649_0018
202008649_0019
202008649_0020
202008650_0001
202008650_0002
202008650_0003
202008650_0004
202008650_0005
202008650_0006
202008650_0007
202008650_0008
202008650_0009
202008650_0010
202008650_0011
202008651_0001
202008651_0002
202008651_0003
202008651_0004
202008651_0005
202008651_0006
202008651_0007
202008651_0008
202008651_0009
202008651_0010
202008651_0011
202008651_0012
202008651_0013
202008651_0014
202008651_0015
202008651_0016
202008651_0017
202008651_0018
202008651_0019
202008651_0020
202008651_0021
202008651_0022
202008651_0023
202008651_0024
202008651_0025
202008651_0026
202008651_0027
202008651_0028
202008651_0029
202008651_0030
202008651_0031
202008651_0032
202008651_0033
202008651_0034
202008651_0035
202008651_0036
202008651_0037
202008651_0038
202008651_0039
202008651_0040
202008651_0041
202008651_0042
202008651_0043
End of preview. Expand in Data Studio

WebTalk-Synthetic

WebTalk-Synthetic is a dataset of synthetic in-the-wild co-speech facial motion: ~12.7 k short clips, each pairing conversational speech with a generated 3D facial-motion track in FLAME coefficient space. The facial motion is produced by an audio-driven face model from filtered in-the-wild talking audio — it is synthesized, not motion-captured. The dataset was created for and used by ViBES (CVPR 2026) to give the face expert broad in-the-wild coverage.

⚠️ Research use only. The audio is segmented from public talking-head videos. This dataset is released under CC-BY-NC-4.0 for non-commercial research only. Do not use it for commercial purposes.

Download

huggingface-cli download JuzeZhang/WebTalk-Synthetic \
    --repo-type dataset --local-dir WebTalk-Synthetic

Each modality is shipped as a single .tar (far faster to upload/sync than ~50k loose files). Extract them in place after download:

cd WebTalk-Synthetic
for f in audios audios_token_glm FLAME_coeffs_25 transcripts; do tar -xf "$f.tar"; done
# optionally: rm *.tar

Dataset structure

In the repo (as shipped):

WebTalk-Synthetic/
├── audios.tar            → audios/            (16 kHz mono WAV, one per clip)
├── audios_token_glm.tar  → audios_token_glm/  (GLM-4-Voice audio tokens, one .npy per clip)
├── FLAME_coeffs_25.tar    → FLAME_coeffs_25/   (synthetic FLAME face motion, one .npz, 25 fps)
├── transcripts.tar        → transcripts/       (one .txt per clip)
├── train.txt              (12,075 clip stems)
├── val.txt                (290 clip stems)
├── test.txt               (304 clip stems)
├── README.md
└── LICENSE

audios_token_glm/<stem>.npy is a (N,) int64 array of GLM-4-Voice discrete audio tokens, provided so you can skip re-running audio tokenization.

Every modality is keyed by a clip stem of the form <session>_<segment> (e.g. 202008647_0001); audios/<stem>.wav, FLAME_coeffs_25/<stem>.npz, and transcripts/<stem>.txt all refer to the same clip.

  • 12,669 clips total (12,075 train / 290 val / 304 test).

FLAME motion format (FLAME_coeffs_25/<stem>.npz)

Key Shape dtype Description
exp (T, 100) float32 FLAME expression coefficients
shape (T, 100) float64 FLAME shape coefficients
pose (T, 6) float32 head pose (3) + jaw pose (3), axis-angle
mocap_frame_rate scalar int64 25

T is the per-clip frame count at 25 fps.

Audio

16 kHz mono PCM WAV, ~8 s per clip.

Usage

Load a clip directly:

import numpy as np, soundfile as sf

stem = "202008647_0001"
audio, sr = sf.read(f"audios/{stem}.wav")          # 16 kHz mono
coef = np.load(f"FLAME_coeffs_25/{stem}.npz")      # exp / shape / pose
text = open(f"transcripts/{stem}.txt").read()

The full ViBES preprocessing recipe (audio tokenization, face VQ-VAE tokenization, and building the training-ready HuggingFace dataset) is documented in docs/1-data/webtalk_synthetic.md.

Intended use & limitations

  • Intended for non-commercial research on co-speech facial animation, audio-driven face generation, and conversational virtual humans.
  • The facial motion is model-generated, not ground-truth capture; it reflects the biases and failure modes of the audio-driven face model that produced it.
  • Audio originates from public talking-head videos; treat it accordingly and do not attempt to re-identify speakers.

License

CC-BY-NC-4.0 — non-commercial research use only.

Citation

@inproceedings{zhang2026vibes,
  title={ViBES: A Conversational Agent with Behaviorally-Intelligent 3D Virtual Body},
  author={Juze Zhang and Changan Chen and Xin Chen and Heng Yu and Tiange Xiang and Ali Sartaz Khan and Shrinidhi Kowshika Lakshmikanth and Ehsan Adeli},
  booktitle={CVPR},
  year={2026},
}
Downloads last month
27