Preprint
Article

This version is not peer-reviewed.

MemANS: Event-Driven In-Memory Agentic Name Search for Efficient Multimodal Misinformation Detection on a Balanced Fakeddit Benchmark

Submitted:

08 July 2026

Posted:

10 July 2026

You are already at the latest version

Abstract
Multimodal misinformation detection has advanced from text-only classification toward joint processing of language, imagery, and social metadata. Yet much of the literature still treats adaptation as an internal fusion problem rather than a systems-level routing problem, leaving open the question of when multimodal escalation is warranted and how expert usage can be reduced without materially weakening predictive quality. This paper introduces MemANS, an event-driven, in-memory Agentic Name Search architecture for multimodal misinformation detection. MemANS treats inference as a resolution process over named experts: a default text–metadata resolver handles ordinary cases, while a specialist is invoked only when cross-modal disagreement and confidence conditions jointly indicate that additional reasoning is justified. The empirical study is conducted on a balanced, fully image-available Fakeddit benchmark comprising 5400 training instances, 840 validation instances, and 840 test instances across six misinformation classes. On the final test set, MemANS achieves 0.6182 macro-F1, 0.6167 accuracy, 0.5405 MCC, and 0.8726 weighted one-vs-rest AUC, clearly surpassing the always-on fusion baseline (0.5732 macro-F1) with a statistically supported gain of 0.0454 (p < 0.001) while using only 1.7202 average experts versus 2.0000. The results indicate that Agentic Name Search is a viable and practically meaningful multimedia-systems abstraction for adaptive multimodal reasoning.
Keywords: 
;  ;  ;  ;  ;  ;  ;  

1. Introduction

1.1. Background and Motivation

The proliferation of misleading and deceptive content on social-media platforms has transformed misinformation detection into a central research problem for multimedia computing. Contemporary deceptive posts rarely rely on text alone; they combine titles, imagery, engagement statistics, and community context into composite media objects that must be interpreted jointly. Consequently, the relevant scientific question is no longer whether a model can classify text accurately, but whether a multimedia system can reason over heterogeneous signals in a manner that is both effective and operationally scalable [1,2].
A substantial body of work has established that multimodal fake-news detection can outperform unimodal alternatives. Early systems such as SpotFake demonstrated that combining textual and visual evidence improves classification relative to text-only baselines [3]. Subsequent studies refined this intuition by examining richer fusion mechanisms, multi-image settings, and attention-based pooling architectures [4,5]. The introduction of the Fakeddit benchmark marked a particularly important milestone because it supplied a public, fine-grained multimodal dataset for six-way misinformation classification rather than only binary true–false prediction [1]. Building on that benchmark, Segura-Bedmar and Alonso-Bartolome confirmed that multimodal approaches often yield clear performance gains, especially for classes in which visual inconsistency or image-dependent manipulation plays a substantial role [6].
More recent literature has pushed the field beyond static feature concatenation. Dynamic fusion models now attempt to adapt cross-modal weighting to instance-specific conditions, thereby addressing the fact that different samples demand different evidence-combination strategies [7]. Expert-oriented systems, including modality-interactive mixture-of-experts architectures, suggest that specialist decomposition can be more effective than uniform processing under certain multimodal conditions [8]. Self-learning multimodal detectors have further indicated that model adaptability and iterative improvement remain active research directions [9]. Taken together, these studies suggest that the next stage of multimodal misinformation detection will be defined not merely by adding more modalities, but by designing architectures that determine when and how each modality should matter.

1.2. Research Gap and Problem Statement

Despite this progress, an important conceptual limitation remains. Even in recent high-performing systems, adaptation is typically treated as an internal model behaviour: fusion weights, attention coefficients, latent expert mixtures, or modality interactions are learned inside a unified predictive mechanism. What is much less common is an explicit service-resolution abstraction in which the system begins from a default resolver, observes event conditions, and then selectively escalates to named specialists. In other words, the literature has improved multimodal fusion, but it has not sufficiently explored multimodal reasoning as a name-resolution process over callable experts.
This distinction matters for at least three reasons. First, unconditional fusion may waste computation on samples that do not require multimodal escalation. Second, when adaptation is internal and opaque, it is difficult to explain why a particular modality was emphasised for a particular case. Third, if multimodal reasoning is framed as a monolithic fusion block, extending the system to accommodate new specialists requires re-engineering the entire architecture rather than registering an additional named expert. These limitations are summarised in Table 1, which contrasts the dominant problem dimensions in prior literature with the response offered by the present work.
Table 1 clarifies that the gap is not a lack of multimodal methods, but a lack of systems-level abstractions that make adaptive reasoning explicit, interpretable, and efficient. The present article develops that missing perspective through the notion of Agentic Name Search (ANS). In this work, ANS is conceived as a domain name system (DNS)-like abstraction for artificial intelligence: a computational layer that resolves a query to an appropriate named expert rather than assuming that every specialist must be invoked in every case. This interpretation is informed by the recent Agent Name Service proposal of Huang, Narajala, Habler, and Sheriff, which formalises DNS-inspired, capability-aware agent discovery for interoperable AI systems [10]. From this perspective, multimodal misinformation detection becomes a problem of dynamic capability resolution: a default text–metadata expert handles ordinary posts, while posts exhibiting cross-modal uncertainty are escalated to a specialist designed for ambiguity-rich cases.
The resulting system, termed MemANS, is event-driven because routing is triggered by observable disagreement and confidence conditions, and in-memory because the routing decision relies only on internal posterior state, confidence, and metadata already generated in the current inference pass. The in-memory property is conceptually important. Much contemporary discourse around adaptive AI systems focuses on retrieval-augmented generation (RAG) and external memory stores. Those approaches are valuable in knowledge-intensive settings, but they are not the only way to support adaptive behaviour. In multimedia verification, it may be more effective to perform routing over internal capability cues rather than retrieving external documents. Recent multimodal agent research on ToolMem reinforces this design intuition by showing that learnable tool-capability memory can improve capability selection without collapsing adaptation into generic external retrieval [11]. MemANS therefore represents a beyond-RAG design in a narrow but meaningful sense: adaptation is driven not by document retrieval or nearest-neighbour lookup, but by compact internal memory of what the active experts believe and how strongly they believe it.
The study is guided by three research questions. RQ1 asks whether an event-driven ANS architecture can outperform the strongest single-stage baseline on a balanced multimodal misinformation benchmark. RQ2 asks whether MemANS can surpass unconditional multimodal fusion while using fewer average expert invocations. RQ3 asks whether the final routing policy can be justified empirically through structured search rather than through manual preference. These questions lead to the following expectations: that ANS-style escalation will improve macro-F1 over a strong default resolver, that it will more clearly outperform always-on fusion, and that a structured policy search will identify the strongest routing configuration.

