---
title: 'RIKE: Chinese Harmful Meme Attribution'
url: https://www.emergentmind.com/topics/rike
type: topic
---

# RIKE: Chinese Harmful Meme Attribution

Searching arXiv for the RIKE framework and closely related Chinese harmful meme detection work.
RIKE is a comprehensive attribution analysis framework for interpretable detection of Chinese harmful memes, introduced in the context of the Ex-ToxiCN-MM benchmark and the Chinese Harmful Semantic Knowledge Base (C-HarmKB). It treats harmful-meme attribution as a joint multimodal classification and explanation-generation problem in which each meme is represented as $M=(I,T,X)$, with $I$ the raw image, $T$ the overlaid text string, and $X$ an auxiliary caption or textual description of the image. The framework is designed for cases in which harmfulness is culturally grounded, semantically ambiguous, and therefore not reducible to surface lexical cues alone. Its central architectural components are the Attribution Knowledge Enhancement module (AKE), which retrieves and injects culturally specific prior knowledge, and the Relative Intent Reasoning module (RIR), which explicitly contrasts harmful and non-harmful interpretations for the same meme [2605.24344].

## 1. Problem setting and motivation

The motivating task is harmful-meme attribution in Chinese, where progress is reported to lag due to two stated difficulties: accurately assessing harmfulness depends heavily on understanding deep cultural context, and many memes are semantically ambiguous, making harmfulness highly subjective [2605.24344]. RIKE is therefore positioned not merely as a binary classifier, but as a mechanism for distinguishing between competing readings of the same multimodal artifact.

In the underlying formulation, the model receives the meme image $I\in\mathbb{R}^{H\times W\times 3}$, its overlaid text $T$, an auxiliary caption $X$, and a retrieved set of cultural-knowledge snippets $K(M)=\{d_1,\dots,d_k\}$ drawn from C-HarmKB. The target output is two-fold: a harmful/non-harmful label $y\in\{0,1\}$ and a concise explanation $\mathrm{Exp}(M)$. This is formalized through a model $C_\theta$ with classification and explanation heads,
$$
y^* = C_\theta^{cls}(I,T,X,K(M)), \qquad
\mathrm{Exp}(M) = C_\theta^{exp}(I,T,X,K(M)).
$$
The paper’s framing suggests that interpretability is not an auxiliary reporting layer but part of the task definition itself, because correct attribution depends on identifying which culturally situated interpretation is better supported by the evidence [2605.24344].

A distinguishing feature of the setup is the use of opposing explanations. Ex-ToxiCN-MM provides both “harmful” and “non-harmful” interpretations for each meme. This makes the task closer to comparative adjudication than to ordinary single-label annotation, and it motivates RIKE’s relative-intent formulation.

## 2. Data resources and knowledge grounding

RIKE is introduced together with two resources: Ex-ToxiCN-MM and C-HarmKB. Ex-ToxiCN-MM is described as the first Chinese harmful meme explanation dataset and contains 7,042 memes, of which 3,735 are harmful and 3,307 are non-harmful, using an 80/20 train/test split [2605.24344]. The dataset provides opposing interpretations categorized as “harmful” and “non-harmful” for each meme. This design is structurally aligned with the later RIR module, which scores alternative intent hypotheses rather than assuming a single canonical reading.

C-HarmKB is a specialized knowledge base of Chinese cultural concepts and offensive vocabulary. Each retrieved snippet $d_i$ may contain Chinese-specific slang, historical allusions, or definitions. The knowledge base is encoded as a vector store and queried by hybrid attention/keyword scoring. The paper states that this prior knowledge is meant to supply models with essential background that is often absent from the meme text and image alone [2605.24344].

The interaction between dataset and knowledge base is central. Ex-ToxiCN-MM operationalizes ambiguity by furnishing competing human-written explanations, while C-HarmKB operationalizes background knowledge by furnishing culturally anchored snippets. A plausible implication is that RIKE is optimized for cases in which harmfulness arises from inferential context rather than explicit insult tokens, especially when textual and visual signals are individually underdetermined.

## 3. Attribution Knowledge Enhancement

