_alexcristea@EEUCA 2026: A Robust Early-Fusion ERNIE Pipeline for Multimodal COVID-19 Vaccine Meme Classification
Summary
A new system for the EEUCA0022026 shared task on Multimodal Vaccine Critical Meme Detection categorizes social media memes from the VaxMeme dataset into Vaccine Critical, Neutral, or Pro-Vaccine stances. This robust text-fusion pipeline addresses challenges like sarcasm and label noise by extracting text from images via OCR and combining it with social media posts. The unified text is then processed by an ERNIE 2.0-Large encoder. To mitigate severe overfitting common in subjective meme datasets, the system employs a Multi-Sample Dropout architecture, averaging predictions across five parallel dropout masks with p = 0.3. This optimized, lightweight text-only approach achieved a peak Macro F1 score of 0.834. An ablation study further demonstrated that standard Cross-Entropy loss offers superior robustness against inherent label noise compared to Focal Loss.
Key takeaway
For Machine Learning Engineers developing social media content classification systems, consider a text-centric approach for multimodal data. Your models can achieve high performance, like a 0.834 Macro F1, by using OCR to extract image text and fusing it with post content, processed by models such as ERNIE 2.0-Large. Implement Multi-Sample Dropout (p=0.3) to combat overfitting on subjective datasets and prefer standard Cross-Entropy loss for superior robustness against label noise.
Key insights
A text-only ERNIE 2.0-Large pipeline with Multi-Sample Dropout effectively classifies vaccine memes, outperforming visual encoders and Focal Loss.
Principles
- Text-based analysis can surpass visual methods for meme classification.
- Multi-Sample Dropout improves robustness against overfitting in subjective data.
- Standard Cross-Entropy offers better label noise robustness than Focal Loss.
Method
Extract text from images via OCR, concatenate with social media posts, process with ERNIE 2.0-Large, then use a Multi-Sample Dropout classification head (p=0.3) averaging five parallel masks.
In practice
- Use OCR for image text in multimodal tasks.
- Implement Multi-Sample Dropout for subjective datasets.
- Prioritize Cross-Entropy for noisy label environments.
Topics
- Multimodal Classification
- Vaccine Meme Detection
- ERNIE 2.0-Large
- Optical Character Recognition
- Multi-Sample Dropout
- Label Noise Robustness
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.