Skip to content
AI.info

Research

CyIN: Cyclic Informative Latent Space for Bridging Complete and Incomplete Multimodal Learning

Overview Research area: Multimodal machine learning, specifically incomplete (missing-modality) multimodal learning and multimodal sentiment/emotion recognition. Technical level: Advanced. The paper b

arXiv
2602.04920
Published
2026-02-04
Authors
Ronghao Lin, Qiaolin He, Sijie Mai, Ying Zeng, Aolin Xiong, Li Huang, Yap-Peng Tan, Haifeng Hu

AI summary

Overview

Research area: Multimodal machine learning, specifically incomplete (missing-modality) multimodal learning and multimodal sentiment/emotion recognition.

Technical level: Advanced. The paper builds on Information Bottleneck theory, variational approximation, mutual information bounds, and cross-modal transformer fusion.

Scope: The paper introduces CyIN, a single unified framework that constructs a cyclic informative latent space to train complete and incomplete multimodal learning together, evaluated on four datasets (MOSI, MOSEI, IEMOCAP, MELD) across complete, fixed-missing, and random-missing input protocols.

What This Paper Is About

Most multimodal models assume all modalities (language, audio, vision) are available at both training and inference. In real deployments sensors fail or data is dropped, so models meet "incomplete" input and their performance drops sharply. Existing alignment- and generation-based fixes either fail to use the missing information well, get distracted by task-irrelevant noise, require a separately trained model for each possible combination of missing modalities, or sacrifice complete-input performance to gain robustness. CyIN's goal is to build one model that both preserves complete multimodal performance and stays robust when modalities are missing.

Key Contributions

  1. Informative Latent Bottleneck Space. The authors build an informative latent space using token-level and label-level Information Bottlenecks (IB), so that both multimodal fusion and missing-information reconstruction operate on "purified" bottleneck latents rather than raw features.
  2. Cyclic Interaction and Translation. The source and target modalities in the IB are selected cyclically, which the authors state boosts cross-modal interaction in the complete setting and improves translation quality in the incomplete setting.
  3. Unified Complete and Incomplete Learning. Cross-modal cyclic translation with forward and reverse propagation reconstructs missing modality latents inside the informative space, allowing one unified model to handle full and partial input instead of training separate models per missing-modality combination.
  4. Empirical Validation. Experiments on four multimodal datasets are reported to show performance on complete input and robustness across fixed and random missing-modality scenarios.

Main Findings

  • Complete multimodal input: In the complete setting (u ∈ {l, a, v}), CyIN reports MOSI Acc7 48.0 / F1 86.3 / MAE 0.712 / Corr 0.801; MOSEI Acc7 53.2 / F1 86.1 / MAE 0.530 / Corr 0.774; IEMOCAP Acc 66.1 / wF1 66.0; MELD Acc 61.6 / wF1 59.8. The paper states CyIN reaches superior performance on most metrics compared with baselines CCA, DCCA, DCCAE, CPM-Net, CRA, MCTN, MMIN, GCNet, IMDer, and LNLN.

  • Fixed missing modalities: Under fixed protocols (u ∈ {l} / {v} / {a} / {l,a} / {l,v} / {a,v}), CyIN reports averaged MOSI 32.8 / 72.2 / 1.037 / 0.599; MOSEI 47.6 / 78.6 / 0.656 / 0.594; IEMOCAP 57.4 / 56.6; MELD 54.4 / 49.4. The authors attribute this to generalizing without special tuning for any specific modality.

  • Random missing modalities: Across missing rates MR ∈ [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7], CyIN reports averaged MOSI 35.0 / 75.7 / 0.943 / 0.650; MOSEI 48.3 / 79.9 / 0.633 / 0.650; IEMOCAP 57.5 / 57.5; MELD 54.8 / 50.5, which the paper describes as minimal performance loss even at severe missing rate.

  • One model, many protocols: Unlike previous methods that the paper says require separate models for each missing-modality combination, CyIN uses a single unified model evaluated with 10 runs across input circumstances.

  • Latent reconstruction quality: In a 3D t-SNE projection of MOSI test features, translated latents (B_rec) cluster closely to the original unimodal latents, which the authors present as evidence of effective cross-modal information transfer.

  • Visualization with MR = 0.7: Multimodal latents F_M inferred with reconstructed bottlenecks are reported to cluster better than those inferred without reconstruction under random missing rate 0.7.

  • Case study (MOSI and IEMOCAP): On MOSI sample #1 (ground truth −0.250), prediction is −0.364 with CyIN and 0.263 without; on sample #2 (ground truth 2.400), prediction is 2.609 with CyIN and 1.110 without. On IEMOCAP sample #3 the ground truth is Angry, predicted Angry with CyIN and Frustrated without; sample #4 ground truth Happy, predicted Happy with CyIN and Neutral without. The authors use these to argue that removing language causes incorrect or even opposite predictions, while missing audio or vision biases predictions more subtly.

  • Ablation study: The provided text is truncated mid-sentence ("We conduct ablation study with the proposed modules on MOSI and IEMOCAP datasets wi"), so ablation results are not reported in the available content.

  • Training objective: The total loss is L_total = L_task + (1/β)(L_tib + L_lib) + γ L_tran, with β controlling the mutual-information trade-off and γ weighting translation training. Training is split into two stages: stage 1 sets γ = 0 to stabilize the informative space on complete input, stage 2 sets γ > 0 to introduce the cross-modal translator.