1.3. Contribution Statement

The article makes four concrete contributions. First, it introduces MemANS, an event-driven, in-memory ANS architecture for multimodal misinformation detection. Second, it constructs a balanced, fully image-available Fakeddit benchmark suitable for transparent evaluation in resource-constrained environments. Third, it presents a reproducible empirical comparison among default, fusion, and ANS-routed systems with bootstrap confidence intervals and paired t-tests. Fourth, it advances a multimedia systems interpretation in which adaptive reasoning is treated as explicit expert resolution rather than merely internal multimodal fusion.

1.4. Paper Organisation

The remainder of the article proceeds as follows. Section 2 synthesises the literature on multimodal fake-news detection, dynamic fusion, and agentic systems, and formalises the research gap. Section 3 details the benchmark construction, feature engineering, routing policy, and evaluation protocol. Section 4 reports the empirical findings, including the main system comparison and statistical testing. Section 5 interprets the results in relation to prior work and discusses implications for multimedia system design. Section 6 concludes the article and outlines promising future directions.

3. Methodology

3.1. Problem Formulation

This paper addresses fine-grained multimodal misinformation detection as a six-way supervised classification task. Each instance is a social-media post represented as an ordered triplet
x i = ( t i , v i , m i ) ,
where t i denotes the cleaned textual title, v i the associated image, and m i the structured metadata vector. The target label y i belongs to Y = { 0 , 1 , 2 , 3 , 4 , 5 } , corresponding to true, satire, false connection, imposter content, manipulated content, and misleading content [1]. The text t i is lowercased, punctuation-normalised, and stop-word filtered before feature extraction. The image v i is resampled to a fixed spatial grid, and m i is a real-valued vector of engagement cues. This triplet formulation ensures that all systems operate on the same input space [1,6]. The task is to learn a classifier f : X Y whose performance is evaluated by macro-level metrics that treat all six classes equally.

3.2. Dataset and Benchmark Construction

3.2.1. Fakeddit Selection Rationale and Public Accessibility

The source dataset is Fakeddit, a public multimodal benchmark introduced by Nakamura, Levy, and Wang [1]. Fakeddit satisfies four criteria essential for this study: public accessibility, multimodal content, fine-grained six-way annotation, and established recognition in the literature. Unlike binary datasets, its six-way taxonomy makes routing behaviour and specialist performance more interpretable.

3.2.2. Availability-Aware Balanced Subset

The full Fakeddit corpus includes instances with missing or broken image links. For a study comparing text-only, image-only, text–metadata, fusion, and routed systems on identical instances, image availability is a methodological prerequisite. The benchmark was reconstructed into a balanced, fully image-available subset by drawing class-balanced candidate pools, enforcing image availability through programmatic download and validation, and pruning an oversampled test candidate pool of 1320 instances (220 per class) to a final image-available set. The resulting splits are summarised in Table 3.
The balanced design eliminates class-skew confounding for macro-level metrics. By enforcing image availability across all splits, every comparison in Section 4 is conducted over the same multimodal population.

3.2.3. Image-Availability Enforcement and Split Reproducibility

Image availability was enforced by programmatic download of URLs referenced in the Fakeddit metadata, followed by validation of file integrity (non-empty, decodable by Pillow). Instances with missing or corrupted images were excluded. Split identifiers and per-instance image-path mappings were serialised as JSON artifacts. Any researcher who begins from the public Fakeddit metadata and applies the same filtering and balancing logic with the same random seed will obtain the identical split.

3.3. Feature Engineering

The feature design prioritises clarity, auditability, and computational modesty. All channels are summarised in Table 4.

3.3.1. Text Representation

The text modality is represented by TF-IDF features extracted from the cleaned title field. The vectoriser uses unigram and bigram tokenisation, English stop-word removal, max_features = 12 , 000 , and min_df = 2 . The standard sublinear tf–idf formulation is used, yielding a sparse representation of dimensionality d t = 12 , 000 .

3.3.2. Image Representation

Each image is resampled to 32 × 32 RGB pixels and encoded through grayscale flattening (1024 dimensions), per-channel mean and standard deviation (6 dimensions), per-channel histograms with 8 bins (24 dimensions), a grayscale histogram with 8 bins (8 dimensions), and simple edge statistics from a Sobel-filtered image (2 dimensions). The total image dimension is d v = 1 , 064 .

3.3.3. Metadata Representation and Rationale for Lightweight Features

The metadata channel consists of num_comments, score, upvote_ratio, token_count, and char_count, all standardised to zero mean and unit variance. The use of handcrafted, interpretable features is a deliberate methodological commitment. When evaluating a routing architecture, every component should be independently auditable; opaque pretrained embeddings confound the attribution of performance differences to the routing layer versus the representation layer. By holding the feature surface constant and transparent, any observed gain can be attributed to architectural design [1].

3.4. Base Experts and Baselines

All predictive components are implemented with multinomial logistic regression using the scikit-learn LogisticRegression estimator with the lbfgs solver, multinomial loss, and max_iter  = 1000 . This isolates the contribution of adaptive routing from large-scale representation learning. The regularisation C is 2.0 for the specialist and 1.0 for all other experts, reflecting the policy search in Section 3.6. The five experts are summarised in Table 5.
The text–metadata expert is the default resolver; the fusion expert represents the conventional assumption that multimodal evidence should always be jointly exploited. The specialist expert is trained exclusively on training instances where the text and image experts disagree in their argmax predictions, enabling conditional escalation for ambiguity-rich cases.

3.5. Memans Architecture

3.5.1. Dns-Like Resolution Layer over Named Experts

MemANS treats inference as a name-resolution process over a registry of named experts, analogous to DNS. A default resolver handles ordinary queries; escalation to a named specialist occurs only when an observable event signals that the default path may be insufficient. The architecture is depicted conceptually in Figure 1. The resolution layer is in-memory because routing decisions depend entirely on quantities computed in the current inference pass: expert posteriors, disagreement status, and confidence values.

3.5.2. Disagreement Event

