Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems:...

24
Semantic Web Systems Ontological Engineering Jacques Fleuriot School of Informatics

Transcript of Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems:...

Page 1: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems

Ontological Engineering

Jacques Fleuriot

School of Informatics

Page 2: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

So far in this course… l  Languages and formalisms for:

§  making assertions about the world :JamesDean    :playedIn    :Giant  .  

§  defining ontologies :Actor    rdf:type    rdfs:Class  .  

:Actor    rdfs:subClassOf    :Performer  .  

l  But how do we go about developing ontologies?

2

Page 3: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

In this lecture

l  Methodologies for developing ontologies.

l  Tips & considerations.

l  Tools.

3

Page 4: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Software Development Process l  Requirements.

l  Design. l  Implementation.

l  Testing.

l  Maintenance.

4

Similar story with ontologies!

Page 5: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Ontology Development Process

5 Source: Ontological Engineering

Page 6: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Methodologies l  Uschold and King’s method.

l  METHONTOLOGY. l  Grüninger and Fox’s methodology.

l  On-To-Knowledge.

l  Noy and McGuinness. l  NeOn Methodology.

l  and many more…

6

Page 7: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Noy and McGuinness (2001) 1.  Determine the domain and scope of the ontology.

2.  Consider reusing existing ontologies. 3.  Enumerate important terms in the ontology.

4.  Define classes and the class hierarchy.

5.  Define the properties of classes. 6.  Add constraints to the properties.

7.  Create instances.

7

Page 8: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Uschold and King (1995) l  Identify purpose and scope.

l  Build the ontology: §  Capture.

§  Coding.

§  Integrating.

l  Evaluation.

l  Documentation.

8

Page 9: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

On-To-Knowledge

9 Source: Staab et al (2001)

Page 10: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Requirement analysis l  Modelling formalism:

§  Is semantic modelling needed/appropriate? §  Representation based on formal logic reasonable? §  Which tool/representation language?

l  Ontology requirements: §  Domain? Scope? §  Granularity? §  Purpose? Tasks?

10

Page 11: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Where is the knowledge? l  Human sources (Domain experts)

§  Interviews, examples, scenarios.

l  Unstructured sources (books) §  Parsing & pronoun resolution, formalisation,

integrations with lexical background knowledge.

l  Semi-structured sources (websites).

l  Structured sources (databases).

11

Page 12: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Ontology evaluation l  Evaluation criteria:

§  Usage criteria: Fulfil intended purpose? Its logical consequences agree with reality? Help user accomplish task?

§  Logical criteria: consistency, completeness. §  Structural and formal criteria: rigidity, identity, unity,

dependence. §  Accuracy: real-world conformance.

12

Page 13: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

METHONTOLOGY

13 Source: Ontological Engineering

Page 14: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

METHONTOLOGY - conceptualisation

14 Source: Ontological Engineering

Page 15: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

The NeOn Methodology for building ontology networks l  A scenario-based methodology

§  supports the collaborative aspects of ontology development and reuse, and

§  the dynamic evolution of ontology networks in distributed environments.

l  Main components: §  A set of nine scenarios for building ontologies and ontology

networks. §  The NeOn Glossary of Processes and Activities. §  Methodological guidelines for different processes and

activities. 15

http://www.neon-project.org/nw/NeOn_Book

Page 16: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Tips for ontology creation l  Don’t forget disjointness:

Man ⊑ Human Human ⊑  Man ⊔  Woman Woman ⊑ Human Man(alex) Woman(amy)

¬Woman(alex) ?

l  Don’t forget role characteristics: §  Transitive? Inverse? Functional? Symmetric?

l  Don’t choose too specific domains and ranges.

16

Page 17: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Tips for ontology creation l  Be careful with quantifiers

§  Birds ⊑ ∃has.Wing “birds have (some) wings” §  Birds ⊑ ∀has.Wing “birds have only wings”

§  Happy ≡ ∀hasChild.Doctor vs. Happy ≡ ∀hasChild.Doctor ⊓  ∃hasChild.Doctor

l  Don’t mistake parts for subclasses §  Finger ⊑ Hand vs. Finger ⊑ ∃part_of.Hand

17

Page 18: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Tips for ontology creation l  Watch the direction of roles and choose

representative names §  :macbeth :author :shakespeare .

§  :shakespeare :author :macbeth .

l  Don’t confuse class subsumption and class equivalence §  ⊑ when necessary condition

§  ≡   when necessary and sufficient condition

18

Page 19: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Considerations l  When should we introduce a new subclass?

§  Subclass should have additional properties or new property value or participate in different relationships than its superclass

l  How many subclasses should a class have? §  No hard rules. But if just 1 or more than 12,

perhaps worth rethinking.

l  For a given concept, when should we model it as a class, and when should we model it as an instance? §  This really depends on the intended use of the

ontology 19

Page 20: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Worth keeping in mind…

l  There’s no such thing as the “correct way to model a domain”.

l  Ontology development should be an iterative process

20

Noy and McGuinness (2001)

Page 21: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Tools l  Ontology editors:

§  Protégé §  NeOn toolkit

§  SWOOP

§  And many more… http://www.w3.org/wiki/Ontology_editors

l  OWL DL reasoners §  Pellet §  RacerPro

§  FaCT++ 21

Page 22: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Summary l  Just like in Software Engineering, there is no

golden recipe for Ontology Engineering.

l  There are methodologies that can guide you throughout this process.

l  Question, analyse, justify your approach. l  Ontology Engineering is an iterative process.

l  Several tools available.

22

Page 23: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Reading l  SWWO Ch14

23

Page 24: Semantic Web Systems Ontological Engineering · Semi-structured sources ... Semantic Web Systems: Ontological Engineering ... Just like in Software Engineering, ...

Semantic Web Systems: Ontological Engineering

Task / Food for thought l  Revisit the simple hierarchy that you created at

the beginning of this course.

l  How would you build on it to develop a more comprehensive ontology?

l  What considerations would you need to make? l  And how about any assumptions needed?

24