The Attribution Knowledge Enhancement module addresses ambiguity and lack of background knowledge through four stated components: a dynamic query-expansion LLM, a hybrid retriever over C-HarmKB, an encoder for retrieved snippets, and a fusion/gating mechanism that injects knowledge into multimodal features [2605.24344].

Dynamic query expansion begins from $T$ and $X$. A lightweight LLM proposes additional keywords $T_{set}$, after which the full query set is defined as
$$
Q_{set} = T \cup X \cup T_{set},
$$
filtered to non-empty queries. Retrieval then combines sparse and dense scoring. For each candidate document $d\in KB$ and each query $q\in Q_{set}$, the hybrid score is
$$
S_{hybrid}(d,q)=w_{bm25}\,S_{BM25}(d,q)+w_{dense}\,S_{dense}(d,q).
$$
A reranker subsequently estimates posterior relevance using yes/no logits:
$$
P_{rel}(d\mid q)=\frac{\exp(\mathrm{logits}_{yes})}{\exp(\mathrm{logits}_{yes})+\exp(\mathrm{logits}_{no})}.
$$
Only documents with $P_{rel}(d\mid q)\ge\tau_{rel}$ are retained, and the top-$k$ unique snippets form $K(M)$ [2605.24344].

The retrieved knowledge is encoded alongside visual and textual features:
$$
h_v=f_v(I), \quad h_t=f_t(T), \quad h_x=f_x(X), \quad h_k^i=f_k(d_i).
$$
The snippet embeddings are aggregated either by mean-pooling or attention,
$$
h_k=\mathrm{Mean}(\{h_k^i\}_{i=1}^k)
\quad\text{or}\quad
h_k=\sum_{i=1}^k \alpha_i h_k^i,\qquad
\alpha_i=\mathrm{softmax}(w_a^\top h_k^i).
$$

