---
title: 'Insight Rumors: Token-Level Detection & Analysis'
url: https://www.emergentmind.com/topics/insight-rumors
type: topic
---

# Insight Rumors: Token-Level Detection & Analysis

Searching arXiv for recent and related papers on “Insight Rumors” and rumor analysis/detection.
“Insight Rumors” denotes a line of work that treats rumors not only as items to be classified, but as objects to be detected, localized, interpreted, and analyzed across content, users, propagation, and time. In the narrowest sense, the term names the model “Insight Rumors: A Novel Textual Rumor Locating and Marking Model Leveraging Att_BiMamba2 Network,” which reframes rumor detection as a sequence labeling problem over text spans rather than a post-level binary decision [2508.12574]. In a broader research sense, the term aligns with systems and analyses that ask what is being said, who is saying it, how it spreads, where and when it emerges, and whether it is false or misleading, using combinations of text matching, sequence models, graph methods, visual analytics, and fact-checked corpora [1701.06250] [2203.03098] [2401.09724] [2407.16051].

## 1. Conceptual scope and problem formulation

At the most general level, rumor research distinguishes rumor detection from rumor verification. Rumor detection decides whether a post should be labeled as rumor or non-rumor, given the text and associated metadata, whereas rumor verification decides whether a post already identified as a rumor is true, false, or unverified [2602.21214]. One formulation defines a rumor as a “controversial and fact-checkable statement” in election discourse [1701.06250], while another defines a rumor as content that remains unverified at the time of dissemination [2602.21214]. A further operationalization treats rumors as true/false labeled claims in binary text classification settings, especially when source tweets or headlines are used without propagation context [2112.00245].

Within this landscape, “Insight Rumors” in the model-specific sense shifts the target from “Is this text a rumor?” to “Where is the rumor in the text?” [2508.12574]. The task is posed over a token sequence
\[
X = \{x_1, x_2, \dots, x_n\},
\]
with output label sequence
\[
Y = \{y_1, y_2, \dots, y_n\},
\]
using the label set
\[
\text{Label} = \{\text{B-Rumor}, \text{I-Rumor}, O\}.
\]
Here B-Rumor denotes the beginning of a rumor span, I-Rumor denotes continuation inside a rumor span, and \(O\) denotes non-rumor context [2508.12574]. This is explicitly a sequence labeling problem similar to named entity recognition, but the “entities” are rumor spans [2508.12574].

This problem formulation stands alongside several other established formulations. Some work treats rumor detection as text matching between posts and verified rumor articles, rather than as supervised classification, so that each matched post can be linked to a specific fact-checked claim [1701.06250]. Other work formulates early rumor detection as a temporal decision problem over repost sequences, introducing a microblog-specific credible detection point \(\beta\) at which a stable high-confidence prediction first becomes possible [1811.04175]. Visual analytics systems instead assume a set of suspected rumors has already been identified and focus on interactive analysis and validation through linked views of space, time, features, and propagation [2203.03098].

This suggests that “Insight Rumors” is best understood as a multiscale program rather than a single method: post-level discrimination, token-level locating and marking, event-level temporal detection, propagation-level surveillance, and analyst-facing validation each correspond to distinct but complementary subproblems [2508.12574] [1811.04175] [2203.03098].

## 2. Textual rumor locating and marking

The core contribution of the model named “Insight Rumors” is a pipeline with three stages: word encoding with `bert_base_chinese`, Att_BiMamba2 rumor feature extraction, and a Rumor Locating and Marking module followed by CRF decoding [2508.12574]. The design aim is not only to detect rumors accurately but also to locate and mark them in context precisely [2508.12574].

The first stage uses Chinese BERT for contextual token embeddings. Token embeddings \(TEx_i\), segment embeddings \(Sx_i\), and positional embeddings \(Px_i\) are combined as
\[
E = [TEx_1 + Sx_1 + Px_1, \dots, TEx_n + Sx_n + Px_n],
\]
and BERT produces contextual outputs
\[
T = \{T_1, T_2, \dots, T_N\}
\]
after 12 Transformer encoder layers [2508.12574]. The self-attention sublayer follows
\[
\text{Attention}(Q, K, V) = \text{softmax}\left(\frac{QK^\top}{\sqrt{d}}\right) V,
\]
and the feedforward block is written as
\[
\text{FeedForward}(h) = \max(0, W_1 h + b_1) W_2 + b_2
\]
[2508.12574].