Methodology in Plain English

The authors first define the problem: without missing data, a fusion decoder combines unimodal encodings; with missing data, missing modalities are replaced by zero vectors, which disrupts the fusion space.

Their idea is to insert a middle layer of "bottleneck" variables between the raw unimodal features and everything downstream. These bottlenecks are learned with Information Bottleneck objectives, which explicitly trade off keeping little information from the source and retaining much information about the target. Because the exact mutual information terms cannot be computed, they use the variational approximation from VIB, giving loss terms with a KL divergence to a standard Gaussian plus a reconstruction-style term, and they sample latents with the reparameterization trick.

Two complementary bottlenecks are used. Token-level IB applies the bottleneck to every token embedding, both within a modality (source = target) and across modalities (source ≠ target, in both directions), and the pairing is cycled among modalities. Label-level IB adds supervision by treating the ground-truth labels as the target state, with a Gaussian negative log-likelihood term for regression and a cross-entropy term for classification.

To fill in missing modalities, they add a translator built from Cascaded Residual Autoencoders that maps source bottleneck latents to target bottleneck latents. Forward propagation reconstructs the missing latents and is trained with a squared-error reconstruction loss; reverse propagation translates the reconstruction back to the source (a cyclic-consistency, back-translation style loss), and the two translators share weights. When several modalities remain, rather than training extra translators they sum the outputs of the pairwise translators from every remaining modality, justified by the additive property of Gaussians.

Fusion is done by a Multimodal Transformer over the bottleneck latents, using stacked multi-head cross-modal attention layers between paired modalities and concatenating the resulting bimodal latents. The paper notes the fusion module could be replaced by any network.

Why This Matters

Impact on research: The paper targets a well-known failure mode — model brittleness when modalities go missing — and argues against the common practice of training a separate model per missing-modality pattern. It positions the Information Bottleneck as a shared substrate on which both fusion and reconstruction can operate, and reports results for complete, fixed-missing, and random-missing protocols in one model. Code is released at https://github.com/RH-Lin/CyIN.

Real-world applications:

  • Affective computing and sentiment analysis on user-generated video where audio or video tracks are corrupt.
  • Emotion recognition in conversation systems for call centers, tutoring, or customer-support analytics where one stream may drop.
  • Human-computer interaction and virtual assistants, where a microphone or camera may be unavailable in a given session.
  • Clinical or behavioral monitoring pipelines that combine speech, video, and text but frequently lose one channel.

Industry relevance: The claim of a single unified model that degrades gracefully as missing rates rise is directly relevant to production deployments where modality availability is dynamic. Training and maintaining one model instead of one per missing-modality combination has clear engineering and operational implications.

Future Directions

  • Ablation and component analysis: The provided text truncates before the ablation results, so the individual contribution of token-level IB, label-level IB, and cyclic translation is not established here.
  • Scaling to more modalities: The framework is described for a general set of U modalities, but experiments cover only language, audio, and vision; behavior with larger modality sets and more complex missing patterns remains open.
  • Beyond the tested tasks: The paper evaluates on sentiment regression and emotion classification; whether the same informative-space design transfers to tasks such as retrieval, generation, or medical multimodal diagnosis is not reported.
  • Efficiency and cost: No computational cost or latency analysis for the two-stage training and the cascaded residual autoencoders is reported, which matters for real-time deployment.
  • Sensitivity to the trade-off weights: How β and γ affect the complete-versus-incomplete balance is not quantified in the available content.

Target Audience

Researchers and graduate students working on multimodal representation learning, missing-modality robustness, or Information Bottleneck methods, plus machine learning engineers who deploy multimodal models in settings where sensors or data streams are unreliable. Readers need familiarity with variational inference, mutual information, and transformer-based fusion to follow the derivations; the experimental tables and case studies are readable with less background.

Authors’ abstract

Multimodal machine learning, mimicking the human brain's ability to integrate various modalities has seen rapid growth. Most previous multimodal models are trained on perfectly paired multimodal input to reach optimal performance. In real-world deployments, however, the presence of modality is highly variable and unpredictable, causing the pre-trained models in suffering significant performance drops and fail to remain robust with dynamic missing modalities circumstances. In this paper, we present a novel Cyclic INformative Learning framework (CyIN) to bridge the gap between complete and incomplete multimodal learning. Specifically, we firstly build an informative latent space by adopting token- and label-level Information Bottleneck (IB) cyclically among various modalities. Capturing task-related features with variational approximation, the informative bottleneck latents are purified for more efficient cross-modal interaction and multimodal fusion. Moreover, to supplement the missing information caused by incomplete multimodal input, we propose cross-modal cyclic translation by reconstruct the missing modalities with the remained ones through forward and reverse propagation process. With the help of the extracted and reconstructed informative latents, CyIN succeeds in jointly optimizing complete and incomplete multimodal learning in one unified model. Extensive experiments on 4 multimodal datasets demonstrate the superior performance of our method in both complete and diverse incomplete scenarios.

Read the original paper