Knowledge injection is implemented through gated fusion:
$$
g=\sigma\Bigl(W_g[h_v;h_t;h_x;h_k]+b_g\Bigr),
$$
$$
h_{fused}=g\odot[h_v;h_t;h_x]+(1-g)\odot h_k.
$$
The result $h_{fused}\in\mathbb{R}^{d'}$ initializes the downstream reasoning module [2605.24344].

The reported ablation is methodologically notable: AKE alone yields $F1\approx0.710$, below the supervised fine-tuning baseline of $F1\approx0.813$ on Qwen2.5-VL-3B, whereas RIKE as a whole achieves $F1\approx0.952$ [2605.24344]. This indicates that knowledge enrichment, in isolation, is not sufficient; its value emerges when coupled to the comparative reasoning mechanism.

## 4. Relative Intent Reasoning

The Relative Intent Reasoning module is the component that explicitly compares the two stance-conditioned explanations provided for each meme. Let $\mathrm{Exp}_{nh}(M)$ denote the human-written non-harmful explanation and $\mathrm{Exp}_{h}(M)$ the human-written harmful explanation. These are re-encoded relative to the fused multimodal representation:
$$
s_{nh}=w_s^\top f_{exp}(\mathrm{Exp}_{nh}(M),h_{fused}), \qquad
s_h=w_s^\top f_{exp}(\mathrm{Exp}_{h}(M),h_{fused}).
$$
Their difference,
$$
\Delta s = s_h-s_{nh},
$$
is interpreted as a relative-intent logit: positive $\Delta s$ indicates that the harmful reading is more strongly supported [2605.24344].

Training uses binary cross-entropy on $\sigma(\Delta s)$:
$$
L_{RIR}
=
-\bigl[y\log\sigma(\Delta s)+(1-y)\log(1-\sigma(\Delta s))\bigr].
$$
Conditioned on the selected stance, the framework also generates a unified explanation with loss
$$
L_{exp}
=
-\log P_\theta\bigl(\mathrm{Exp}(M)\mid I,T,X,\mathrm{Exp}_{nh},\mathrm{Exp}_{h},K(M)\bigr).
$$
An optional auxiliary retrieval-reconstruction loss $L_{retr}$ can be added, giving the full objective
$$
L(\theta)=L_{RIR}+\lambda L_{exp}+\mu L_{retr}.
$$
Optimization is then defined by minimizing the expected total loss over memes, labels, and paired explanations [2605.24344].

The RIR ablation provides the most direct evidence for the framework’s central hypothesis. On Qwen2.5-VL-3B, adding RIR alone raises $F1$ from approximately $0.813$ to approximately $0.946$, while RIKE with both RIR and AKE reaches approximately $0.952$ [2605.24344]. This suggests that explicit relative reasoning over opposed interpretations is the dominant contributor to classification performance, with cultural knowledge serving as a complementary support mechanism.

## 5. Training configuration and empirical performance

The reported implementation fine-tunes Qwen2.5-VL (3B/7B) and other MLLMs using LoRA with rank $=8$ and $\alpha=16$, a learning rate of $1e\!-\!4$, batch size $=16$, and 5 training epochs [2605.24344]. Evaluation covers both classification and explanation quality. The key metrics are Accuracy, Precision/Recall/F1 on the harmful class, BLEU-4 and ROUGE-L for generated explanations, and Qwen-VL-Plus judgments on Informativeness, Soundness, Cultural-Relevance, Conciseness, and Persuasiveness using a 5-point Likert scale [2605.24344].

The main quantitative findings for Qwen2.5-VL-3B are summarized below.

| Setting | Reported result |
|---|---|
| Baseline supervised fine-tuning (SFT) | $F1\approx0.813$ |
| +RIR only | $F1\approx0.946$ |
| +AKE only | $F1\approx0.710$ |
| RIKE (RIR+AKE) | $F1\approx0.952$ |

For explanation generation on the same backbone, RIKE raises BLEU-4 from 14.17 to 51.69 and ROUGE-L from 29.31 to 62.51 [2605.24344]. Similar gains are reported across InternVL3_5-8B, LLaVA-1.5-7B, and closed-source models. Human-judge scores on explanation dimensions increase by 0.1–0.3 across the board, which the paper interprets as evidence that the framework improves both classification robustness and culture-grounded attribution [2605.24344].

These results support a specific architectural reading. RIKE does not simply improve label prediction; it appears to restructure the task so that explanation quality and classification quality co-improve. Because the explanation loss is conditioned on the paired stance representations and retrieved knowledge, the framework links attribution correctness to explanation faithfulness more tightly than ordinary post hoc rationale generation would.

## 6. Interpretation, scope, and relation to broader research

RIKE belongs to a strand of multimodal harm detection research that emphasizes context sensitivity, explanation, and cultural specificity rather than purely generic toxicity classification [2605.24344]. Within that framing, its principal novelty lies in converting ambiguity from an annotation nuisance into a supervised reasoning signal. Instead of collapsing disagreement into a single label, the framework models harmfulness through the contrast between a harmful and a non-harmful interpretation.

This design also clarifies a common misconception in harmful meme analysis: ambiguity does not imply annotation noise in the trivial sense. In RIKE’s formulation, ambiguity is task structure. The presence of two plausible readings is precisely what necessitates relative-intent modeling. Likewise, the use of C-HarmKB indicates that cultural knowledge is not treated as optional enrichment but as a required component for resolving historically or socially indexed references.

Another misconception would be to treat AKE as the primary source of performance gains simply because it introduces an external knowledge base. The ablation results do not support that reading. AKE alone underperforms the baseline, whereas RIR alone contributes the major increase in $F1$, and the full RIKE configuration yields the best overall outcome [2605.24344]. This suggests that retrieved knowledge must be integrated into a comparative attribution process to become useful.

More broadly, RIKE can be understood as an interpretable multimodal reasoning architecture for culturally grounded harm attribution in Chinese. The paper’s results suggest that explanation supervision, stance contrast, and knowledge retrieval are mutually reinforcing when the target phenomenon is subjective, context dependent, and semantically underdetermined [2605.24344]. A plausible implication is that analogous frameworks may be relevant wherever harmfulness hinges on community-specific references, irony, or contested intent, although such extrapolation would require direct empirical validation beyond the reported Chinese harmful meme setting.

Source: https://www.emergentmind.com/topics/rike