The second stage is Att_BiMamba2. After a linear adjustment
\[
X_{\text{adjusted}} = \text{fc\_in}(T),
\]
the model applies a forward Mamba2 encoder
\[
X_{\text{forward}} = \text{Mamba2}_{\text{forward}}(X_{\text{adjusted}})
\]
and a backward Mamba2 encoder
\[
X_{\text{backward}} = \text{Mamba2}_{\text{backward}}(\text{flip}(X_{\text{adjusted}}, \text{time})).
\]
Inside a Mamba2 block, the sequence is linearly projected,
\[
Z = \text{Linear}(X),
\]
passed through depthwise 1D convolution and SILU activation,
\[
X_{\text{conv}} = \text{Conv1D}(Z, \text{kernel\_size} = k), \quad
X_{\text{conv\_activated}} = \text{SILU}(X_{\text{conv}}),
\]
then processed by the state space model
\[
Y = \text{SSM}(A, B, C; X_{\text{conv\_activated}}),
\]
followed by residual connection,
\[
Y_{\text{residual}} = Y + X_{\text{conv\_activated}},
\]
RMS normalization,
\[
Y_{\text{normalized}} = \text{RMSNorm}(Y_{\text{residual}}),
\]
and final linear projection,
\[
Y_{\text{final}} = \text{Linear}(Y_{\text{normalized}})
\]
[2508.12574].

The bidirectional outputs are fused by dot-product attention rather than simple concatenation. Scores are computed as
\[
\text{scores} = X_{\text{forward}} X_{\text{backward}}^\top,
\quad
\text{scaled\_scores} = \frac{\text{scores}}{\sqrt{d_k}},
\]
and the final rumor representation is
\[
O = W_{\text{forward}} \cdot X_{\text{forward}} + W_{\text{backward}} \cdot X_{\text{backward}}.
\]
The paper states that this enhances the representation of high-dimensional rumor features [2508.12574].

The third stage maps these high-dimensional rumor features into label features. A skip-connection network performs staged projection:
\[
X_1 = \text{SILU}(\text{layer1}(O)),
\]
\[
X_2 = \text{SILU}(\text{layer2}(\text{concat}(O, X_1))),
\]
\[
\text{Emission Score} = \text{outputlayer}(X_2).
\]
A CRF layer then imposes strong constraints on the output label features [2508.12574]. The CRF sequence score is
\[
\text{Score}(X, Y) = \sum_{i=1}^{n} \text{Emission Score}(x_i, y_i)
+ \sum_{i=1}^{n} \text{Transfer Score}(y_{i-1}, y_i),
\]
with conditional probability
\[
P(Y \mid X) =
\frac{\exp(\text{Score}(X, Y))}
{\sum_{Y' \in \mathcal{Y}^n} \exp(\text{Score}(X, Y'))},
\]
negative log-likelihood
\[
L_{\text{log-likelihood}}(X, Y) = -\big[\text{Score}(X, Y) - \log Z(X)\big],
\]
and decoding objective
\[
Y^* = \arg\max_{Y \in \mathcal{Y}^n} \text{Score}(X, Y),
\]
solved by the Viterbi algorithm [2508.12574].

The associated dataset, IR-WEIBO, contains 3,200 Sina Weibo text posts from verified rumors, annotated with B-Rumor, I-Rumor, and O labels, and split into 80% train, 10% validation, and 10% test [2508.12574]. On IR-WEIBO, the reported test-set metrics for the proposed model are \(0.872\) \(F_1\) for B-Rumor, \(0.892\) \(F_1\) for I-Rumor, and \(0.983\) accuracy for O, with the paper stating that the scheme outperforms state-of-the-art sequence labeling baselines adapted to rumor spans [2508.12574].

## 3. Detection, identification, and early warning

