Papers for

knowledge base engineers

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.

Efficient dense vector search boosts multimodal querying in knowledge graphs

Efficient Dense Vector Search within Knowledge Graph Content Embeddings

Abstract: Knowledge graphs are a core component of today's knowledge infrastructure, supporting reasoning and anchoring knowledge systems to verifiable facts. RDF stores and SPARQL engines fulfill this function, enabling a range of retrieval and inference tasks on structured knowledge. Coupling them with Language Models (LMs) extends RAG toward neurosymbolic reasoning, where structured queries gate or re-rank generative outputs. This line of reasoning requires that SPARQL evaluation natively support tensor operations on dense embeddings, enabling multimodal querying and learned similarity-based ranking to be expressed together with graph-structural constraints. This approach is feasible only if the engine can efficiently perform dense vector search. We present QLever-Unified Indexed Vector Embedding Retrieval (QUIVER), an extension to QLever that adds native support for dense vector retrieval within RDF knowledge graphs. It implements three optimizations: engine-level registration of tensor functions, vocabulary-time parsing of JSON-encoded vectors, and a virtual SERVICE that exposes a vector index inside the query. We propose two new benchmarks: an extension of Berlin Sparql Benchmark (BSBM) with text embeddings and an extension of DBpedia with image embeddings. Against the baselines, vocabulary-time parsing alone yields median speedups of up to 41.9x on BSBM and 20x on DBpedia for single-type ranking; adding an approximate nearest-neighbor index yields speedups of 355x on BSBM and 97.8x on DBpedia. The index further makes cross-modal vector joins on DBpedia feasible in seconds, whereas all non-indexed configurations time out.

Mon 21 SeptDatabases
The gist
Searching large knowledge graphs is important for finding facts and reasoning, but it can be slow with complex data like vectors from language or images. The authors improved an existing system by adding fast methods to search dense vectors inside these graphs, making it possible to quickly combine text, images, and structured data in queries. They also created new tests showing their approach can be tens to hundreds of times faster than before. Their work helps connect traditional knowledge bases with modern AI data for better and faster answers.
Open 2609.24236v1

Chinese military news benchmark helps improve event and entity extraction

CMNIE: An Information Extraction Benchmark for Chinese Military News

Abstract: Structured extraction from Chinese military news supports intelligence analysis, decision-making, and knowledge base construction. However, existing resources provide limited support for joint informa?tion extraction in this domain, especially when events, event arguments, entities, and relations must be modeled together. We present CMNIE, an information extraction benchmark for Chinese military news. Extend?ing military-domain resources beyond document-level event annotations, CMNIE jointly annotates event triggers, event arguments, named enti?ties, and entity relations under a unified domain schema. The dataset contains 13,000 instances collected from public Chinese military news, with manual annotations for 7 event types, 10 argument roles, 7 entity types, and 8 relation types. We evaluate supervised IE models, zero-shot large language models, and fine-tuned LLM-based extraction methods on a shared test set. Experimental results show that CMNIE remains chal?lenging, especially for relation extraction and exact matching of event?argument spans; zero-shot LLMs often identify relevant semantic units but fail to match gold span boundaries exactly. CMNIE provides a stan?dardized benchmark for studying schema adherence, exact span match?ing, and joint structured extraction in specialized Chinese news.

Wed 9 SeptComputation and Language
The gist
Extracting detailed, structured information from Chinese military news articles is hard because events, people, places, and their connections all need to be understood at once. The authors created a new dataset called CMNIE with 13,000 carefully labeled news instances that identify different event types, important roles in those events, named entities, and relations between them. They tested current AI models and found the task remains difficult, especially for exact matches of event details and relationships. This dataset creates a shared challenge to help improve how machines understand complex military news in Chinese.
Open 2609.10722v1

DBpedia triple filtering improves data precision for language generation

Validating DBpedia Triple Sets for Natural Language Generation

Abstract: We present a study of the quality of individual DBpedia triples from the perspective of Natural Language Generation, and propose and evaluate an approach for collecting entity-specific triple sets that filters out questionable triples while minimizing the loss of correct ones. We show in an evaluation against manually annotated data that with validation rules, it is possible to reach 98% precision in triple selection, and with improvements to a few Property definitions, it is possible to improve recall by 40% without harming precision.

Mon 7 SeptComputation and Language
The gist
When computers create sentences from data, the quality of that data matters a lot. This study looks closely at DBpedia, a big collection of facts, and finds ways to spot and remove unclear or wrong bits. The authors show their method picks correct facts with very high accuracy and can find many more right facts without adding mistakes. This helps make the sentences computers write based on this data clearer and more reliable.
Open 2609.07589v1

Taxonomy creation improved by preserving structure in concept grouping

SPARROW: Scalable Taxonomy Induction via Structure-Preserving Partitioning and Constraint-Guided Merging

Abstract: Taxonomy induction aims to organize concept sets into coherent hierarchical structures. Recent LLM-based methods can induce taxonomies directly from flat term lists, avoiding the need for corpora, but degrade sharply as concept sets scale up. We argue that this degradation stems not only from context length limitations, but also from structural failures in hierarchical reasoning. To address this, we adopt a divide-and-merge paradigm that partitions concepts into smaller subsets, induces local taxonomies, and merges them into a global hierarchy. However, we identify two structural failure modes inherent to this paradigm: Structural Fragmentation, where partitioning weakens local hierarchical signals, and Parent Displacement, where locally plausible relations are misplaced in the global hierarchy. To address both, we propose SPARROW, a scalable taxonomy induction framework that combines structure-preserving spectral partitioning to retain hierarchical connectivity within each block, and constraint-guided incremental fusion that treats block-level relations as structural constraints rather than ground truth for global placement. Experiments on large-scale benchmarks show that SPARROW consistently achieves the strongest global structural quality across backbones. The code is available at https://github.com/rebeccazyr/SPARROW.

Mon 7 SeptComputation and Language
The gist
Organizing ideas into categories helps us understand relationships, but it becomes tricky when there are many concepts. The authors found that breaking concepts into smaller groups and then combining them can cause errors if the group's structure breaks down or connections get misplaced. They created SPARROW, a system that carefully groups concepts to keep these connections and uses rules to merge groups correctly. This method works better at building big, accurate idea hierarchies than previous approaches.
Open 2609.07307v1