Let p i ( T ) R 6 and p i ( V ) R 6 denote the posterior probability vectors of the text and image experts for instance i. A disagreement event is defined as
d i = I arg max c Y p i ( T ) ( c ) arg max c Y p i ( V ) ( c ) ,
where I [ · ] is the indicator function. The test disagreement rate is 0.7976, indicating that cross-modal ambiguity is prevalent rather than exceptional.

3.5.3. Confidence Gate

Not every disagreement event warrants escalation. A confidence gate filters events by the strength of multimodal evidence. The fusion expert produces posterior p i ( F ) R 6 , and its maximum value serves as the confidence signal:
c i = max c Y p i ( F ) ( c ) .
This gate distinguishes weak disagreement from strong disagreement based on the fusion model’s confidence despite cross-modal mismatch.

3.5.4. Routing Equation and Posterior Selection

The routing decision is
r i = I d i = 1 c i τ ,
where τ is the confidence threshold. The final MemANS posterior is selected by substitution:
p i ( M ) = p i ( S ) if r i = 1 , p i ( T M ) otherwise ,
where p i ( T M ) and p i ( S ) denote the posteriors of the default text–metadata expert and the specialist expert, respectively. The predicted label is y ^ i = arg max c p i ( M ) ( c ) . The selected threshold is τ = 0.40 , yielding a validation route rate of 0.7226 and a test route rate of 0.7202. On average, MemANS uses 1.7202 expert invocations per instance, compared with 2.0000 for the always-on fusion baseline.

3.5.5. Inference Routing Procedure

Algorithm 1 formalises the MemANS inference procedure. It is deterministic: given the same trained experts and threshold, it produces identical routing decisions for every instance.
Preprints 222227 i001
This formulation yields three architectural properties: transparent routing (escalation is explainable by disagreement and confidence), bounded expert usage (invoked only under joint event conditions), and name-resolution abstraction (resolves to a named expert rather than reweighting latent states).

3.6. Policy Search and Validation

The final routing policy was not selected heuristically. A structured search was performed over specialist masks (disagreement-based and text-length-based triggers), specialist feature spaces (text-only, metadata-only, text–metadata), confidence sources (fusion maximum, text–metadata maximum, image maximum), and regularisation and threshold values. Thresholds were evaluated over a grid that preserved meaningful variation in route rate. The strongest validated configuration is summarised in Table 6.

3.7. Evaluation Metrics and Statistical Testing

The study reports accuracy, weighted precision, weighted recall, weighted F1, macro-F1, macro-precision, macro-recall, MCC, and weighted OvR AUC. Macro-F1 is the primary metric because it treats all six classes equally. Precision P, recall R, and F1-score are defined as
P = T P T P + F P , R = T P T P + F N ,
F 1 = 2 · P · R P + R .
MCC provides a balanced summary under multiclass conditions, and weighted OvR AUC captures ranking quality across classes. Bootstrap estimation is employed over macro-F1 differences: for each system pair, 10,000 resamples of the test set are drawn with replacement; the 2.5th and 97.5th percentiles form a 95% CI, and the proportion of non-positive differences yields a two-sided bootstrap p value [25,26]. Confidence intervals are preferred because they convey the magnitude and uncertainty of the difference [24]. As a complementary procedure, paired t-tests are conducted over per-instance correctness vectors, and standardised effect estimates (Cohen’s d) are also reported.

3.8. Reproducibility Protocol

All experiments use a fixed global random seed of 42 for NumPy, scikit-learn, and Python’s built-in random module. The implementation uses Python 3.11, NumPy 1.26, pandas 2.2, scikit-learn 1.5, SciPy 1.13, and Pillow 10.4. Preprocessing is fully deterministic. The complete pipeline is packaged as a Google Colab-ready notebook designed for the free-tier runtime; it reproduces benchmark construction, feature extraction, expert training, policy search, final evaluation, statistical testing, and figure generation. The end-to-end construction and evaluation workflow is depicted in Figure 2. All artifacts—trained model coefficients, split identifiers, evaluation tables, routing summaries, and significance-test outputs—are preserved in the project workspace.

4. Results and Analysis

4.1. Main System Comparison

Table 7 reports the performance of MemANS and the two strongest baselines on the final balanced Fakeddit test benchmark. All systems are evaluated on identical instances drawn from the fully image-available, six-class test set (840 observations, 140 per class). The average number of experts invoked per test instance is also reported to capture operational cost.
The most striking finding is that the text–metadata expert is the strongest default baseline, not the always-on fusion expert. Across all reported metrics, the text–metadata system outperforms the fusion system by margins ranging from 0.0331 (MCC) to 0.0371 (macro-F1). This indicates that unconditional multimodal combination does not guarantee improved performance, even on a benchmark in which every instance possesses a corresponding image. Forcing image evidence into all decisions appears to introduce noise that dilutes the predictive strength of the text–metadata resolver, consistent with prior evidence that the utility of visual signals in misinformation detection is class-dependent and context-sensitive [6,7].
MemANS achieves the strongest absolute performance on every reported metric. Its macro-F1 of 0.6182 exceeds the text–metadata expert by 0.0079 and the fusion expert by 0.0454. The accuracy advantage follows the same ordering: 0.0083 above the text–metadata baseline and 0.0440 above the fusion baseline. Critically, MemANS attains these improvements while invoking, on average, 1.7202 experts per instance—a reduction of 0.2798 relative to the fusion expert’s fixed cost of 2.0000. MemANS thus occupies an intermediate operational position between single-stage default inference and unconditional multimodal escalation, and that intermediate position coincides with the highest classification quality observed in the study. Figure 3 visualises both the predictive ranking and the efficiency–performance trade-off. This pattern supports the central architectural hypothesis: selective expert resolution can outperform both indiscriminate fusion and default-only inference.

4.2. Statistical Comparison