A major thread adjacent to “Insight Rumors” treats rumor detection as either retrieval against verified claims or early sequential prediction. In election rumor detection on Twitter, one paper avoids large manually labeled training sets by matching tweets against 1,723 Snopes rumor articles and selecting the article with highest similarity
\[
d^* = \arg\max_{d \in \mathcal{D}} s(t, d).
\]
If the best score exceeds a threshold \(h\), the tweet is labeled as a rumor referring to \(d^*\) [1701.06250]. This design has two stated advantages: minimal manual labeling and interpretable results, because one knows which verified rumor article each tweet refers to [1701.06250].

That work compares TF-IDF, BM25, Word2Vec, Doc2Vec, and lexicon-based matching. BM25 achieves the best classification \(F_1\) of \(0.820\), compared with \(0.758\) for TF-IDF, \(0.764\) for Word2Vec, and \(0.745\) for Doc2Vec; for rumor identification, BM25 reaches \(0.799\) accuracy [1701.06250]. For large-scale deployment, the chosen BM25 threshold is \(h = 30.5\), yielding \(94.7\%\) precision and \(31.5\%\) recall on the test set [1701.06250]. This suggests a conservative operating point geared toward high-confidence analysis of relative rumor activity rather than exhaustive recall.

Early rumor detection emphasizes temporal stability rather than only end-of-sequence accuracy. The Credible Early Detection model groups reposts into intervals of \(N=10\), represents each interval by TF-IDF or CNN features, and processes the sequence with a GRU [1811.04175]. It defines the credible detection point
\[
\beta = \frac{n_f}{|F|},
\]
where \(n_f\) is the first time step at which \(p(y\mid h_i)\) crosses a confidence threshold \(\alpha\) [1811.04175]. Its objective combines prediction accuracy after CDP, earliness via
\[
\mathcal{O}_{\text{time}} = -\log \beta,
\]
and temporal stability through \(\mathcal{O}_{\text{diff}}\), which penalizes post-CDP threshold violations [1811.04175].

On Weibo-all, the best baseline GRU-2 has \(0.906\) accuracy and \(0.901\) \(F_1\) with early rate \(100\%\), whereas CED-CNN with \(\alpha=0.975\) achieves \(0.947\) accuracy, \(0.944\) \(F_1\), and \(17.9\%\) early rate [1811.04175]. On Twitter, CED reaches \(0.744\) accuracy and \(0.747\) \(F_1\) with \(52.5\%\) early rate, and CED-CNN with \(\alpha=0.875\) reaches \(0.721\) accuracy and \(0.760\) \(F_1\) with \(32.1\%\) early rate [1811.04175]. The paper states that the proposed model can reduce the time span for prediction by more than \(85\%\) across settings [1811.04175].

A different recent direction addresses multi-domain rumor detection under domain shift. The PerFact study introduces a Persian dataset from X with 8,034 annotated posts in rumor and non-rumor categories and proposes a domain-gated Mixture-of-Experts model that aggregates text and publisher information [2602.21214]. Annotator agreement is reported as Fleiss’ Kappa \(\kappa = 0.74\), and the model attains an \(F_1\)-score of \(79.86\%\) and an accuracy of \(79.98\%\) in multi-domain settings [2602.21214]. This suggests that domain-aware routing is one response to lexical and topical shift, though the task remains binary rumor detection rather than token-level rumor marking.

## 4. Propagation, users, and multiscale analytics

Rumor analysis extends beyond text into propagation geometry, user roles, and analyst workflows. RumorLens is an interactive visual analytics system developed with administrators from Sohu, NetEase, and TouTiao over four months, structured around three requirements: explore the overall space–time distribution of suspected rumors, inspect suspected rumor cases through feature comparisons, and explore propagation details of individual suspected rumors [2203.03098]. Its Sina Weibo dataset contains 936 suspected rumors, approximately 80,000 corresponding retweets and comments, and 53,843 user profiles from 2019/12/27–2020/12/14 [2203.03098].

