Suraj Biswas, Saurabh Gupta, Pritam Mukherjee
Ask a pretrained biomedical language model whether "cortisol 28 ug/dL" and "stock-market volatility" are related, and it returns a cosine similarity of 0.83 on a scale where 1.0 means identical. The two share no mechanism. This is not a corner case: every off-the-shelf biomedical encoder we tested (BioBERT, PubMedBERT, BioM-ELECTRA) scores unrelated cross-domain pairs between 0.76 and 0.92 when the answer should be near zero. Accuracy on cross-domain discrimination is 0%. Retrieval systems survive this, because a language model downstream filters the noise. A Large Behavioural Model (LBM), a foundation model whose subject is a person rather than a sentence, does not: it reasons over a graph of a user's life and treats embedding proximity as evidence that two events are causally linked. False proximity writes a false causal edge, and everything downstream inherits the error. Here, embedding geometry is not a tuning knob; it is correctness. We report the fix. A contrastive pass over 72,034 pairs raises PubMedBERT BIOSSES correlation from 0.633 to 0.828 and within-vs-across-domain separation from 1.05x to 1.63x. A second pass, BODHI, mines hard negatives from edges absent in a biomedical knowledge graph and lifts separation to 2.30x and the discrimination gap to +0.392, at a 4.5% BIOSSES cost. On an Intel Xeon 6737P with AMX, OpenVINO cuts single-query latency from 1367 ms to 10 ms (133x) and reaches 555 sentences/sec. One finding contradicts standard advice: FP16 beats INT8 on this silicon at every serving batch size, and we explain why. The same model on a no-AMX Ice Lake instance runs 13-27x slower. We release the benchmark suite, training corpora, the BODHI generator, and the OpenVINO scripts.
The paper identifies and addresses a specific failure mode of pretrained biomedical language model embeddings: when used as proximity signals in a graph-based reasoning system (their "Large Behavioural Model" or LBM), off-the-shelf encoders assign high cosine similarity (0.76–0.92) to semantically unrelated cross-domain pairs, yielding 0% accuracy on cross-domain discrimination. The fix involves a two-pass contrastive fine-tuning approach. Pass 1 uses 72,034 triplets from eight datasets with Matryoshka + Multiple Negatives Ranking Loss. Pass 2 ("BODHI") mines hard negatives from absent edges in a biomedical knowledge graph, pushing intra/inter-domain separation from 1.05× to 2.30×. The paper also characterizes deployment on Intel Xeon AMX hardware, demonstrating 133× latency reduction via OpenVINO and a counterintuitive finding that FP16 outperforms INT8 on AMX silicon.
The paper has several methodological concerns:
The problem framing is overstated. The "failure" identified — high cosine similarity between unrelated cross-domain pairs — is the well-documented anisotropy problem in BERT embeddings, extensively studied since Ethayarajh (2019). The authors acknowledge this but frame it as a novel discovery. The 0% cross-domain discrimination result, while dramatic, is tested on only 10 pairs (Table 5), with just 2 being cross-domain negatives. This is not a statistically meaningful evaluation. The "six-part diagnostic" (B1–B6) is custom-built by the authors without external validation, and the cross-domain test set composition is not rigorously described.
The BODHI approach lacks formal evaluation rigor. Training on ~3,500 ontology triplets in Pass 2 is extremely small-scale. The paper does not provide held-out evaluation on independently curated cross-domain pairs, nor does it test generalization to domains not represented in training. The 93% F1 figure comes from threshold sweeping on what appears to be the same distribution used for training/tuning — no train/test split is explicitly described for the discrimination evaluation.
The LBM context is hypothetical. The entire motivation rests on the LBM architecture described in a companion preprint (arXiv:2605.27580), but no end-to-end evaluation demonstrates that improved embeddings actually improve LBM graph construction or downstream reasoning. The claim that "embedding geometry is correctness" for the LBM remains unvalidated.
Baseline comparisons are narrow. The paper only tests three encoders and does not compare against established solutions to anisotropy (SimCSE, whitening, prompt-based methods) or modern biomedical sentence embedding models like SapBERT (which is cited but not benchmarked). Standard biomedical similarity benchmarks beyond BIOSSES (e.g., MedSTS, clinical STS datasets) are not used.
The paper addresses a real issue — that naïve use of pretrained embeddings as causal proximity signals is dangerous — but the solution is narrowly applicable. The BODHI recipe of using absent knowledge graph edges as hard negatives is a reasonable idea with potential generalizability to other ontology-rich domains. However, the concept of using knowledge graph structure for contrastive learning is not novel (e.g., work on KG-enhanced embeddings predates this).
The deployment engineering section (AMX characterization, FP16 vs INT8 analysis) provides practical value for Intel Xeon users, though this reads more as a vendor-specific optimization guide than generalizable scientific contribution. The finding that FP16 outperforms INT8 due to dequantization overhead on AMX is interesting but hardware-specific and may not persist across firmware/compiler updates.
The paper touches on relevant themes: foundation models for personalized health, causal reasoning over heterogeneous data, and efficient CPU inference. The "Large Behavioural Model" concept addresses a genuine gap — modeling individuals across multiple life domains — but the concept remains speculative without demonstrated clinical or behavioral validation. The embedding anisotropy problem, while real, has been actively addressed by the NLP community for years, making the core technical contribution somewhat incremental.
Notable concern: The paper claims "embedding geometry is correctness" for causal reasoning, but even perfect semantic discrimination (knowing two concepts are related) is fundamentally different from causal inference. Two concepts can be semantically related without being causally linked, and vice versa. The paper does not engage with causal inference literature beyond a single Pearl citation.
This paper identifies a real problem (embedding anisotropy corrupting graph-based reasoning), proposes a reasonable solution (ontology-guided contrastive fine-tuning), and provides thorough hardware deployment analysis. However, the scientific contribution is incremental given existing work on anisotropy, the evaluation methodology has significant gaps, the motivating application (LBM) is unvalidated, and the paper lacks comparison to established baselines. The engineering contribution around Intel AMX deployment is practical but narrow.
Generated Jun 9, 2026
Paper 1 identifies a fundamental flaw in biomedical embedding models—high cosine similarity between causally unrelated cross-domain pairs—and provides a rigorous, reproducible fix (contrastive fine-tuning + BODHI hard-negative mining) with clear metrics. It addresses a critical infrastructure problem for emerging Large Behavioural Models and causal discovery, with broad implications across biomedicine, personalized health, and AI safety. Paper 2 contributes a useful but incremental benchmarking framework for LLM agents. While valuable, benchmarking frameworks tend to have shorter shelf lives and narrower methodological contributions compared to Paper 1's foundational embedding correction work.
Paper 2 addresses a fundamental question in LLM training methodology—how feedback context design affects self-distillation—with clean experimental design and actionable insights (step-aligned critique outperforms alternatives). Its findings have broad applicability across reasoning tasks and LLM training paradigms. Paper 1, while identifying a real problem with biomedical embeddings in cross-domain settings, is more niche (focused on Large Behavioural Models, a less established paradigm) and primarily engineering-oriented (contrastive fine-tuning, inference optimization). Paper 2's mechanistic insight about structural alignment in self-distillation has wider theoretical and practical implications.
Paper 2 addresses a fundamental flaw in biomedical embedding models that affects causal reasoning in emerging Large Behavioural Models. It provides a novel, reproducible fix (BODHI) with strong quantitative improvements, releases comprehensive artifacts, and bridges multiple fields (NLP, causal inference, personalized medicine, hardware optimization). Paper 1, while introducing a useful benchmark for LLM office automation, is primarily an evaluation study documenting limitations of existing systems in a narrower application domain, with less methodological novelty and fewer cross-disciplinary implications.
Paper 2 addresses a broader and more impactful problem—enabling medical AI agents to accumulate and reuse structured clinical reasoning experience without weight updates. Its self-evolving skill memory framework (SkeMex) has wide applicability across clinical decision-making tasks and generalizes across model backbones. Paper 1, while technically rigorous in identifying and fixing embedding geometry issues for biomedical language models, addresses a narrower infrastructure-level problem (embedding calibration for cross-domain discrimination) with more limited downstream applications centered on a specific architecture (Large Behavioural Models). Paper 2's contributions to agentic AI in medicine have broader cross-field relevance.
Paper 2 is likely higher impact: it identifies a broadly relevant failure mode in pretrained biomedical encoders (spurious high similarity for unrelated cross-domain pairs) that can directly corrupt causal reasoning in user-level models, then proposes generalizable contrastive and KG-mined hard-negative fixes with sizable quantitative gains. It also contributes practical systems insights (CPU/AMX/OpenVINO latency) plus released benchmarks and tooling, enabling adoption and follow-on work across biomed NLP, retrieval, personalization, and causal discovery. Paper 1 is applied and useful but more domain-specific, with heavier dependence on LLM orchestration and less general methodological novelty.
Paper 2 has higher potential impact due to a clearer, broader problem statement (embedding geometry causing spurious cross-domain “causal” links), a concrete and generalizable mitigation (contrastive training plus knowledge-graph-derived hard negatives), and strong evidence across accuracy, separation metrics, and deployment performance. It targets timely needs in retrieval, biomedical NLP, and emerging “life-graph”/agentic causal reasoning, and contributes artifacts (benchmarks, corpora, generators, serving scripts) that can accelerate follow-on work. Paper 1 is valuable but more niche to LLM trace debugging/localization.
Paper 1 addresses a fundamental flaw in how foundation models represent causal relationships across domains, bridging NLP, biomedical informatics, and causal inference. Its implications for building 'Large Behavioural Models' offer high novelty and broad interdisciplinary impact. Paper 2 provides a solid, practical solution for a specific domain (traffic prediction and spatio-temporal data management), but its scope and potential for widespread scientific disruption are narrower compared to the foundational representation and hardware-optimized solutions presented in Paper 1.
Paper 2 addresses a fundamental flaw in biomedical language model embeddings that affects causal reasoning in emerging Large Behavioural Models—a timely, cross-disciplinary problem. It provides a concrete fix (contrastive fine-tuning + BODHI hard-negative mining), demonstrates substantial improvements, includes hardware-aware deployment insights (AMX, OpenVINO), and releases all artifacts. Its breadth spans NLP, causal inference, personalized health, and systems optimization. Paper 1, while rigorous, addresses a narrower pattern mining problem with incremental methodological contributions and more limited cross-field applicability.
Paper 2 likely has higher impact due to its broadly useful, verifiable evaluation framework for high-stakes clinical policy reasoning. It introduces a generalizable benchmark construction methodology (clause cards + closed-loop verification) with by-construction ground truth, supports agentic behaviors (information seeking, abstention), and provides a sizable benchmark spanning real regulatory requirements—making it timely for LLM safety/healthcare deployment and useful across NLP evaluation, clinical informatics, and AI governance. Paper 1 is innovative and practical for embedding reliability/serving, but is narrower in scope and closer to an applied optimization study.
Paper 2 addresses a fundamental and broadly impactful problem—showing that standard biomedical embeddings fail catastrophically at cross-domain discrimination (0% accuracy), which has direct implications for any system using embedding proximity as evidence of causal or semantic relatedness. The fix (contrastive learning + BODHI hard-negative mining) is concrete, reproducible, and practically deployable with 133x latency speedups. It impacts multiple fields: NLP, causal inference, personalized health, and foundation model design. Paper 1 proposes an interesting multi-agent governance protocol but is narrower in scope, with key components (graduated sanctions) empirically unvalidated, limiting its immediate impact.