Table 8 presents the inferential comparison of MemANS against the two baselines, and Figure 4 visualises the corresponding effect estimates and bootstrap intervals. Bootstrap estimation over 10,000 resamples yields 95% confidence intervals and two-sided bootstrap p values for the mean macro-F1 difference; paired t-tests are conducted over per-instance correctness vectors.
The comparison against the fusion baseline is unequivocal. The mean macro-F1 improvement of 0.0454 is accompanied by a 95% confidence interval that lies entirely above zero ( [ 0.0198 , 0.0710 ] ), a bootstrap p value of 0.0000, and a paired t-test p value of 0.0010. These results provide strong statistical evidence that MemANS outperforms unconditional multimodal fusion on the final test benchmark. The mean accuracy difference of 0.0440 reinforces the same conclusion. The practical interpretation is that event-driven specialist resolution is preferable to always-on fusion when the underlying visual features are compact and the image channel is not uniformly informative.
The comparison against the text–metadata baseline is more nuanced. The mean macro-F1 difference of 0.0079 is favourable to MemANS, but the 95% bootstrap confidence interval [ 0.0012 , 0.0173 ] crosses zero, and both the bootstrap p value (0.0980) and the paired t-test p value (0.0896) exceed the conventional 0.05 threshold. Consequently, the gain over the strongest default baseline cannot be declared statistically significant at standard levels. This does not diminish the result; rather, it places it in appropriate epistemic context. The text–metadata expert is already a strong and efficient resolver, and improving upon it with lightweight visual signals is inherently difficult. The observed positive trend suggests that ANS-style routing carries incremental value even against a strong default, but the current implementation should be treated as an architectural proof of concept rather than a saturated performance endpoint.

4.3. Routing Behaviour

Table 9 characterises the event-driven routing behaviour of MemANS on both the validation and test splits, and Figure 5 compares the disagreement and route rates across splits. The disagreement rate measures the proportion of instances in which the text and image experts produce different predicted classes; the route rate measures the proportion that satisfy both the disagreement condition and the fusion-confidence threshold, thereby triggering specialist invocation.
Two observations merit attention. First, the cross-modal disagreement rate is high: approximately 79–80% of instances in both validation and test exhibit a mismatch between the text expert’s and image expert’s top predictions. This indicates that multimodal misinformation detection on the Fakeddit benchmark involves substantial cross-modal ambiguity rather than straightforward additive evidence. Second, the confidence threshold filters the disagreement events into a smaller but still large specialist-eligible subset: roughly 72% of instances are routed. The agreement between validation and test route rates (0.7226 vs. 0.7202) is close, suggesting that the threshold generalises stably across splits. The operational significance is that MemANS avoids specialist invocation in approximately 28% of test cases, retaining the computational and predictive benefits of the default resolver without incurring the cost or noise of multimodal escalation.

4.4. Policy Search Evidence

The final MemANS configuration was not chosen through manual preference or post-hoc rationalisation. A structured policy search was conducted over candidate specialist masks, specialist feature spaces, confidence sources, regularisation values, and thresholds. The selected policy—disagreement-triggered specialist, text–metadata feature space, fusion confidence as the gating signal, regularisation C = 2.0 , and threshold τ = 0.40 —emerged as the strongest validated configuration among all tested alternatives. Candidate policies based on short-text or very-short-text regimes approached the performance of the final design but did not surpass it. This outcome is methodologically important because it prevents the final system from being interpreted as a hand-tuned heuristic: the chosen policy is the empirically best-validated policy from a defined search space. The search result also carries a substantive theoretical implication. The dominant routing signal is not a superficial metadata partition or a length heuristic, but a cross-modal event condition: disagreement between the text expert and the image expert. This supports the central conceptual position that adaptive multimedia reasoning is best framed as resolution under evidence conflict rather than as generic conditional modelling.

4.5. Class-Level Patterns

The present study does not claim that all six misinformation classes benefit equally from ANS-style routing. Prior Fakeddit literature has established that categories such as manipulated content and false connection are especially sensitive to visual inconsistency, whereas others are more text-dominant [6]. The class-level behaviour observed in the current benchmark is consistent with that broader pattern. The confusion-matrix artifacts indicate that classification errors remain concentrated in semantically adjacent categories—particularly misleading content, false connection, and imposter content—where textual surfaces overlap and the structure of deception is subtle rather than overt. The lightweight image descriptors employed in this study are sufficient to expose some cross-modal tensions but not rich enough to eliminate all ambiguity in these adjacent categories. This is one reason the study interprets MemANS as a proof of architectural viability rather than as a performance ceiling.

4.6. Summary of Empirical Findings

The empirical evidence supports four concise statements. First, the strongest default baseline on the final benchmark is the text–metadata expert, not the always-on fusion expert. Second, MemANS improves upon that strong default, but the margin is modest and the confidence interval for the difference crosses zero. Third, MemANS clearly and significantly outperforms unconditional multimodal fusion, with a statistically supported macro-F1 gain of 0.0454 and a paired t-test p value of 0.0010. Fourth, the final routing policy emerged from structured search rather than from intuition, and cross-modal disagreement was identified as the dominant routing signal. Collectively, these findings provide empirical support for the proposition that Agentic Name Search is a viable and practically meaningful multimedia-systems abstraction for multimodal misinformation detection.

5. Discussion

5.1. Reinterpreting Multimodal Reasoning as Expert Resolution

The dominant paradigm in multimodal misinformation detection has treated progress as a representation problem: how to align visual and textual signals and engineer more expressive fusion operators [18]. The present findings suggest the challenge is also architectural—not merely how modalities should be fused, but under what conditions multimodal escalation should occur at all. MemANS addresses this by reframing inference as resolution among named experts. In conventional fusion, the system combines all evidence continuously. In MemANS, the system begins with a default resolver and asks whether a named specialist should be consulted. This shift makes multimodal inference more interpretable and aligned with agentic architectures [10]. Table 10 contrasts the two architectural lenses across five dimensions.
This comparison reveals that MemANS is an alternative systems abstraction. The routing mechanism operates over internal capability state, making the architecture lightweight and low-latency. This architectural interpretation extends beyond fake-news detection to video event interpretation, cross-modal search, and multimodal content moderation, where an ANS-style design governs escalation without imposing the fixed cost of unconditional fusion on every instance.

5.2. Why MemANS Outperforms Unconditional Fusion

The most robust empirical conclusion is that MemANS substantially outperforms the always-on fusion baseline. On the final test benchmark, MemANS achieves a macro-F1 of 0.6182, whereas the fusion expert attains 0.5732—a difference of 0.0454 that is statistically supported at p < 0.001 . This suggests that visual information is most effective when invoked selectively. MemANS avoids degradation by using the image expert as an event detector that measures whether visual and textual reasoning disagree, while fusion confidence determines whether the disagreement is sufficiently structured to justify specialist escalation. Rather than treating the image channel as a universal contributor, MemANS treats it as a conditional diagnostic signal consulted only when the default resolver faces evidence conflict. This interpretation aligns with prior evidence that the benefit of multimodality is context-sensitive and class-dependent [6], and extends that reasoning by showing that context-sensitivity can be formalised not only through dynamic fusion weights [7] but through an explicit routing architecture.

