Ontology Engineering Tools and Methodologies Ian Horrocks horrockscs

  • Slides: 79
Download presentation
Ontology Engineering: Tools and Methodologies Ian Horrocks <horrocks@cs. man. ac. uk> Information Management Group

Ontology Engineering: Tools and Methodologies Ian Horrocks <horrocks@cs. man. ac. uk> Information Management Group School of Computer Science University of Manchester

Tutorial Resources http: //www. cs. man. ac. uk/~horrocks/nsd 07/

Tutorial Resources http: //www. cs. man. ac. uk/~horrocks/nsd 07/

Ontologies

Ontologies

Ontology: Origins and History • In Philosophy, fundamental branch of metaphysics – Studies “being”

Ontology: Origins and History • In Philosophy, fundamental branch of metaphysics – Studies “being” or “existence” and their basic categories – Aims to find out what entities and types of entities exist

Ontology in Information Science • An ontology is an engineering artefact consisting of: –

Ontology in Information Science • An ontology is an engineering artefact consisting of: – A vocabulary used to describe (a particular view of) some domain – An explicit specification of the intended meaning of the vocabulary. • Often includes classification based information – Constraints capturing background knowledge about the domain • Ideally, an ontology should: – Capture a shared understanding of a domain of interest – Provide a formal and machine manipulable model

Example Ontology (Protégé)

Example Ontology (Protégé)

The Web Ontology Language OWL

The Web Ontology Language OWL

OWL History • Semantic Web led to requirement for a “web ontology language” •

OWL History • Semantic Web led to requirement for a “web ontology language” • set up Web-Ontology (Web. Ont) Working Group – Web. Ont developed OWL language – OWL based on earlier languages RDF, OIL and DAML+OIL – OWL now a W 3 C recommendation (i. e. , a standard) • OWL is a family of 3 languages: OWL Lite, OWL DL and OWL Full • OIL, DAML+OIL and OWL (DL & Lite) based on Description Logics – Many OWL DL/Lite tools & ontologies – Relatively few OWL Full tools or ontologies

What Are Description Logics? • A family of logic based Knowledge Representation formalisms –

What Are Description Logics? • A family of logic based Knowledge Representation formalisms – Descendants of semantic networks and KL-ONE – Describe domain in terms of concepts (classes), roles (properties, relationships) and individuals – Operators allow for composition of complex concepts – Names can be given to complex concepts, e. g. : Happy. Parent ´ Parent u 8 has. Child. (Intelligent t Athletic)

Why (Description) Logic? • OWL exploits results of 15+ years of DL research –

Why (Description) Logic? • OWL exploits results of 15+ years of DL research – Well defined (model theoretic) semantics Animal IS-A Cat has-color Black IS-A Felix sits-on Mat [Quillian, 1967]

Why (Description) Logic? • OWL exploits results of 15+ years of DL research –

Why (Description) Logic? • OWL exploits results of 15+ years of DL research – Well defined (model theoretic) semantics – Formal properties well understood (complexity, decidability) I can’t find an efficient algorithm, but neither can all these famous people. [Garey & Johnson. Computers and Intractability: A Guide to the Theory of NP-Completeness. Freeman, 1979. ]

Why (Description) Logic? • OWL exploits results of 15+ years of DL research –

Why (Description) Logic? • OWL exploits results of 15+ years of DL research – Well defined (model theoretic) semantics – Formal properties well understood (complexity, decidability) – Known reasoning algorithms

Why (Description) Logic? • OWL exploits results of 15+ years of DL research –

Why (Description) Logic? • OWL exploits results of 15+ years of DL research – Well defined (model theoretic) semantics – Formal properties well understood (complexity, decidability) – Known reasoning algorithms – Implemented systems (highly optimised) Pellet KAON 2 CEL

Why the Strange Names? • Description Logics are a family of KR formalisms –

Why the Strange Names? • Description Logics are a family of KR formalisms – Mainly distinguished by available operators • Available operators indicated by letters in name, e. g. , S : basic DL (ALC) plus transitive roles (e. g. , ancestor R+) H : role hierarchy (e. g. , has. Daughter v has. Child) O : nominals/singleton classes (e. g. , {Italy}) I : inverse roles (e. g. , is. Child. Of ´ has. Child–) N : number restrictions (e. g. , >2 has. Child, 63 has. Child) • Basic DL + role hierarchy + nominals + inverse + NR = SHOIN – The basis for OWL-DL • SHOIN is very expressive, but still decidable (just) – Decidable we can build reliable tools and reasoners

