Papers for

medical data analysts

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Unified retrieval method improves entity recognition for small AI models

URA-NER: A Unified Retrieval-Augmented Framework with Retrieval Alignment and Uncertainty Reduction for Low-Resource NER

Abstract: In-context learning (ICL) based on large language models (LLMs) has shown promising potential in alleviating performance bottlenecks caused by the limited availability of annotated data in Named Entity Recognition (NER). However, existing methods still face issues of retrieval misalignment and generation uncertainty, making their performance heavily dependent on the LLM's capabilities. As the parameter scale of LLMs decreases, their performance in few-shot settings deteriorates significantly. In this paper, we propose a novel unified retrieval-augmented framework, URA-NER, including three key components: Progressive Granularity Retrieval (PGR), Model-aware Representation Enhancement (MaRE), and Reason-aware Knowledge Verification. PGR is a two-stage retrieval mechanism that achieves stage alignment. It first retrieves demonstrations for span detection based on the query's global semantics, and then for type classification based on the specific entity context, providing fine-grained local information. Moreover, MaRE employs entity pre-recognition to guide the construction of representations, ensuring the query and demonstrations are aligned within the LLM's semantic space and attention pattern. In addition, to mitigate generation uncertainty, we propose RaKV, a closed-loop "generation-retrieval-verification" process. It explicates the LLM's reasoning paths, leverages them for the retrieval of external knowledge, and reorganizes the knowledge into verification evidence aligned with the original reasoning paths. We conduct extensive experiments on multiple low-resource NER datasets. Results demonstrate that URA-NER significantly enhances the performance of LLMs under low-resource settings, with particularly pronounced gains for smaller LLMs, achieving new state-of-the-art results on several benchmarks.

Mon 21 SeptComputation and LanguageArtificial Intelligence
The gist
Named Entity Recognition (NER) systems identify important names or terms in texts but usually need lots of labeled examples to work well. The authors developed URA-NER, a new method that helps smaller language AI models do this better with only a few examples by carefully choosing helpful examples and reducing confusion during the process. Their approach involves two stages of finding examples, improving how AI understands these examples, and double-checking the AI's reasoning with external knowledge. Tests showed this method significantly boosts recognition accuracy on tasks where training data is scarce, especially benefiting smaller AI models.
Open 2609.24372v1

Llms improve continuously with environment-driven dynamic policies

Smarter by the Moment: Environment-Driven Dynamic Policies for Continual LLM Improvement

Abstract: Large Language Models (LLMs) have achieved remarkable progress across diverse domains, but continual adaptation to evolving tasks and environments remains a key challenge. Existing memory-augmented approaches retrieve individual past examples as direct references, but do not explicitly synthesize actionable strategies from them, causing the same types of errors to recur. We propose Dynamic Retrieval-based Policy Generation (DRPG), a framework that integrates memory-based retrieval with a dynamic policy generator, leveraging historical data and environment feedback to produce task-specific policies for continual LLM improvement. We evaluate DRPG across six benchmarks spanning text-to-SQL, question answering, medical diagnosis, and Python programming, using seven LLMs from both proprietary and open-weight families. DRPG outperforms strong baselines across most datasets and models. Further analysis demonstrates that DRPG's policy generation is robust to retrieval strategy, operates effectively without prior policy continuity, and can leverage smaller or cross-family models as cost-efficient policy generators. We also find that the benefit of policy-level guidance depends on task characteristics, offering practical insights into when and under what conditions this mechanism is most effective.

Tue 15 SeptComputation and Language
The gist
Large language models often struggle to keep improving as their tasks and environments change. The authors propose a method called Dynamic Retrieval-based Policy Generation (DRPG) that helps these models learn smarter by creating specific plans based on past experiences and environment feedback. This approach makes the models better at a variety of tasks, like answering questions or writing code, without repeating the same mistakes. The authors also found that DRPG works well with different kinds of models and tasks, making it a flexible way to keep improving language models over time.
Open 2609.16800v1

Smote improves logistic classification when assumptions break down

PU classification under Non-SCAR: clustering-assisted logistic model with oversampling enhancement

Abstract: This study addresses the PU classification problem under violations of the SCAR assumption. We investigate logistic regression-based approaches, namely the cluster method and its extensions with strict and non-strict Lasso regularization. The primary contribution of this work is the integration of the SMOTE technique to alleviate class imbalance and systematically assess its impact on the performance of the considered algorithms. SMOTE is first applied to rebalance the training dataset. Next, cleaning labels are derived via 2-means clustering. Logistic regression is then trained on the cleaned data, where identified positive instances are augmented with additional true positives and the remaining observations are treated as negative. The experimental evaluation is conducted on 13 real benchmark datasets and one synthetic dataset. For comparison, we include the naive approach and the Spy-EM method. The results demonstrate that incorporating SMOTE improves classification performance when the SCAR condition is violated and indicate moderate robustness of the LassoJoint method in this setting.

Sun 13 SeptArtificial IntelligenceMachine Learning
The gist
This study looks at a tricky type of data problem where you only have examples labeled as positive or unlabeled, and usual assumptions about the data don’t hold. The authors explore ways to improve how logistic regression models handle this challenge by using a method called SMOTE to balance the data and clustering to clean the labels. Their results from testing on many real and synthetic datasets show that adding SMOTE helps the models perform better when the usual data assumptions are violated. One of their logistic regression variants using regularization also showed some robustness in these cases.
Open 2609.14675v1

Multiview semantically consistent encoding improves multi-label prediction with missing data

When Semantically Consistent Encoding Meets View-Label Heterogeneity Modeling: A Unified Framework for Incomplete Multi-View Multi-Label Learning

Abstract: Incomplete multi-view multi-label learning requires not only robust semantic aggregation from partially observed views, but also label-aware exploitation of view-specific evidence. Existing approaches usually emphasize either shared representation learning or decision-level fusion. The former improves robustness against missing views, yet tends to compress label-discriminative view-specific cues into a single latent representation. The latter preserves individual view predictions, but often relies on fixed or globally learned fusion weights, ignoring that different labels of different instances may require different views. To address these limitations, this paper presents V2L, a unified representation-decision framework for incomplete multi-view multi-label classification. On the representation side, V2L constructs semantically consistent variational posteriors from incomplete views through a perturbation-aware encoding mechanism, which provides a stable shared semantic basis. On the decision side, V2L introduces an active view-label relevance modeling strategy that estimates instance-wise and label-wise view contributions, allowing each label prediction to adaptively select useful view-specific evidence. From the perspective of model architecture, these two important strategies are integrated into a unified framework through a hybrid fusion architecture, simultaneously meeting the requirements of cross-view semantic consistency and representational complementarity. Extensive experiments under both incomplete and complete settings show that V2L achieves leading performance on five benchmarks. Code is available at: https://github.com/justsmart/V2L.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
Some problems involve identifying multiple labels from data collected in different ways, but often some of these data views are missing or incomplete. The authors propose a new method called V2L that first creates a shared understanding from the partial data and then actively figures out which data sources are important for each label. This dual approach helps make more accurate predictions even when some information is missing. Their experiments show this method works better than previous ones on various benchmark tests.
Open 2609.07525v1