Research notebookMultimodal AIMM.06

Executive Summary – 1a. Early and Late Fusion

Key Concepts

  • Multimodal Learning combines complementary sensors (RGB images + LiDAR point-clouds) so a model can reason about colour/texture and precise geometry.
  • Fusion Strategy determines where the modalities meet inside the network.
StrategyWhere They MergeProsCons
Early FusionBefore feature extractionCaptures cross-modal cues → top accuracyRequires tight spatial alignment & heavier model
Late FusionNear classifier headModular, sensors can fail independentlyRisks missing joint correlations

Workflow

  1. Load & augment RGB + LiDAR data.
  2. Train single-modal baselines (RGB-ResNet, LiDAR-PointNet).
  3. Implement fusion networks (early & late).
  4. Compare accuracy, convergence speed & saliency maps.

Results

ModelTest Accuracy
RGB baseline81 %
LiDAR baseline74 %
Late Fusion86 %
Early Fusion88 %
Early fusion wins but costs ≈ 15 % more FLOPs.

Practical Insights

  • Early fusion demands pixel-accurate calibration; even 1-2 px shifts hurt.
  • Late fusion keeps working if a sensor drops out, great for field robotics.
  • Consider intermediate (mid-level) fusion or transformer cross-attention for a balance of accuracy and compute.

The notebook includes an animated GIF that spins a LiDAR point-cloud, colour-coded by model confidence, to visualise attention.