5.3. Why the Gain Over the Default Is Modest

The more modest gain over the text–metadata baseline is equally important to interpret. MemANS improves upon the text–metadata expert by 0.0079 in macro-F1 (0.6182 vs. 0.6103), but the 95% bootstrap confidence interval [ 0.0012 , 0.0173 ] crosses zero, and neither test reaches conventional significance. The text–metadata baseline is already a strong default resolver, and improving upon it with lightweight visual features is inherently difficult. That MemANS still improves on this baseline, albeit cautiously, is meaningful: it demonstrates that the routing principle carries predictive value beyond the strongest single-modality default. The confidence interval crossing zero makes clear that the current implementation should be regarded as an architectural proof of concept, not a final form.

5.4. Implications for Event-Driven Multimedia Systems

The present findings contribute to the conversation about event-driven architecture in multimedia AI systems. In many real-world platforms, it is undesirable to invoke every processing component on every sample. MemANS offers a concrete design principle: use multimodal disagreement and confidence as operational events that trigger specialist resolution. On the final test set, the route rate of 0.7202 means that MemANS avoids specialist invocation in approximately 28% of cases. A platform processing large volumes of content may classify rapidly while reserving more expensive reasoning for ambiguous cases. The default-resolver-plus-specialist pattern is a systems-design paradigm that balances predictive quality with operational efficiency.

5.5. Implications for Beyond-RAG Design

Retrieval-augmented generation (RAG) has become a dominant pattern for adaptive behaviour in language-centric systems, yet not every adaptive system requires external document retrieval. In multimedia verification, it may be more effective to ask whether the system should consult an additional expert capability rather than retrieve additional text. MemANS is closer in spirit to capability-memory designs such as ToolMem than to classical document-centric retrieval pipelines [11]. This highlights an underexplored alternative in agentic AI: adaptation through capability routing rather than external knowledge retrieval [21]. The in-memory design of MemANS also speaks to a broader discussion about memory in adaptive systems. Recent work on agent memory has emphasised internal state maintenance for long-horizon reasoning and tool selection [22]. MemANS contributes by demonstrating that even compact in-memory state can support meaningful adaptive behaviour, an alternative that may be especially attractive where the primary challenge is multimodal ambiguity rather than missing knowledge.

5.6. Limitations

Several limitations bound the scope of the contribution and should be acknowledged explicitly. First, the current implementation relies on handcrafted image descriptors and logistic-regression models; this supports reproducibility but constrains the performance ceiling, and a pretrained vision transformer could expose richer cross-modal signals. Second, the empirical evaluation is conducted on a single public benchmark, Fakeddit, so the findings may not generalise to other datasets or languages, and cross-benchmark validation is needed. Third, the in-memory design uses a fixed routing rule rather than a learned long-horizon memory structure: the threshold τ = 0.40 was selected through structured policy search but remains static, whereas a learned capability memory could adapt to distribution shifts more effectively [11]. Fourth, the specialist operates within the text–metadata feature space rather than incorporating a more sophisticated learned multimodal representation, so it cannot leverage deep cross-modal interactions available to a neural fusion module. These limitations define the scope precisely: the study establishes the viability of ANS-style routing under transparent and reproducible conditions.

5.7. Future Directions

Four directions are especially promising. The most immediate is to strengthen the expert pool while preserving the routing abstraction; pretrained vision encoders, transformer-based text experts, and multimodal contrastive specialists could be inserted into the same ANS framework without altering the routing logic. A second direction is to introduce learned capability memory, where routing decisions evolve from historical expert success rather than from a fixed disagreement rule alone, an approach supported by recent work on tool-capability memory [11]. A third direction is cross-benchmark validation across other multimodal misinformation datasets and multimodal agent benchmarks, to test whether the routing principle generalises across data distributions and languages. A fourth direction is resource-aware evaluation, in which latency, memory footprint, and throughput are compared explicitly against fusion-heavy baselines, moving beyond average expert counts to wall-clock operational metrics.

6. Conclusions

This article introduced MemANS, an event-driven, in-memory Agentic Name Search architecture for multimodal misinformation detection. By recasting multimodal reasoning as resolution among named experts rather than as internal feature fusion, the study moved beyond the dominant paradigm of unconditional multimodal combination and demonstrated that selective specialist activation can produce stronger classification results on a balanced, fully image-available Fakeddit benchmark [1]. On the final test set of 840 instances, MemANS achieved 0.6182 macro-F1, 0.6167 accuracy, 0.5405 Matthews correlation coefficient, and 0.8726 weighted one-vs-rest AUC, establishing that the architecture is not merely conceptually distinct but empirically competitive on a fine-grained six-class misinformation task.
The study also contributed a reproducible benchmark and a transparent statistical framework. It constructed a balanced Fakeddit benchmark with 5400 training, 840 validation, and 840 test instances, ensuring that all comparisons were performed over identical fully multimodal instances, and adopted bootstrap confidence intervals and paired t-tests to guard against spurious conclusions. Against the always-on fusion baseline, MemANS delivered a mean macro-F1 improvement of 0.0454, a 95% confidence interval entirely above zero ( [ 0.0198 , 0.0710 ] ), and a paired t-test p value of 0.0010, providing strong evidence for the superiority of event-driven routing. The gain over the strongest default text–metadata baseline ( Δ = 0.0079 ) was positive but not statistically significant, indicating a promising yet modest trend that should be interpreted with appropriate caution.
Finally, the article advanced a multimedia-systems interpretation in which adaptive reasoning is treated as explicit expert resolution rather than internal multimodal fusion [7,8]. By using cross-modal disagreement and fusion confidence as operational events, the architecture offers transparent routing logic, bounded expert usage (1.7202 experts on average versus 2.0000 for unconditional fusion), and natural extensibility through named-specialist registration, a perspective informed by the Agent Name Service proposal for capability-aware agent discovery [10]. The most important empirical conclusion is that event-driven routing outperforms unconditional fusion on the final benchmark, and that Agentic Name Search is a viable multimedia-systems abstraction for adaptive social-media analysis. Future work should strengthen the expert pool with transformer-based and pretrained vision experts, replace the fixed disagreement rule with learned capability memory [11], validate across additional benchmarks, and measure latency, memory, and throughput against fusion-heavy baselines.

Author Contributions

