Update README.md
Browse files
README.md
CHANGED
|
@@ -68,7 +68,7 @@ Accepted at **EMNLP 2026 Main** 🎉
|
|
| 68 |
</p>
|
| 69 |
|
| 70 |
<p align="center">
|
| 71 |
-
Left: suite of 5,000 FBHM memes spread across 25 functionalities.
|
| 72 |
</p>
|
| 73 |
|
| 74 |
<div align="center">
|
|
@@ -78,6 +78,14 @@ Left: suite of 5,000 FBHM memes spread across 25 functionalities.<br>Each tile p
|
|
| 78 |
|
| 79 |
</div>
|
| 80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
------------------------------------------
|
| 82 |
## Abstract
|
| 83 |
Hateful meme detection remains a formidable challenge for vision-language models, as existing benchmarks are structurally observational-confounding rhetorical hate mechanisms with target community features and preventing causal evaluation of model vulnerabilities. To address this, we introduce FBHM, a systematically curated benchmark of **F**unctionality **B**ased **H**ateful **M**emes constructed along two orthogonal axes: 25 distinct rhetorical functionalities and 10 target communities (5,000 memes total). Benchmarking state-of-the-art VLMs reveals a severe generalization gap: models highly accurate on standard datasets catastrophically drop to near-random performance on FBHM, proving they exploit dataset-specific heuristics rather than robust multimodal reasoning. To efficiently close this gap, we propose LSV (**l**earnable **s**teering **v**ectors), an ultra-low data regime strategy that applies a causal intervention objective on as few as 500 steering samples (50 unique base memes), boosting FBHM performance by ~30 Macro-F1 points while outperforming in-context learning and PEFT without degrading source-domain performance.
|
|
@@ -87,13 +95,13 @@ Hateful meme detection remains a formidable challenge for vision-language models
|
|
| 87 |
|
| 88 |
FBHM can be loaded directly using the Hugging Face `datasets` library.
|
| 89 |
|
| 90 |
-
|
| 91 |
|
| 92 |
```bash
|
| 93 |
pip install datasets pillow
|
| 94 |
```
|
| 95 |
|
| 96 |
-
|
| 97 |
|
| 98 |
```python
|
| 99 |
from datasets import load_dataset
|
|
@@ -108,7 +116,7 @@ test_data = dataset["test"]
|
|
| 108 |
print(dataset)
|
| 109 |
```
|
| 110 |
|
| 111 |
-
|
| 112 |
|
| 113 |
```python
|
| 114 |
# Select a sample from the training split
|
|
@@ -120,9 +128,7 @@ print("Label:", sample["label"])
|
|
| 120 |
print("Functionality:", sample["functionality"])
|
| 121 |
```
|
| 122 |
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
Each sample contains the following fields:
|
| 126 |
|
| 127 |
| Field | Description |
|
| 128 |
| --------------- | ----------------------------------------------- |
|
|
|
|
| 68 |
</p>
|
| 69 |
|
| 70 |
<p align="center">
|
| 71 |
+
Left: suite of 5,000 FBHM memes spread across 25 functionalities. Each tile presents the functionality number, its description and the corresponding number of memes in that functionality. Right: examples of constructing ten memes for ten target communities using one base image.
|
| 72 |
</p>
|
| 73 |
|
| 74 |
<div align="center">
|
|
|
|
| 78 |
|
| 79 |
</div>
|
| 80 |
|
| 81 |
+
------------------------------------------
|
| 82 |
+
```markdown
|
| 83 |
+
**Content Warning** ⚠️
|
| 84 |
+
|
| 85 |
+
This dataset contains hateful, offensive, and potentially disturbing multimodal content, including derogatory language and harmful stereotypes targeting protected groups.
|
| 86 |
+
The content is provided solely for research purposes. Please use the dataset responsibly and with appropriate care when displaying or sharing examples.
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
------------------------------------------
|
| 90 |
## Abstract
|
| 91 |
Hateful meme detection remains a formidable challenge for vision-language models, as existing benchmarks are structurally observational-confounding rhetorical hate mechanisms with target community features and preventing causal evaluation of model vulnerabilities. To address this, we introduce FBHM, a systematically curated benchmark of **F**unctionality **B**ased **H**ateful **M**emes constructed along two orthogonal axes: 25 distinct rhetorical functionalities and 10 target communities (5,000 memes total). Benchmarking state-of-the-art VLMs reveals a severe generalization gap: models highly accurate on standard datasets catastrophically drop to near-random performance on FBHM, proving they exploit dataset-specific heuristics rather than robust multimodal reasoning. To efficiently close this gap, we propose LSV (**l**earnable **s**teering **v**ectors), an ultra-low data regime strategy that applies a causal intervention objective on as few as 500 steering samples (50 unique base memes), boosting FBHM performance by ~30 Macro-F1 points while outperforming in-context learning and PEFT without degrading source-domain performance.
|
|
|
|
| 95 |
|
| 96 |
FBHM can be loaded directly using the Hugging Face `datasets` library.
|
| 97 |
|
| 98 |
+
1. Installation
|
| 99 |
|
| 100 |
```bash
|
| 101 |
pip install datasets pillow
|
| 102 |
```
|
| 103 |
|
| 104 |
+
2. Load the Dataset
|
| 105 |
|
| 106 |
```python
|
| 107 |
from datasets import load_dataset
|
|
|
|
| 116 |
print(dataset)
|
| 117 |
```
|
| 118 |
|
| 119 |
+
3. Inspect a Sample
|
| 120 |
|
| 121 |
```python
|
| 122 |
# Select a sample from the training split
|
|
|
|
| 128 |
print("Functionality:", sample["functionality"])
|
| 129 |
```
|
| 130 |
|
| 131 |
+
4. Dataset Fields
|
|
|
|
|
|
|
| 132 |
|
| 133 |
| Field | Description |
|
| 134 |
| --------------- | ----------------------------------------------- |
|