← Latest papers
🤖 AI

NeurOWL: An LLM-Based Neural-symbolic Framework for Incomplete OWL Ontology Reasoning

The paper introduces NeurOWL, an end-to-end neuro-symbolic framework that leverages Large Language Models and ontology embeddings to verify the semantic plausibility of subsumption in incomplete OWL ontologies and generate logically sound explanations with potential missing axioms.

Original authors: Hui Yang, Jiaoyan Chen, Yiping Song, Renate Schmidt, Wen Zhang

Published 2026-07-20
📖 7 min read🧠 Deep dive

Original authors: Hui Yang, Jiaoyan Chen, Yiping Song, Renate Schmidt, Wen Zhang

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you are trying to solve a massive, intergalactic mystery, but your clue book is missing several pages. You have a list of rules about how different characters relate to each other—like "All cats are mammals" or "All mammals produce milk"—but the book doesn't explicitly say "All Persian cats are animals." In the world of computer science, this is called an ontology. Think of an ontology as a super-organized, digital encyclopedia that teaches a computer how to understand the world. It uses a strict language called OWL (Web Ontology Language) to define rules so that machines can reason, or "think," about how things fit together.

However, real-world encyclopedias are rarely perfect. They are often incomplete because the world is too big to write down every single rule, or because experts haven't had time to finish the job. When a computer tries to use these "broken" encyclopedias, it gets stuck. It can't prove that a Persian cat is an animal because the specific rule connecting them is missing. This is a huge problem for fields like healthcare and biology, where missing a connection could mean missing a cure or a diagnosis. Scientists have tried to fix this by asking computers to guess the missing rules, but usually, they need a pre-written list of possible guesses, which is like trying to find a needle in a haystack when you're only allowed to look in a tiny, pre-defined box.

Enter NeurOWL, a new framework that acts like a detective with a superpower. Instead of being stuck with a tiny box of guesses, NeurOWL combines the strict logic of a computer with the creative intuition of a Large Language Model (an AI that reads and understands human text). It doesn't just check if a rule is true; it tries to figure out why it might be true even if the rulebook is missing a page, and then it writes down the missing page for you. It's like having a detective who can look at a crime scene, realize a witness is missing, and then use their knowledge of the neighborhood to guess exactly who that witness might be, all while making sure their guess makes logical sense.

The Detective's Toolkit: How NeurOWL Works

The paper introduces NeurOWL as a "neuro-symbolic" framework. That's a fancy way of saying it mixes two types of thinking: symbolic (the strict, mathematical logic of the computer) and neural (the fuzzy, pattern-matching intuition of the AI). The goal is simple: given a broken rulebook and a question like "Is a Persian Cat an Animal?", NeurOWL decides if the answer is likely "Yes" or "No," and if it's "Yes," it finds the missing pieces of the puzzle to explain why.

Here is how the detective solves the case, step-by-step:

Step 1: The Logic Check (The "Obvious" Test)
First, NeurOWL asks the strict computer logic: "Can I prove this using only the rules we have right now?" If the answer is yes, great! It gives you the proof. But if the answer is no (because the rulebook is incomplete), it doesn't give up. It assumes some rules are missing and moves to the next step.

Step 2: The Logical Bridge (The "Connect the Dots" Phase)
This is where the detective gets clever. If the path from "Persian Cat" to "Animal" is broken, NeurOWL looks for a "bridge" concept that could connect them.

  • Downward Search: It looks at the "children" of the target. If "Animal" has children like "Mammal" and "Cat," maybe the missing rule is "Persian Cat is a Cat"?
  • Upward Search: It looks at the "parents" of the starting point. If "Persian Cat" is a type of "Pet Cat," maybe the missing rule is "Pet Cat is a Cat"?
    The system uses the computer's logic to find these potential bridges, but then it calls in the LLM (the AI detective) to verify them. The AI reads the names and descriptions and says, "Yes, that makes sense! A Pet Cat is definitely a Cat."

Step 3: The Semantic Bridge (The "Gut Feeling" Phase)
If the logical search fails, NeurOWL switches to pure intuition. It uses embeddings, which are like digital fingerprints for words. It asks the AI: "Is there any concept in the entire encyclopedia that feels like it sits between 'Persian Cat' and 'Animal'?" The AI scans its vast knowledge of language and suggests a candidate. If it finds one, it checks if the connection holds. If not, it might just guess that the rule "Persian Cat is an Animal" is missing entirely and needs to be added directly.

What They Found: A Detective's Success Story

The researchers tested NeurOWL on real-world data from two massive encyclopedias: FoodOn (about food and agriculture) and Snomed CT (a huge medical database). They created "broken" versions of these encyclopedias by randomly deleting 5% of the rules, just to see if NeurOWL could fix them.

The results were impressive. When asked to guess if a missing rule was plausible, NeurOWL got it right about 97% of the time on the FoodOn dataset and 96.8% on the Snomed CT dataset. But the real magic was in the explanations. Unlike other methods that just say "Yes" or "No," NeurOWL actually wrote down the missing rules.

  • On the FoodOn dataset, it correctly identified the missing rules and explained them with a score of 89.3 (called X-F1).
  • On the medical dataset, it achieved a score of 84.7.

The paper also showed that NeurOWL is flexible. It can work without any extra training (using a pre-trained AI) or it can be "fine-tuned" (given a crash course on the specific encyclopedia) to get even better at complex medical terms. In fact, for the trickiest medical cases involving complex relationships, the fine-tuned version performed significantly better, proving that giving the detective a specialized training manual helps.

What NeurOWL Is Not (And What It Rules Out)

It is important to know what NeurOWL doesn't do. The paper explicitly rules out the idea that you need a pre-defined list of possible missing rules to solve the problem. Old methods required scientists to say, "Here are the 100 rules you can guess from." NeurOWL throws that rulebook away and says, "I'll look at the whole world and guess whatever fits."

The authors also clarify that they are not claiming to have "solved" ontology reasoning forever. They are not saying the computer is now smarter than a human expert. Instead, they suggest that this method is a powerful tool to assist experts. The system is designed to handle cases where the target rule might actually be wrong, too. If the AI thinks "Persian Cats are Rocks," it will say "No" and stop, rather than forcing a bad explanation.

The confidence in these results comes from rigorous testing on thousands of examples. The numbers aren't guesses; they are measured outcomes from running the system on real data. However, the paper notes that in extremely complex scenarios (like guessing rules involving very specific medical restrictions), the system's performance drops a bit, suggesting there is still room for improvement.

The Bottom Line

NeurOWL is like a detective that doesn't just solve the mystery but also writes the missing chapter of the story. By combining the strict logic of computers with the creative intuition of AI, it can look at a broken encyclopedia, figure out what's missing, and explain why it's missing. It doesn't need a cheat sheet of possible answers; it just uses its knowledge of the world to fill in the gaps. For anyone working with complex data, from doctors to food scientists, this means we might soon have AI assistants that can not only answer questions but also help us fix the books we use to ask them in the first place.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →