Publication

V2E Face: Emotionally Disentangled Talking Head Generation with Vector Quantization and Attention Fusion

IEEE MultiMedia (2026) · DOI: 10.1109/MMUL.2026.3724384

Most talking-head generators tangle identity, pose, and emotion together in one latent space, then try to untangle them with extra loss terms. V2E Face takes a different approach: disentanglement is built into the architecture itself.

image

Core Idea#

  1. Multi-Attribute Vector Quantization (MAVQ) — separate, supervised VQ codebooks for yaw, pitch, roll, and facial landmarks, isolating geometry from expression from the very first bottleneck.
  2. Multi-head Attention Fusion (MAF) — fuses the three pose codes into one physically coherent pose vector instead of naive concatenation.
  3. Hierarchical attention synthesis — builds a stable geometric "canvas" first, then applies emotion as a distinct layer on top.

Everything (pose, landmarks, lip motion) is generated purely from audio + a reference image, no external pose input needed.

Results#

Evaluated on CREMA-D and MEAD against MakeItTalk, EMMN, EAT, and ED-Talk:

DatasetPSNR ↑SSIM ↑Sync ↑Acc_emo ↑
CREMA-D25.49 (best)0.802 (best)8.79 (best)76.4
MEAD23.50 (best)0.734 (best)8.3267.1
  • Best PSNR/SSIM/lip-sync on both datasets; emotion accuracy close to the top baseline.
  • Human study (17 participants): ranked best among all generative methods on visual quality, motion naturalness, emotion expressiveness, and overall preference (p < 0.01 vs. baselines).
  • Ablation: removing hierarchical synthesis causes a 14-point crash in emotion accuracy — confirming structured fusion, not just parameter count, drives the gain.

Ablation study (MEAD):

MethodPSNR ↑SSIM ↑FID ↓Sync ↑Acc_emo ↑
Proposed23.5000.73422.1218.32267.080
w/o VQ_lmk18.3270.59424.7635.21166.483
w/o VQ_pose19.8820.66223.3025.56566.805
w/o MAF19.3320.65726.8016.00360.032
w/o HS17.5010.54028.3675.47753.272
  • Lightweight & fast: 15.6M parameters, 2.4 ms/frame on an RTX 4090, 24 FPS end-to-end.

Human evaluation (blind ranking, 17 participants, 1 = best, 4 = worst):

MethodVisual Quality ↓Motion Naturalness ↓Emotion Expr. ↓Overall Pref. ↓
GT (ref.)1.681.471.441.44
Ours2.002.212.242.26
EDTalk3.293.033.123.03
MakeItTalk3.033.293.213.26
image

Known limitation#

Fear and Happy share an open-mouth articulation, so the model sometimes confuses them — a geometry/articulation issue rather than a disentanglement failure.

image

Ethics note#

As with any photorealistic talking-head generator: risk of non-consensual identity impersonation. The authors recommend pairing this kind of framework with forgery-detection and watermarking.


BibTeX#

javascript
@article{vo2026v2eface,
  author  = {Vo, Hoang-Son and Yang, Hyung-Jeong and Kim, Soo-Hyung},
  title   = {Emotionally Disentangled Talking Head Generation with Vector Quantization and Attention Fusion},
  journal = {IEEE MultiMedia},
  year    = {2026},
  doi     = {10.1109/MMUL.2026.3724384}
}