The system integrates TF-IDF keywords, BiLSTM-based sentiment recognition, BERT-based topic classification, influence measures, t-SNE projection, and a circular propagation view [2203.03098]. In the propagation view, concentric rings encode retweet depth, sectors encode temporal progression across days, and cells encode retweets or comments with sentiment as color and text length as size [2203.03098]. The case study reports that a domain expert identified a highly suspicious rumor through a large glyph with low integrity and few fans, then validated it via six retweet rings, dominance of red and green cells, and comments indicating that the original tweet was misleading [2203.03098]. The paper states that RumorLens supports a traceable reasoning process combining spatial-temporal patterns, feature-based anomaly detection, propagation analysis, and rich content and sentiment evidence [2203.03098].

Cross-platform cascade analysis further differentiates rumor and non-rumor dynamics. A study on Twitter and Weibo with nearly one million crawled user profiles reports that rumors tend to spread more deeply, while non-rumors distribute more broadly [2401.17840]. It also reports that rumors are slower, persist longer, and, in most cases, involve fewer participants than non-rumors, while a small minority of sensational rumors produce very large cascades [2401.17840]. Source users of non-rumor cascades are much more likely to be verified, whereas rumor participants are described as active, long-standing, decently credible users termed “onlookers,” who inadvertently or unwittingly spread rumors due to extensive online interactions and the allure of sensational fake news [2401.17840].

The same study identifies exponential patterns in cascade features and introduces the Credibility Erosion Effect, under which the credibility of a person who repeatedly broadcasts and shares the same information gradually declines over time [2401.17840]. This points toward a propagation-level notion of “insight rumors” in which depth, breadth, source attributes, participant reputation, and temporal persistence matter alongside textual content.

Graph-based infodemic surveillance takes yet another perspective. A unified GNN model for rumor detection, virality prediction, and user vulnerability scoring builds a propagation graph \(\mathcal{G}\), a user interaction graph \(\mathcal{G}_u\), community assignments via DiffPool, and time-aware post embeddings with BERT and a fully connected time encoder [2401.09724]. It defines virality prediction as
\[
\mathcal{T}_2: \mathcal{G} \rightarrow \log_2|\mathbf{U}_{\mathrm{G}}|,
\]
and user vulnerability as the fraction of rumor events among all events a user engaged in [2401.09724]. On WEIBO, the MT-META variant reaches \(0.954\) accuracy and \(0.952\) MacF1 for rumor detection, with virality MSE \(0.603\) and vulnerability MSE \(0.137\); on TWITTER it reaches \(0.826\) accuracy and \(0.845\) MacF1 [2401.09724]. The paper argues that user vulnerability acts as a bridge between rumor status and virality [2401.09724].

## 5. Empirical rumor insights in elections and crises

Election rumor studies provide concrete demonstrations of what “insight rumors” can mean empirically. In the 2016 U.S. presidential election, analysis of 8,731,137 tweets from 7,283 Clinton followers and 7,339 Trump followers finds that rumor tweeting is highly concentrated: the top 10% of users account for about 50% of rumor tweets, and the top 20% account for about 70% [1701.06250]. During April–September 2016, the ratio of rumor tweets is \(1.26\%\) for Clinton followers and \(1.35\%\) for Trump followers, while over the entire time span it is \(1.20\%\) and \(1.16\%\), respectively [1701.06250]. The paper also states that both camps post rumors about both candidates, with opponent-targeted rumors more frequent for both groups [1701.06250].

The same study reports event-driven temporal peaks around presidential debates, official nomination events, controversial emergency events such as the Orlando shooting, and developments that directly trigger specific rumors such as Clinton’s public reappearance after pneumonia [1701.06250]. It explicitly notes that stance is not modeled: the same detected rumor can be amplified by one side and questioned by the other [1701.06250]. This suggests that rumor matching alone can conflate rumor spread with rumor discussion.

A later election dataset extends this perspective to the 2022 U.S. midterms. ElectionRumors2022 contains approximately 1.81 million Twitter posts linked to 135 distinct rumors from September 5 to December 1, 2022, with 88.0% retweets and approximately 427,600 unique accounts [2407.16051]. The collection process starts from about 446 million election-related tweets captured via the Twitter v1.1 Streaming API, then uses rumor leads, query development, inclusion coding, and tweet-level quality assurance [2407.16051]. Across all incidents and final queries, 99% of sampled top retweets and 96% of randomly sampled non-retweets are correctly associated with the intended rumor [2407.16051].