Conceptualization, Meduri, K., Yedla, R., and De La Cruz, E.; Methodology, Yedla, R., Ravindran, R.K., and Banakar, S.; Software, Meduri, K., De La Cruz, E., and Ankarla Sri Ramuloo, V.; Validation, Meduri, K., Yedla, R., and Aila, M.; Formal analysis, Meduri, K., Thota, V., and Banakar, S.; Investigation, De La Cruz, E., Ravindran, R.K., and Yedla, R.; Resources, Ravindran, R.K., Aila, M., and Thota, V.; Data curation, Yedla, R., Ankarla Sri Ramuloo, V., and Aila, M.; Writing—original draft preparation, Meduri, K., Yedla, R., and De La Cruz, E.; Writing—review and editing, Meduri, K., Ravindran, R.K., and Yedla, R.; Visualization, Thota, V., Aila, M., and Banakar, S.; Supervision, Meduri, K., De La Cruz, E., and Ravindran, R.K.; Project administration, Meduri, K., Yedla, R., and De La Cruz, E.; Funding acquisition, Ravindran, R.K., Banakar, S., and Thota, V.; All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Data Availability Statement

The study is built on the publicly available Fakeddit dataset. The balanced, image-availability-filtered splits, trained model coefficients, evaluation tables, and the Google Colab notebook used to reproduce all results and figures are available from the authors on reasonable request.

Acknowledgments

The authors acknowledge the support and resources provided by the University of the Cumberlands, Purdue University Global, and University of Central Missouri. The authors also thank Imagine Believe Realize, LLC and Accelera Technologies Inc., for their support. During the preparation of this manuscript, the authors used a large language model (GPT-class assistant 5.3) for language editing and to assist with drafting the reproducible analysis code. The authors have reviewed and edited all output and take full responsibility for the content of this publication, in accordance with MDPI AI disclosure policy.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
ML Machine Learning
MemANS In-Memory Agentic Name Search
ANS Agentic Name Search
AUC Area Under the ROC Curve
MCC Matthews Correlation Coefficient
OvR One-versus-Rest
TF-IDF Term Frequency–Inverse Document Frequency
W-AUC Weighted One-versus-Rest AUC
W-F1 Weighted F1-score
Fakeddit Fake News Detection Dataset (multimodal benchmark)
ROC Receiver Operating Characteristic

References

  1. Nakamura, K.; Levy, S.; Wang, W.Y. Fakeddit: A New Multimodal Benchmark Dataset for Fine-Grained Fake News Detection. In Proceedings of the Twelfth Language Resources and Evaluation Conference (LREC), Marseille, France, 2020; pp. 6149–6157. Available online: https://aclanthology.org/2020.lrec-1.755/.
  2. Singh, V.K.; Ghosh, I.; Sonagara, D. Detecting Fake News Stories via Multimodal Analysis. J. Assoc. Inf. Sci. Technol. 2021, 72, 3–17. [Google Scholar] [CrossRef]
  3. Singhal, S.; Shah, R.R.; Chakraborty, T.; Kumaraguru, P.; Satoh, S. SpotFake: A Multi-Modal Framework for Fake News Detection. 2019 IEEE Fifth International Conference on Multimedia Big Data (BigMM), Singapore, 2019; pp. 39–47. [Google Scholar] [CrossRef]
  4. Giachanou, A.; Zhang, G.; Rosso, P. Multimodal Multi-Image Fake News Detection. 2020 IEEE 7th International Conference on Data Science and Advanced Analytics (DSAA), Sydney, Australia, 2020; pp. 647–654. [Google Scholar] [CrossRef]
  5. Kumari, R.; Ekbal, A. AMFB: Attention Based Multimodal Factorized Bilinear Pooling for Multimodal Fake News Detection. Expert Syst. Appl. 2021, 184, 115412. [Google Scholar] [CrossRef]
  6. Segura-Bedmar, I.; Alonso-Bartolome, S. Multimodal Fake News Detection. Information 2022, 13, 284. [Google Scholar] [CrossRef]
  7. Lv, H.; Yang, W.; Yin, Y.; Wei, F.; Peng, J.; Geng, H. MDF-FND: A Dynamic Fusion Model for Multimodal Fake News Detection. Knowl.-Based Syst. 2025, 317, 113417. [Google Scholar] [CrossRef]
  8. Liu, Y.; Liu, Y.; Li, Z.; Yao, R.; Zhang, Y.; Wang, D. Modality Interactive Mixture-of-Experts for Fake News Detection. In Proceedings of the ACM Web Conference 2025, Sydney, Australia, 2025; pp. 5139–5150. [Google Scholar] [CrossRef]
  9. Chen, H.; Yu, Y.; Guo, H.; Hu, B.; Hu, S.; Hu, J.; Lyu, S.; Wu, X.; Lin, C.-S.; Wang, X. A Self-Learning Multimodal Approach for Fake News Detection. Front. Artif. Intell. 2025, 8, 1665798. [Google Scholar] [CrossRef] [PubMed]
  10. Huang, K.; Narajala, V.S.; Habler, I.; Sheriff, A. Agent Name Service (ANS): A Universal Directory for Secure AI Agent Discovery and Interoperability. arXiv. 2025. Available online: https://arxiv.org/abs/2505.10609.
  11. Xiao, Y.; Li, Y.; Wang, H.; Tang, Y.; Wang, Z.Z. ToolMem: Enhancing Multimodal Agents with Learnable Tool Capability Memory. arXiv. 2025. Available online: https://arxiv.org/abs/2510.06664.
  12. Wang, Y.; Ma, F.; Jin, W.; Yuan, Y.; Xun, G.; Jha, K.; Yu, L.; Gao, J. EANN: Event Adversarial Neural Networks for Multi-Modal Fake News Detection. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, London, UK, 2018; pp. 849–857. Available online: https://dl.acm.org/doi/10.1145/3219819.3219903.
  13. Khattar, D.; Goud, J.S.; Gupta, M.; Varma, V. MVAE: Multimodal Variational Autoencoder for Fake News Detection. The World Wide Web Conference (WWW), San Francisco, CA, USA, 2019; pp. 2915–2921. [Google Scholar] [CrossRef]
  14. Wu, F.; Chen, S.; Gao, G.; Ji, Y.; Jing, X. Balanced Multi-Modal Learning with Hierarchical Fusion for Fake News Detection. Pattern Recognit. 2025, 164, 111485. [Google Scholar] [CrossRef]
  15. Jing, N.; Gu, Y.; Wang, Y.; Yang, Y. Multimodal Fake News Detection via Progressive Fusion Networks. Inf. Process. Manag. 2023, 60, 103120. [Google Scholar] [CrossRef]
  16. Qi, J.; Rai, P.; Ma, J.; Peng, J.; Li, J. Improving Fake News Detection by Using an Entity-Enhanced Framework to Fuse Diverse Multimodal Clues. In Proceedings of the 29th ACM International Conference on Multimedia, Chengdu, China, 2021; pp. 4219–4227. [Google Scholar] [CrossRef]
  17. Zhou, Y.; Yang, Y.; Ying, Q.; Qian, Z.; Zhang, X. Multi-Modal Fake News Detection on Social Media via Multi-Grained Information Fusion. Proc. Int. AAAI Conf. Web Soc. Media (ICWSM) 2023, Vol. 17, 1082–1090. [Google Scholar] [CrossRef]
  18. Li, X.; Qiao, J.; Yin, S.; Wu, L.; Gao, C.; Wang, Z.; Li, X. A Survey of Multimodal Fake News Detection: A Cross-Modal Interaction Perspective. IEEE Trans. Emerg. Top. Comput. Intell. 2025, 9, 2658–2675. [Google Scholar] [CrossRef]
  19. Shen, L.; Long, Y.; Cai, X.; Razzak, I.; Chen, G.; Liu, K.; Jameel, S. GAMED: Knowledge Adaptive Multi-Experts Decoupling for Multimodal Fake News Detection. In Proceedings of the Eighteenth ACM International Conference on Web Search and Data Mining (WSDM ’25), Hannover, Germany, 2025; pp. 586–595. [Google Scholar] [CrossRef]
  20. Kou, F.; Wang, B.; Li, H.; Zhu, C.; Shi, L.; Zhang, J.; Qi, L. Potential Features Fusion Network for Multimodal Fake News Detection. ACM Trans. Multimed. Comput. Commun. Appl. 2025, 21, 87. [Google Scholar] [CrossRef]
  21. Xie, J.; Chen, Z.; Zhang, R.; Wan, X.; Li, G. Large Multimodal Agents: A Survey. arXiv. 2024. Available online: https://arxiv.org/abs/2402.15116.
  22. Hu, Y.; Liu, S.; Yue, Y.; Zhang, G.; Liu, B.; Zhu, F.; Lin, J. Memory in the Age of AI Agents. arXiv. 2025. Available online: https://arxiv.org/abs/2512.13564.
  23. Lewis, P.; Perez, E.; Piktus, A.; Petroni, F.; Karpukhin, V.; Goyal, N.; Küttler, H.; Lewis, M.; Yih, W.-T.; Rocktäschel, T.; Riedel, S.; Kiela, D. Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. Adv. Neural Inf. Process. Syst. 2020, Vol. 33, 9459–9474. Available online: https://proceedings.neurips.cc/paper/2020/hash/6b493230205f780e1bc26945df7481e5-Abstract.html.
  24. Berrar, D.; Lozano, J.A. Significance Tests or Confidence Intervals: Which Are Preferable for the Comparison of Classifiers? J. Exp. Theor. Artif. Intell. 2013, 25, 189–206. [Google Scholar] [CrossRef]
  25. Margineantu, D.D.; Dietterich, T.G. Bootstrap Methods for the Cost-Sensitive Evaluation of Classifiers. In Proceedings of the Seventeenth International Conference on Machine Learning (ICML), Stanford, CA, USA, 2000; pp. 583–590. [Google Scholar]
  26. Walters, W.P. Comparing Classification Models with Bootstrap Resampling: A Tutorial. J. Comput.-Aided Mol. Des. 2022, 36, 123–135. [Google Scholar] [CrossRef] [PubMed]