Why (Description) Logic? • Foundational research was crucial to design of OWL – Informed

Why (Description) Logic? • Foundational research was crucial to design of OWL – Informed Working Group decisions at every stage, e. g. : • “Why not extend the language with feature x, which is clearly harmless? ” • “Adding x would lead to undecidability - see proof in […]”

Class/Concept Constructors • • C is a concept (class); P is a role (property);

Class/Concept Constructors • • C is a concept (class); P is a role (property); x is an individual name XMLS datatypes as well as classes in 8 P. C and 9 P. C – Restricted form of DL concrete domains

Knowledge Base / Ontology Axioms

Knowledge Base / Ontology Axioms

Knowledge Base / Ontology • A TBox is a set of “schema” axioms (sentences),

Knowledge Base / Ontology • A TBox is a set of “schema” axioms (sentences), e. g. : {Parent v Person u >1 has. Child, Happy. Parent ´ Parent u 8 has. Child. (Intelligent t Athletic)} • An ABox is a set of “data” axioms (ground facts), e. g. : {John: Happy. Parent, John has. Child Mary} • An OWL ontology is just a SHOIN KB

OWL RDF/XML Exchange Syntax E. g. , Parent u 8 has. Child. (Intelligent t

OWL RDF/XML Exchange Syntax E. g. , Parent u 8 has. Child. (Intelligent t Athletic): <owl: Class> <owl: intersection. Of rdf: parse. Type=" collection"> <owl: Class rdf: about="#Parent"/> <owl: Restriction> <owl: on. Property rdf: resource="#has. Child"/> <owl: all. Values. From> <owl: union. Of rdf: parse. Type=" collection"> <owl: Class rdf: about="#Intelligent"/> <owl: Class rdf: about="#Athletic"/> </owl: union. Of> </owl: all. Values. From> </owl: Restriction> </owl: intersection. Of> </owl: Class>

Ontology Reasoning

Ontology Reasoning

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is essential to provide tools and services to help users: – Design and maintain high quality ontologies, e. g. : • Meaningful — all named classes can have instances

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is essential to provide tools and services to help users: – Design and maintain high quality ontologies, e. g. : • Meaningful — all named classes can have instances • Correct — captures intuitions of domain experts

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is essential to provide tools and services to help users: – Design and maintain high quality ontologies, e. g. : • Meaningful — all named classes can have instances • Correct — captures intuitions of domain experts • Minimally redundant — no unintended synonyms Banana split Banana sundae

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is

Why Ontology Reasoning? • Given key role of ontologies in many applications, it is essential to provide tools and services to help users: – Design and maintain high quality ontologies, e. g. : • Meaningful — all named classes can have instances • Correct — captures intuitions of domain experts • Minimally redundant — no unintended synonyms – Answer queries, e. g. : • Find more general/specific classes • Retrieve individuals/tuples matching a given query

Ontology Applications

Ontology Applications

e-Science • E. g. , Open Biomedical Ontologies Consortium (GO, MGED) – Used, e.

e-Science • E. g. , Open Biomedical Ontologies Consortium (GO, MGED) – Used, e. g. , for “in silico” investigations relating theory and data • E. g. , relating data on phosphatases to (model of) biological knowledge

Medicine • Building/maintaining terminologies such as Snomed, NCI, Galen and FMA – Used, e.

Medicine • Building/maintaining terminologies such as Snomed, NCI, Galen and FMA – Used, e. g. , for semi-automated annotation of MRI images Central Sulcus Parietal Lobe Frontal Lobe Occipital Lobe Temporal Lobe Lateral Sulcus

Organising Complex Information • E. g. , UN-FAO, NASA, Ordnance Survey, General Motors, Lockheed

Organising Complex Information • E. g. , UN-FAO, NASA, Ordnance Survey, General Motors, Lockheed Martin, …

Organising Complex Information • E. g. , UN-FAO, NASA, Ordnance Survey, General Motors, Lockheed

Organising Complex Information • E. g. , UN-FAO, NASA, Ordnance Survey, General Motors, Lockheed Martin, …

OWL Experiences and Directions • Workshop at ESWC’ 07 (Innsbruck, Austria, 6 -7 June)

OWL Experiences and Directions • Workshop at ESWC’ 07 (Innsbruck, Austria, 6 -7 June) • Brings together users, implementors and researchers • Submissions include: – Enterprise Integration (Mitre) – Product development (Lockheed Martin) – Role based access control (NASA) – Healthcare (SNOMED) – Agriculture and fisheries (UN Food & Agriculture Organization) – Oral Medicine (Chalmers) – …

Ontology Engineering

Ontology Engineering

Ontology Engineering Tasks • Typical tasks in Ontology Engineering: – author concept descriptions –

Ontology Engineering Tasks • Typical tasks in Ontology Engineering: – author concept descriptions – refine the ontology – manage errors – integrate different ontologies – (partially) reuse ontologies • These tasks are highly challenging; need for: – tool & infrastructure support – design methodologies

Tools and Infrastructure • Editors/environments – Protégé, Swoop, Top. Braid Composer, Construct, Ontotrack, …

Tools and Infrastructure • Editors/environments – Protégé, Swoop, Top. Braid Composer, Construct, Ontotrack, …

Tools and Infrastructure • Editors/environments – Oiled, Protégé, Swoop, Construct, Ontotrack, … • Reasoning

Tools and Infrastructure • Editors/environments – Oiled, Protégé, Swoop, Construct, Ontotrack, … • Reasoning systems – Cerebra, Fa. CT++, Kaon 2, Pellet, Racer, … Pellet KAON 2 CEL

Tools and Infrastructure • Editors/environments – Oiled, Protégé, Swoop, Construct, Ontotrack, … • Reasoning

Tools and Infrastructure • Editors/environments – Oiled, Protégé, Swoop, Construct, Ontotrack, … • Reasoning systems – Cerebra, Fa. CT++, Kaon 2, Pellet, Racer, … • Design methodologies – Modularity, foundational ontologies, etc. Entity Endurant Quality Substantial Perdurant Event Achievement Stative Accomplishment

Development & Maintenance

Development & Maintenance

Development Environments • Most widely used free to download tools are – Protégé (Stanford

Development Environments • Most widely used free to download tools are – Protégé (Stanford / Manchester) -- be sure to get v 4. x – Swoop (UMD / Clark & Parsia) • Commercial tools include – Top. Braid, Racer. Pro, … • Facilities typically include – Range of display modes and editing features – Visualisation – Consistency and subsumption checking • Useful extras may include – Debugging and explanation – Repair http: //code. google. com/p/swoop/ http: //protege. stanford. edu/ – Integration and/or partitioning

Demo Ontologies • GALEN – http: //www. cs. man. ac. uk/~horrocks/OWL/Ontologies/galen. owl • NCI

Demo Ontologies • GALEN – http: //www. cs. man. ac. uk/~horrocks/OWL/Ontologies/galen. owl • NCI – http: //www. mindswap. org/2003/Cancer. Ontology • Tambis – http: //www. cs. man. ac. uk/~horrocks/OWL/Ontologies/tambis. owl

GALEN • Ontology about medical terms and surgical procedures. • Work started in the

GALEN • Ontology about medical terms and surgical procedures. • Work started in the 90 s within the Open. GALEN project. • Main applications: – Integration of clinical records, and – decision support. • GALEN: – is very large (~35, 000 concepts), – is fairly expressive (SHIF description logic), – has not been classified yet by any DL reasoner • We will look at a smaller version, which: – is still large (~3, 000 concepts), – is similarly expressive as full GALEN, – was first classified by the Fa. CT system.

GALEN: The Ontology at a Glance • Size: – ~ 3, 000 classes –

GALEN: The Ontology at a Glance • Size: – ~ 3, 000 classes – ~ 500 object properties – no individuals or datatypes • Expressivity – ~350 General Concept Inclusion Axioms (GCIs). – Concept constructors: • Conjunction (intersection. Of) • Existential restrictions (some. Values. From) – 150 functional properties – 26 transitive properties

GALEN: The (Unclassified) Hierarchies • The class hierarchy: – Number of subsumption relations: 1,

GALEN: The (Unclassified) Hierarchies • The class hierarchy: – Number of subsumption relations: 1, 978 – Maximum depth of the tree: 13 – No multiple inheritance • The property hierarchy: – 4 properties with multiple inheritance

GALEN: Concept definitions and GCIs Concept definition – Axiom of the form A ´

GALEN: Concept definitions and GCIs Concept definition – Axiom of the form A ´ C with: • A a concept name • C a (possibly complex) concept – A definition assigns a name A to a complex concept C Some examples: Lung. Pathology ´ Pathological. Condition u 9 locative. Attribute. Lung Renal. Transplant ´ Transplanting u 9 acts. On. Kindney

GALEN: Concept definitions and GCIs Inclusion axioms: – Axioms of the form A v

GALEN: Concept definitions and GCIs Inclusion axioms: – Axioms of the form A v C: • A is a concept name • C is a possibly complex concept – Represent an incomplete (“partial”) definition • Examples: XRay. Machine v Imaging. Device Candida v Fungus u 9 has. Function. Aerobic. Metabolic. Process • In GALEN, some of these can be very complex: – check out the definitions of Knee Joint and Kidney!

GALEN: Concept definitions and GCIs General Concept Inclusion Axioms (GCIs) – Axioms of the

GALEN: Concept definitions and GCIs General Concept Inclusion Axioms (GCIs) – Axioms of the form C ´ D • C, D can be complex • May describe general (background) knowledge about the ontology Examples: Secretion u 9 acts. Specifically. On. Leucocidin v 9 is. Function. Of. Straphilococcus. Aureus Transport u 9 acts. On. Glucose u 9 carries. From. Blood v 9 carries. To. Cell

Classifying GALEN Ontology statistics (revisited): – Number of class subsumption relations: 6729 • 1978

Classifying GALEN Ontology statistics (revisited): – Number of class subsumption relations: 6729 • 1978 of which are “told” and the rest inferred – Maximum depth of the class tree: 15 • As opposed to 13 in the case of the unclassified tree – Classes with multiple inheritance: 408 • All multiple inheritance relations have been inferred! • This was intended in the design of GALEN – Maximum depth of the property tree: 9 • No change with respect to the “told” tree – Properties with multiple inheritance: 4 • Again, no change with respect to the “told” tree Reasoning is mostly performed on classes and not on properties

Modeling Choices • The “upper” part: – Composed of the domain-independent concepts and roles.

Modeling Choices • The “upper” part: – Composed of the domain-independent concepts and roles. – Examples: • Top. Category, Domain. Category, Generalised. Structure… – Shallowly defined (mostly a taxonomy) • The “domain specific” part: – Examples: • Plant, Lung. Pathology, … – Richly defined • Much more than just a taxonomy!

Inferred Knowledge A trivial subsumption: – Why is Pathological. Condition a subclass of Domain.

Inferred Knowledge A trivial subsumption: – Why is Pathological. Condition a subclass of Domain. Category? • Simply look at the definition of Pathological Condition! Another example: – Why is Pathological. Behavior a subclass of Pathological. Condition? • Look at the definition of both classes • Notice that Behavior is a subclass of Domain. Category A non-trivial subsumption: – Why is Achalasia. Processes a Pathological. Body. Processes?

Classifying GALEN • Simple and multiple inheritance – Focus, for example, on Pathological. Body.

Classifying GALEN • Simple and multiple inheritance – Focus, for example, on Pathological. Body. Process – Navigate to its super-classes – Visualisation can be useful • In Swoop we can “Fly the mother ship”!

The NCI Ontology • Huge bio-medical ontology describing the Cancer domain • Maintained by

The NCI Ontology • Huge bio-medical ontology describing the Cancer domain • Maintained by dozens of domain experts • Contains information about: – genes, – diseases, – drugs, – research institutions, … All with a cancer-centric focus

NCI: The Ontology at a Glance • Size: – ~ 30. 000 classes –

NCI: The Ontology at a Glance • Size: – ~ 30. 000 classes – ~ 70 object properties – no individuals or datatypes • Expressivity – Concept constructors: • Conjunction (intersection. Of) • Existential restrictions (some. Values. From) – Axioms: • Definitions (no GCIs) • Domain and range of properties

NCI: The (Unclassified) Hierarchies • The class hierarchy: – Number of subsumption relations: 103.

NCI: The (Unclassified) Hierarchies • The class hierarchy: – Number of subsumption relations: 103. 232 – Maximum depth of the tree: 19 – Classes with multiple inheritance: 4636 – Browse through it! • The property hierarchy: – No properties with multiple inheritance – Browse through it!

Axioms in NCI Examples: Cancer_Gene v Gene u 9 has. Function. Tumoregenesis Alzheimer_Disease v

Axioms in NCI Examples: Cancer_Gene v Gene u 9 has. Function. Tumoregenesis Alzheimer_Disease v Dementia Domain(r. Anatomic_Structure_Has_Location) = Anatomy_Kind Range(r. Technique_Has_Purpose) = Clinical_Or_Research_Activity_Kind

The NCI Kinds • “Upper” concepts representing the sub-domains of NCI • Examples: –

The NCI Kinds • “Upper” concepts representing the sub-domains of NCI • Examples: – Anatomy. – Biological processes. – Chemicals and drugs. – Organisms … • Properties relating the Kinds

NCI • Partitioning and crop-circles view of the partitioning • Gives an intuition about

NCI • Partitioning and crop-circles view of the partitioning • Gives an intuition about the different sub-domains in NCI, which ones are central, and which ones are “side” domains

NCI and GALEN • The domains of NCI and GALEN overlap. Both ontologies define

NCI and GALEN • The domains of NCI and GALEN overlap. Both ontologies define concepts such as: – Anatomical parts: bone, tissue, etc. – Diseases – Organisms, … • Example: – Check out how Femur is defined in NCI and GALEN – Different modeling decisions and focus of interest

Tambis • TAMBIS is a medical ontology constructed during the early days of the

Tambis • TAMBIS is a medical ontology constructed during the early days of the Web. • The intended application was the integrated access to information in a set of databases. • The OWL version was generated from the old format using a (buggy) script.

Tambis: The Ontology at a Glance • Size: – ~ 400 classes – ~

Tambis: The Ontology at a Glance • Size: – ~ 400 classes – ~ 100 object properties – • no individuals or datatypes Expressivity – No General Concept Inclusion Axioms. – Concept constructors: • Conjunction (intersection. Of) • Disjunction (union. Of) • Existential restrictions (some. Values. From) • Universal restriction (all. Values. From) • Cardinality restrictions – Axioms • Definitions (complete and partial) • Transitive, functional, symmetric and inverse properties

Tambis: the (unclassified) hierarchies • • Subclass relationships: 226 No multiple inheritance Maximum depth

Tambis: the (unclassified) hierarchies • • Subclass relationships: 226 No multiple inheritance Maximum depth of class tree: 6 Maximum depth of property tree: 2

Tambis: Example Axioms • Tambis uses cardinality restrictions profusely – See definition of anion

Tambis: Example Axioms • Tambis uses cardinality restrictions profusely – See definition of anion • Use of disjunction – See definition of atom • Use of universal restrictions – See definition of book-title • Use of complex nested restrictions – See definition of complement-dna – See definition of gene • Disjointness axioms – See definitions of metal, non-metal and metalloid

Tambis: Classification • Subclass relationships: 600 – compared to 226 • Classes with multiple

Tambis: Classification • Subclass relationships: 600 – compared to 226 • Classes with multiple inheritance: 19 – compared to none • Maximum deph of class tree: 7 – compared to 6 • Maximum depth of property tree: 2 • 144 unsatisfiable concepts!

Tambis: Unsatisfiable concepts • Almost half of the concepts in Tambis are unsatisfiable •

Tambis: Unsatisfiable concepts • Almost half of the concepts in Tambis are unsatisfiable • The explanations are non-trivial – E. g. , protein-structure and macromolecular-part • Distinguishing root and derived unsatisfiable classes: – derived unsatisfiable classes are unsatisfiable because they depend on another unsatisfiable concept. • definition of Enzyme, • definition of Binding-site – root unsatisfiable classes contain an “inherent” contradiction • definition of Metal, • definition of Non-metal, • definition of Metalloid

Advanced Issues and Design Patterns

Advanced Issues and Design Patterns

Qualified Number Restrictions (QCRs) • Existential restrictions in OWL DL are qualified: – Person

Qualified Number Restrictions (QCRs) • Existential restrictions in OWL DL are qualified: – Person u 9 has. Child. Male • Cardinality restrictions can only be qualified with > – Person u >2. has. Child • The lack of QCRs has been identified as a major limitation of OWL, especially in biomedical applications: – A quadruped is an animal with exactly four parts that are legs – A medical oversight committee is a committee which consists of at least five members of which two are medical doctors, one is a manager and two are members of the public.

Qualified Cardinality Restrictions Can be approximated using property inclusion and property range. Quadruped ´

Qualified Cardinality Restrictions Can be approximated using property inclusion and property range. Quadruped ´ Animal u (= 4 has. Leg) has. Leg v has. Part Range(has. Leg) = Leg

Qualified Cardinality Restrictions This approximation is unsound in general: Medical. Committee ´ Committee u

Qualified Cardinality Restrictions This approximation is unsound in general: Medical. Committee ´ Committee u (=3 has. Member) u · 1 has. Member. MD u · 1 has. Member. : MD Approximated by: Medical. Committee ´ (=3 has. Member) u · 1 has. MDMember u · 1 has. Not. MDMember has. MDMember v has. Member has. Not. MDMember v has. Member Range(has. MDMember) = MD Range(has. Not. MDMember) = : MD

Transitive Propagation of Properties • In OWL, we can express transitive propagation of a

Transitive Propagation of Properties • In OWL, we can express transitive propagation of a property: – If Paris is located in France and France is located in Europe, then France is located in Europe. – If the hand is a part of the arm and the arm is part of the human body, then the hand is a part of the human body. • In OWL, however, we cannot express transitive propagation of a property along a different property: – If an ulcer is located in the gastric mucosa and the gastric mucosa is a part of the stomach, then the ulcer is located in the stomach – If a burn is located in the foot and the foot is part of the leg, then the burn is located in the leg.

Transitive Propagation of Properties Various patterns that approximate transitive propagation have been proposed and

Transitive Propagation of Properties Various patterns that approximate transitive propagation have been proposed and used in ontologies. • Use of the property hierarchy and transitivity: Part_Of v Located_In Transitive(Part_Of) • This pattern may yield undesired results, since part-whole relations may not always imply location: – The orange peal is part of the orange, but is it located in the orange?

Design Methodologies

Design Methodologies

Modularity in Software Engineering Typically referred to as the extent to which software is

Modularity in Software Engineering Typically referred to as the extent to which software is divided into components with: – high internal cohesion – controlled coupling between each other through simple interfaces (encapsulation) Benefits of modular software design: – software maintainability – software understandability

Modularity in Ontology Engineering Benefits of a modular ontology design: to simplify • ontology

Modularity in Ontology Engineering Benefits of a modular ontology design: to simplify • ontology refinement/update modifying a module should not lead to modifications in parts of the ontology that are not conceptually related • understanding relationships between different modules in an ontology controlled and well-understood • integration with other ontologies no unexpected consequences • partial reuse only the relevant part/module of an ontology

Q 1 Cystic. Fibrosis v Fibrosis u 9 located. In. Pancreas u 9 has.

Q 1 Cystic. Fibrosis v Fibrosis u 9 located. In. Pancreas u 9 has. Origin. Genetic. Origin 2 Genetic. Fibrosis v Fibrosis u 9 has. Origin. Genetic. Origin 3 Fibrosis u 9 located. In. Pancreas v Genetic. Fibrosis 4 Genetic. Fibrosis v Genetic. Disorder PQ[ ²QCystic. Fibrosis ² > v Project v Genetic Disorder P P [ QPP²[ [Cystic. Fib. Project QQ² ²>Genetic. Fibrosis v 9 has. Focus. > v Gen. Disorder. Project t Genetic. Disorder v ? 1 Gen. Disorder. Project = Project u 9 has. Focus. Genetic. Disorder 2 Cystic. Fib. Project = Project u 9 has. Focus. Cystic. Fibrosis 3 9 has. Focus. > v Project 4 Project u (Genetic. Fibrosis u Genetic. Disorder) v ? 5 8 has. Focus. Cystic. Fibrosis v 9 has. Focus. Genetic. Disorder

Foundational Ontologies • E. g. , DOLCE

Foundational Ontologies • E. g. , DOLCE

Recent Work and Research Challenges

Recent Work and Research Challenges

Increasing Expressive Power • Complex role inclusion axioms [Horrocks, Kutz & Sattler, KR-06] –

Increasing Expressive Power • Complex role inclusion axioms [Horrocks, Kutz & Sattler, KR-06] – E. g. , has. Location ± part. Of v has. Location • Concrete domains/datatypes, e. g. , [Lutz, IJCAI-99; Pan et al, ISWC-03] – E. g. , value comparison (income > expenditure) • OWL 1. 1 (see http: //webont. org/owl/1. 1/) – Syntactic sugar to make commonly-stated things easier to say – New class & property constructors – Expanded datatype expressiveness – Meta-modelling constructs – Semantic-free comments – Now a W 3 C Member Submission

Increasing Expressive Power • Complex role inclusion axioms [Horrocks, Kutz & Sattler, KR-06] –

Increasing Expressive Power • Complex role inclusion axioms [Horrocks, Kutz & Sattler, KR-06] – E. g. , has. Location ± part. Of v has. Location • Concrete domains/datatypes, e. g. , [Lutz, IJCAI-99; Pan et al, ISWC-03] – E. g. , value comparison (income > expenditure) • OWL 1. 1 (see http: //webont. org/owl/1. 1/) • Database style keys [Lutz et al, JAIR 2004] – E. g. , make + model + chassis-number is a key for Vehicles • Rule language extensions – W 3 C RIF WG (see http: //www. w 3. org/2005/rules/) – First order extensions (e. g. , SWRL) [Horrocks et al, JWS, 2005] – Hybrid language extensions, e. g. , [Eiter et al, KR-04; Motik et al, ISWC-04; Rosati, Jo. WS, 2005] – LP/F-Logic/Common Logic [Chen et al, JLP, 1993; de Bruijn et al, WWW-05]

Improving Scalability • Optimisation techniques – Improve performance of DL reasoners, e. g. ,

Improving Scalability • Optimisation techniques – Improve performance of DL reasoners, e. g. , [Sirin et al, KR-06] • Reduction to disjunctive Datalog [Motik et at, KR-04] – Transform SHOIN ontology to DatalogÇ rules – Use LP techniques to deal with large numbers of ground facts • Hybrid DL-DB systems [Horrocks et al, CADE-05] – Use DB to store “Abox” (individual) axioms – Cache inferences and use DB queries to answer/scope logical queries • Polynomial time algorithms for sub-ALC logics – Graph based techniques for EL+ [Baader et al, IJCAI-05] – Database techniques for DL-Lite [Calvanese et al, AAAI-05]

Summary • OWL Ontologies provide vocabulary for annotations – Terms have well defined meaning

Summary • OWL Ontologies provide vocabulary for annotations – Terms have well defined meaning • OWL now being used in a wide range of applications – e-Science, medicine, geography, geology, … • Reasoning enabled tools are of crucial importance – For both design and deployment of ontologies • Large and extremely active R&D area – New and improved tools & methodologies constantly appearing • Research challenges remain – But tools now mature enough for “prime time” applications

Acknowledgements Thanks to my many friends in the DL and Semantic Web communities, in

Acknowledgements Thanks to my many friends in the DL and Semantic Web communities, in particular: – Alan Rector – Franz Baader – Uli Sattler – The Swoop/Pellet team: • Aditya Kalyanpur • Evren Sirin • Bernardo Cuenca Grau • Bijan Parsia

Thank you for listening Any questions? Resources: • Fa. CT++ system (open source) •

Thank you for listening Any questions? Resources: • Fa. CT++ system (open source) • – http: //owl. man. ac. uk/factplus/ • OWL – http: //protege. stanford. edu/plugins/owl/ • – http: //www. w 3. org/TR/owl-features/ • OWL Experiences and Directions Workshop – http: //owled 2007. iut-velizy. uvsq. fr/ Protégé OWL 1. 1 Proposal – http: //webont. org/owl/1. 1/