Skip to content

Label propagation

Label propagation is a semi-supervised learning technique that leverages graph structure to infer labels for unlabeled data by propagating information from labeled nodes through connections. In the context of fake news detection, label propagation can spread veracity signals across related news items or user networks, improving detection when labeled training data is scarce.

Key observations

Graph structure matters: Label propagation assumes that connected nodes (related news items or users) should have similar labels. This assumption holds well for misinformation detection when the graph captures semantic similarity or propagation networks.

Weak pseudo-labels can mislead: Direct propagation of weak pseudo-labels can amplify errors. Masking mechanisms or confidence-based filtering are necessary to prevent label leakage and improve robustness.

Multimodal integration enhances propagation: When combined with multimodal representations that capture both textual and visual consistency, label propagation can leverage cross-modal signals to improve label quality and propagation effectiveness.

Key papers