Figure 1. Conceptual architecture of MemANS. The default text–metadata resolver processes every instance. A disagreement detector monitors cross-modal posterior consensus; when disagreement is detected and the fusion confidence exceeds a threshold, the system escalates to the disagreement specialist. The final output is the selected posterior.
Figure 1. Conceptual architecture of MemANS. The default text–metadata resolver processes every instance. A disagreement detector monitors cross-modal posterior consensus; when disagreement is detected and the fusion confidence exceeds a threshold, the system escalates to the disagreement specialist. The final output is the selected posterior.
Preprints 222227 g001
Figure 2. Reproducible benchmark-construction and evaluation workflow, from the official Fakeddit metadata through the availability-aware balanced benchmark, feature extraction, expert training, structured policy search, and the final MemANS evaluation and research artifacts.
Figure 2. Reproducible benchmark-construction and evaluation workflow, from the official Fakeddit metadata through the availability-aware balanced benchmark, feature extraction, expert training, structured policy search, and the final MemANS evaluation and research artifacts.
Preprints 222227 g002
Figure 3. (a) Macro-F1 of MemANS, the text–metadata expert, and the fusion expert on the final balanced Fakeddit benchmark. (b) Efficiency–performance trade-off: MemANS attains the highest macro-F1 at an intermediate average expert count (1.7202) between the text–metadata resolver (1.0000) and the always-on fusion baseline (2.0000).
Figure 3. (a) Macro-F1 of MemANS, the text–metadata expert, and the fusion expert on the final balanced Fakeddit benchmark. (b) Efficiency–performance trade-off: MemANS attains the highest macro-F1 at an intermediate average expert count (1.7202) between the text–metadata resolver (1.0000) and the always-on fusion baseline (2.0000).
Preprints 222227 g003
Figure 4. Comparative effect of MemANS expressed as mean macro-F1 differences with 95% bootstrap confidence intervals. The MemANS-vs.-fusion interval lies entirely above zero, whereas the MemANS-vs.-text–metadata interval crosses zero.
Figure 4. Comparative effect of MemANS expressed as mean macro-F1 differences with 95% bootstrap confidence intervals. The MemANS-vs.-fusion interval lies entirely above zero, whereas the MemANS-vs.-text–metadata interval crosses zero.
Preprints 222227 g004
Figure 5. Event-triggered routing statistics on the validation and test splits. Roughly 79–80% of instances exhibit cross-modal disagreement, while the confidence gate ( τ = 0.40 ) routes approximately 72% of instances to the specialist.
Figure 5. Event-triggered routing statistics on the validation and test splits. Roughly 79–80% of instances exhibit cross-modal disagreement, while the confidence gate ( τ = 0.40 ) routes approximately 72% of instances to the specialist.
Preprints 222227 g005
Table 1. Problem dimensions and the MemANS response.
Table 1. Problem dimensions and the MemANS response.
Problem dimension Limitation in prior literature MemANS response
Multimodal fusion Often invokes all modalities for all samples unconditionally Escalates selectively under event-defined uncertainty conditions
Dynamic fusion Adaptation usually remains internal and opaque to inspection Recasts adaptation as explicit named-expert resolution with observable triggers
Expert architectures Specialists exist, but routing is not framed as service resolution Treats expert selection as Agentic Name Search (ANS) over callable components
Memory design Frequently associated with external retrieval or latent sequence state Uses in-process posterior state and confidence cues from the current inference pass
Reproducibility Many strong systems are infrastructure-heavy and difficult to replicate Implements a lightweight, Colab-feasible pipeline with transparent components
Table 2. Positioning of MemANS against the closest prior systems.
Table 2. Positioning of MemANS against the closest prior systems.
System Routing mechanism Efficiency strategy Interpret. Reprod. Benchmark
SpotFake [3] None; always-on concatenation All experts for all samples Low Moderate Twitter/Weibo binary
EANN [12] None; adversarial joint training Full pipeline per sample Low Moderate Twitter/Weibo binary
AMFB [5] None; attention pooling Fixed cost per sample Low Moderate Twitter/Weibo binary
MDF-FND [7] Internal dynamic weighting Latent gating, not eliminated Low Moderate Self-collected binary
MoE-FND [8] Latent gating over mixture Sparse expert activation Low Moderate Weibo/Fakeddit binary
Progressive Fusion [15] None; stage-wise refinement All stages for all samples Low Moderate Fakeddit binary
Entity-Enhanced [16] None; entity-guided alignment Always-on processing Moderate Moderate Fakeddit six-class
GAMED [19] Knowledge-adaptive latent routing Domain-conditioned sparsity Low Moderate Multi-domain binary
Self-Learning [9] None; iterative refinement Full pipeline on all samples Low Moderate Fakeddit six-class
MemANS (this work) Explicit event-driven ANS resolution Selective escalation; ∼1.72 experts avg. High High Balanced Fakeddit six-class
Table 3. Final benchmark splits and per-class composition.
Table 3. Final benchmark splits and per-class composition.
Split Instances Per-class Image availability Purpose
Train 5400 900 Required Model training
Validation 840 140 Required Policy search
Test 840 140 Required Final evaluation and statistical testing
Test candidate pool 1320 220 Pre-filtered Oversampled pool before pruning
Table 4. Feature engineering summary by modality.
Table 4. Feature engineering summary by modality.
Feature channel Construction Dim. Rationale
Text TF-IDF on clean_title; unigrams and bigrams; max_features = 12 , 000 , min_df = 2 12,000 Captures lexical and phrasal cues transparently
Image 32 × 32 RGB: grayscale flattening, per-channel mean/std, per-channel and grayscale histograms, edge statistics 1,064 Provides compact visual evidence without heavy pretrained encoders
Metadata num_comments, score, upvote_ratio, token_count, char_count; standardised 5 Supplies low-cost engagement and structural cues
Table 5. Base experts and their functional roles.
Table 5. Base experts and their functional roles.
Expert / system Input feature space Functional role
Text expert Text TF-IDF features Linguistic posterior; evaluates text-only classification
Image expert Image handcrafted descriptors Visual posterior; evaluates image-only classification
Text–metadata expert Text posterior + standardised metadata Default resolver; strongest single-stage baseline
Fusion expert Text posterior + image posterior + metadata Always-on multimodal baseline
Specialist expert Text–metadata features on disagreement subset Ambiguity-rich specialist; invoked conditionally by MemANS
Table 6. Final MemANS routing policy selected through structured search.
Table 6. Final MemANS routing policy selected through structured search.
Policy component Selected value Empirical justification
Specialist mask Disagreement (disagree) Focuses escalation on cross-modal uncertainty
Specialist feature set Text–metadata (text_meta) Retains strong default evidence plus metadata context
Confidence source Fusion maximum (fusion) Filters out low-confidence disagreement events
Regularisation C = 2.0 Strongest validated specialist performance
Threshold τ = 0.40 Balances route coverage (0.7202) against selectivity
Table 7. Main system comparison on the final balanced Fakeddit test benchmark (840 instances). Best value per column in bold.
Table 7. Main system comparison on the final balanced Fakeddit test benchmark (840 instances). Best value per column in bold.
System Acc. W-F1 Macro-F1 Macro-P Macro-R MCC W-AUC Avg. exp.
MemANS 0.6167 0.6182 0.6182 0.6226 0.6167 0.5405 0.8726 1.7202
Text–metadata expert 0.6083 0.6103 0.6103 0.6142 0.6083 0.5303 0.8708 1.0000
Fusion expert 0.5726 0.5732 0.5732 0.5742 0.5726 0.4872 0.8686 2.0000
Table 8. Inferential comparison of MemANS against the two baselines.
Table 8. Inferential comparison of MemANS against the two baselines.
Comparison Δ Macro-F1 95% CI Boot. p Paired-t p Interpretation
MemANS vs. text–metadata 0.0079 [ 0.0012 , 0.0173 ] 0.0980 0.0896 Positive trend; CI crosses zero
MemANS vs. fusion 0.0454 [ 0.0198 , 0.0710 ] 0.0000 0.0010 Clear, statistically supported gain
Table 9. Event-driven routing behaviour on the validation and test splits.
Table 9. Event-driven routing behaviour on the validation and test splits.
Routing quantity Validation Test
Disagreement rate 0.7881 0.7976
Specialist route rate 0.7226 0.7202
Confidence threshold τ 0.40 0.40
Average experts used by MemANS 1.7202
Average experts used by fusion baseline 2.0000
Table 10. Conventional multimodal fusion versus the MemANS interpretation.
Table 10. Conventional multimodal fusion versus the MemANS interpretation.
Dimension Conventional multimodal fusion MemANS interpretation
Unit of adaptation Latent weights or internal attention mechanisms Explicit expert-routing decision governed by cross-modal disagreement and confidence gating
Default behaviour Joint multimodal processing for all inputs Default resolver (text–metadata) with conditional specialist escalation
Specialist invocation Implicit, subsumed within fused representation Explicit, event-triggered, and named
Memory role Hidden state or external document retrieval In-process capability state encoding expert availability and routing history
Systems extensibility Difficult to expand modularly; new modalities require retraining fusion operators Naturally compatible with named-specialist addition without altering existing experts
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.