Papers for

business intelligence developers

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.

Self evolving ontology layer improves data agents working with diverse data

EvoOntology: A Self-Evolving Ontology Layer for Data Agents

Abstract: Data agents aim to fulfill natural-language instructions over heterogeneous data, including tables, files, and databases. However, data agents face a challenging agent-data gap: heterogeneous data resides outside the agent, while the agent can access it (e.g., column names and file paths) only through generic tools. Existing approaches either let agents directly explore raw data sources or inject manually constructed semantic layers into prompts. However, neither scales well to large heterogeneous data sources nor adapts to different agent behaviors. In this paper, we introduce EvoOntology, a self-evolving ontology layer for data agents. EvoOntology encapsulates the ontology as an MCP server comprising a schema layer, a content layer, and a tool layer, enabling agents to actively query and interact with the ontology at runtime. To this end, we introduce a builder agent for autonomous ontology construction and a self-evolution loop that continuously refines the ontology through attribution-guided typed edits that are accepted only after a backbone-conditional paired evaluation. Experiments on three well-adopted data-agent benchmarks with four LLM backbones demonstrate that EvoOntology consistently outperforms strong baselines and existing semantic-layer approaches, effectively bridging the agent-data gap and enabling more effective interaction with heterogeneous data. Code: https://github.com/ruc-datalab/EvoOntology

Mon 14 SeptArtificial IntelligenceComputation and LanguageDatabases
The gist
Data agents struggle to understand and use many different kinds of data because they only see limited information about it. The authors created EvoOntology, a special system that builds and updates a knowledge structure on its own to help agents find and use data better. This system keeps improving itself by checking and fixing its knowledge based on how well it helps the agents. Tests show that agents using EvoOntology do better at handling mixed data compared to older methods.
Open 2609.15779v1

Financial vision language models struggle with reliable chart action advice

E2A-Bench: Benchmarking Evidence-to-Action Reliability in Financial Chart Reasoning

Abstract: Can financial vision-language models (VLMs) turn chart evidence into reliable action recommendations? Existing hallucination evaluations are mostly claim-centric; they assess whether generated statements are supported, but not whether evidence remains traceable through rationale, confidence, and final action. We introduce E2A-Bench, a 969-query benchmark for financial chart reasoning, constructed from 323 HS300 constituents under three input modalities with deterministic OHLCV-derived evidence anchors. E2A-Bench evaluates grounding, reasoning-action consistency, evidence-confidence calibration, and directional coverage through UCR, RCI, ECI, and NDR, where NDR measures coverage-aware evidence-to-action reliability rather than realized trading performance. Evaluating 20 VLMs reveals three failures hidden by scalar hallucination scores: the lowest-UCR model ranks near the bottom by NDR due to only 6.4% directional coverage; oracle-aided verification reduces unsupported claims but can collapse coverage; and financial fine-tuning amplifies the BUY:SELL ratio by factors of 4.21 to 4.68 across strict base-fine-tuned pairs. These results show that financial VLM evaluation should trace the full evidence-to-action chain rather than rely on a single hallucination score. Code and data: https://github.com/wanng-ide/E2A-Bench

Sun 13 SeptComputation and Language
The gist
Financial models that look at charts and give advice often say things that don't fully match the data they see. The authors created a new test called E2A-Bench to check if these models truly base their advice on chart evidence and if their reasoning is consistent. When testing 20 popular models, they found many give unreliable or biased action suggestions, especially without tracing the whole reasoning from evidence to action. This work shows it’s important to check the entire chain of evidence supporting financial advice from AI models, not just whether their claims sound correct.
Open 2609.14302v1

Structure aware method improves large language model table understanding

DeepTable: Structural Attention Biases and Tree Path Encoding for Hierarchical Table Understanding

Abstract: Large language models (LLMs) have demonstrated strong performance in table understanding. However, they typically process table content and headers as linearized token sequences. This representation weakens the two-dimensional and hierarchical structural relationships encoded by multi-level row and column headers. Existing parameter-efficient fine-tuning methods incorporate basic row and column information but do not explicitly capture the rich structural dependencies induced by hierarchical table headers. We propose DeepTable, a structure-aware approach for table understanding with LLMs. DeepTable comprises two complementary components. Structural Attention Bias (SAB) introduces learnable biases into the attention logits to explicitly represent whether pairs of table tokens share the same row or column. Tree Path Encoding (TPE) represents each table token using the ancestor paths of its row and column headers, preserving its position within the multi-level table structure. We integrate DeepTable with TableLoRA (He et al., 2025) to inject structural information into parameter-efficient adaptation. Across three LLM backbones, DeepTable consistently improves the corresponding TableLoRA baselines on three table question answering benchmarks, achieving average gains of 7.42 points on HiTab, 3.23 points on WikiTQ, and 2.01 BLEU points on FeTaQA. These results demonstrate the effectiveness of the proposed structural biases across different LLM backbones.

Mon 7 SeptComputation and Language
The gist
Understanding tables with multiple levels of row and column headers is tricky for language models that read tables as simple lists. The authors propose DeepTable, which adds special ways for the model to know if two pieces belong in the same row or column and records where each cell fits in the table’s hierarchy. This helps the model better understand the structure of complex tables. Tests on different language models and question-answering tasks show DeepTable consistently improves performance over previous methods.
Open 2609.07707v1

Current methods fall short on extracting insights from large table collections

Open Tabular Insight Extraction: Where Do We Stand, and Where Should We Go?

Abstract: Democratizing access to the knowledge held in large corpora of tables such as data lakes is emerging as a central research challenge. Research in this space is advancing and broadening in scope, increasingly supplying the components to satisfy a person's insight need end-to-end. Yet these efforts remain fragmented across communities that frame the problem under their own conventions, such as table question answering, text-to-SQL, and data analysis agents, with works six times as likely to cite within the same task label as across labels. To bring these communities onto common ground, we establish a holistic framework for this pursuit, which we refer to as Open Tabular Insight Extraction (OpenTI). We formalize OpenTI from first principles around the analytical knowledge a person needs, the procedure for deriving it from a corpus of tables, and how well a result serves the person who sought it. In doing so we consolidate frameworks and terminology across information retrieval, natural language processing, machine learning, databases, and human-computer interaction, and apply this grounding in a systematic review and analysis of systems and benchmarks that work towards OpenTI. We find that current systems do not cover the end-to-end scope of OpenTI, mainly focusing on the analysis itself, and that benchmarks are largely unfit for evaluations in an open setting as inputs presuppose knowledge of tables, and validation mechanisms do not match the setup. Finally, we distill a research agenda towards OpenTI systems, evaluation, and interaction paradigms that surface the insights users need. An interactive companion to our paper is available at https://open-tabular-insight-extraction.github.io.

Mon 7 SeptInformation RetrievalArtificial IntelligenceComputation and Language
The gist
Many people want to get useful information from huge collections of tables but existing tools only solve parts of the problem. The authors looked at different research areas and combined their ideas into one clear framework called Open Tabular Insight Extraction. They found that current systems mainly focus on analyzing tables but don’t cover all the steps needed from start to finish. They suggest new directions for building better tools and tests that really check if these tools help users find insights.
Open 2609.07629v1