The study reports a sharp Election Day spike followed by rapid decay: within about 24 hours, rumor tweet volume drops to less than one-fifth of its Election Day peak [2407.16051]. Arizona dominates the geographic distribution, accounting for 42.1% of incident-level coding and 34.7% of direct textual state mentions among rumor tweets [2407.16051]. Partisan labeling via coengagement networks assigns right-leaning labels to 262,448 accounts, responsible for 1,430,244 posts and dominating 109 of 135 rumors; left-leaning labels are assigned to 125,915 accounts, responsible for 327,564 posts and dominating 22 rumors [2407.16051]. The paper also reports that all users exhibit extreme retweet concentration, with a Gini coefficient of approximately 0.96 in 2022 and the top 1% garnering about 84% of all retweets [2407.16051].

Crisis settings reveal other dimensions. During COVID-19 in China, rumor influence is modeled through search-engine traces as a proxy for “new insiders,” yielding an exponential form
\[
y_t = e^{a t + b} + c,
\]
where \(a\) is the attenuation coefficient and \(b\) is the peak coefficient [2012.02446]. A 5-fold cross-validation experiment using MSE shows that a decision tree is suitable for predicting the peak coefficient, while linear regression is ideal for predicting the attenuation coefficient [2012.02446]. The feature analysis states that precursor features are most important for the outbreak coefficient, location information and rumor entity information are most important for the attenuation coefficient, and anxiety is a crucial rumor-causing factor [2012.02446].

## 6. Limits, controversies, and future directions

A recurring controversy is whether high-performing models actually learn rumor detection rather than dataset-specific shortcuts. Cross-dataset experiments with BERT-Base uncased on Twitter15, Twitter16, PHEME, GossipCop, and PolitiFact show strong in-domain \(F_1\) scores such as \(89.56\), \(91.13\), \(84.34\), \(81.57\), and \(86.41\), but unsatisfactory out-of-domain performance, with many cross-dataset \(F_1\) values around 40–50 and some below that range [2112.00245]. On a common-sense rumor set of 200 samples, accuracies are about 48–52%, essentially at chance [2112.00245]. The paper further shows that clue words such as “Obama,” “Paul,” and “Sydney” can dominate model attention and that simple semantic reversals cause large accuracy declines, leading to the claim that models take shortcuts and learn absurd knowledge when rumor datasets have serious data pitfalls [2112.00245].

To address this, the same work proposes PairT, a paired test requiring a model to correctly predict both elements of a semantically linked pair at the same time [2112.00245]. This suggests that evaluation of “insight rumors” systems should emphasize consistency and semantic sensitivity, not only standard accuracy on benchmark splits.

Other limitations are methodological rather than evaluative. The 2016 election rumor-matching approach depends entirely on Snopes.com, misses rumors not covered there, and does not model stance or sentiment [1701.06250]. RumorLens assumes suspected rumors have already been detected and focuses on analysis and validation rather than initial detection [2203.03098]. The Att_BiMamba2 “Insight Rumors” model is built and evaluated on Chinese Weibo text, with `bert_base_chinese` and IR-WEIBO, so adaptation to other languages and platforms is not addressed in the reported experiments [2508.12574]. Multi-domain work explicitly identifies lexical shift, topical shift, propagation and user behavior differences, and event novelty as major obstacles to generalization [2602.21214].

Future directions in the provided literature converge on richer integration rather than a single dominant architecture. Retrieval, discrimination, and generation systems seek grounded explanatory debunking rather than only labels, combining an Expert-Citizen Collective Wisdom module, a real-time debunking vector database, and LLM-based generation with retrieval-augmented prompts [2403.20204]. Multi-domain mixture-of-experts models attempt to balance domain-specific and global features [2602.21214]. Token-level locating and marking introduces a more precise textual target for moderation and explainability [2508.12574]. This suggests that the future meaning of “Insight Rumors” may increasingly involve joint reasoning over claim spans, verified evidence, user roles, propagation structure, and human-in-the-loop validation, rather than coarse post-level rumor discrimination alone.

Source: https://www.emergentmind.com/topics/insight-rumors