Presentation is loading. Please wait.

Presentation is loading. Please wait.

ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ, ΑΠΘ ΜΕΤΑΠΤΥΧΙΑΚΟ ΠΡΟΓΡΑΜΜΑ ΣΠΟΥΔΩΝ Κατεύθυνση Πληροφοριακών Συστημάτων - 1ο Εξάμηνο Σημασιολογικός Ιστός lpis.csd.auth.gr/mtpx/sw/index.htm.

Similar presentations


Presentation on theme: "ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ, ΑΠΘ ΜΕΤΑΠΤΥΧΙΑΚΟ ΠΡΟΓΡΑΜΜΑ ΣΠΟΥΔΩΝ Κατεύθυνση Πληροφοριακών Συστημάτων - 1ο Εξάμηνο Σημασιολογικός Ιστός lpis.csd.auth.gr/mtpx/sw/index.htm."— Presentation transcript:

1 ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ, ΑΠΘ ΜΕΤΑΠΤΥΧΙΑΚΟ ΠΡΟΓΡΑΜΜΑ ΣΠΟΥΔΩΝ Κατεύθυνση Πληροφοριακών Συστημάτων - 1ο Εξάμηνο Σημασιολογικός Ιστός lpis.csd.auth.gr/mtpx/sw/index.htm Διδάσκων: Ν. Βασιλειάδης Αναπλ. Καθ. Τμ. Πληροφορικής ΑΠΘ Μαθήματα: 6b-7-8

2 Chapter 4 Web Ontology Language: OWL Grigoris Antoniou Frank van Harmelen

3 Chapter 4A Semantic Web Primer, 2nd Edition 4-3 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions

4 Chapter 4A Semantic Web Primer, 2nd Edition 4-4 Expressivity of RDF/RDFS The expressivity of RDF and RDF Schema is deliberately very limited – RDF is limited to binary ground predicates – RDF Schema is limited to a subclass hierarchy and a property hierarchy, with domain and range definitions of these properties The Web Ontology Working Group of W3C identified some characteristic use-cases for the Semantic Web that require much more expressiveness than RDF and RDF Schema.

5 Chapter 4A Semantic Web Primer, 2nd Edition 4-5 Need for More Powerful Language Researchers identified the need for a more powerful ontology modeling language. Initiative to define a richer language DAML+OIL – Join of the U.S. proposal DAML-ONT and the European language OIL DAML+OIL was the starting point for the definition of the language OWL – Aimed to be the standardized and broadly accepted ontology language of the Semantic Web

6 Chapter 4A Semantic Web Primer, 2nd Edition 4-6 Requirements for Ontology Languages Ontology languages allow users to write explicit, formal conceptualizations of domain models The main requirements are: – a well-defined syntax – efficient reasoning support – a formal semantics – sufficient expressive power – convenience of expression

7 Chapter 4A Semantic Web Primer, 2nd Edition 4-7 Well-Defined Syntax It is a necessary condition for machine- processing of information OWL builds upon RDF and RDFS and has the same kind of syntax The XML-based RDF syntax is not user-friendly – This drawback is not very significant because users will develop their ontologies using authoring or ontology development tools, instead of writing them directly in OWL.

8 Chapter 4A Semantic Web Primer, 2nd Edition 4-8 Formal Semantics A formal semantics describes precisely the meaning of knowledge. The semantics does not refer to subjective intuitions The semantics is not open to different interpretations by different people (or machines) One use of a formal semantics is to allow people to reason about the knowledge.

9 Chapter 4A Semantic Web Primer, 2nd Edition 4-9 Tradeoff between Expressive Power and Efficient Reasoning Support The richer the language is, the more inefficient the reasoning support becomes Sometimes it crosses the border of noncomputability We need a compromise: – A language supported by reasonably efficient reasoners – A language that can express large classes of ontologies and knowledge.

10 Chapter 4A Semantic Web Primer, 2nd Edition 4-10 Reasoning About Knowledge in Ontology Languages Equivalence of classes – If class A is equivalent to class B, and class B is equivalent to class C, then A is equivalent to C, too – If class A is subclass of B, B subclass of C and C subclass of A, then A, B, C are equivalent to each other Class membership – If x is an instance of a class C, and C is a subclass of D, then we can infer that x is an instance of D – If C and D are equivalent classes, then if x is an instance C, then it is also an instance of D, and vice versa

11 Chapter 4A Semantic Web Primer, 2nd Edition 4-11 Reasoning About Knowledge in Ontology Languages (2) Consistency – X instance of classes A and B, but A and B are disjoint – X is an instance of both A and complement of A – This is an indication of an error in the ontology Classification – Certain property-value pairs are a sufficient condition for membership in a class A FirstYearCourses are Courses with Year=1 – If an individual x satisfies such conditions, we can conclude that x must be an instance of A

12 Chapter 4A Semantic Web Primer, 2nd Edition 4-12 Uses for Reasoning Reasoning support is important for – checking consistency of ontology and knowledge – checking for unintended relationships between classes – automatically classifying instances in classes Checks like the preceding ones are valuable for – designing large ontologies, where multiple authors are involved – integrating - sharing ontologies from various sources

13 Chapter 4A Semantic Web Primer, 2nd Edition 4-13 Reasoning Support for OWL Semantics is a prerequisite for reasoning support Formal semantics and reasoning support are usually provided by – mapping an ontology language to a known logical formalism – using automated reasoners that already exist for those formalisms OWL is (partially) mapped on a description logic, and makes use of reasoners such as FaCT and RACER Description logics are a subset of predicate logic for which efficient reasoning support is possible

14 Chapter 4A Semantic Web Primer, 2nd Edition 4-14 Limitations of the Expressive Power of RDF Schema Local scope of properties – rdfs:range defines the range of a property (e.g. eats) for all classes – In RDF Schema we cannot declare range restrictions that apply to some classes only E.g. we cannot say that cows eat only plants, while other animals may eat meat, too E.g. we cannot say that postgraduate students attend only postgraduate courses, whereas students in general can attend courses

15 Chapter 4A Semantic Web Primer, 2nd Edition 4-15 Limitations of the Expressive Power of RDF Schema (2) Disjointness of classes – Sometimes we wish to say that classes are disjoint (e.g. male and female) Boolean combinations of classes – Sometimes we wish to build new classes by combining other classes using union, intersection, and complement – E.g. person is the disjoint union of the classes male and female

16 Chapter 4A Semantic Web Primer, 2nd Edition 4-16 Limitations of the Expressive Power of RDF Schema (3) Cardinality restrictions – E.g. a person has exactly two parents, a course is taught by at least one lecturer Special characteristics of properties – Transitive property (like “greater than”) – Unique property (like “is mother of”) – A property is the inverse of another property (like “eats” and “is eaten by”)

17 Chapter 4A Semantic Web Primer, 2nd Edition 4-17 Combining OWL with RDF Schema Ideally, OWL would extend RDF Schema – Consistent with the layered architecture of the Semantic Web But simply extending RDF Schema would work against obtaining expressive power and efficient reasoning – Combining RDF Schema with logic leads to uncontrollable computational properties

18 Chapter 4A Semantic Web Primer, 2nd Edition 4-18 Three Species of OWL W3C’s Web Ontology Working Group defined OWL as 3 different sublanguages: – OWL Full – OWL DL – OWL Lite Each sublanguage geared toward fulfilling different aspects of requirements

19 Chapter 4A Semantic Web Primer, 2nd Edition 4-19 OWL Full It uses all the OWL languages primitives It allows the combination of these primitives in arbitrary ways with RDF and RDF Schema OWL Full is fully upward-compatible with RDF, both syntactically and semantically – Any legal RDF document is also a legal OWL Full document – Any valid RDF/RDF Schema conclusion is also a valid OWL Full conclusion OWL Full is so powerful that it is undecidable – No complete (or efficient) reasoning support

20 Chapter 4A Semantic Web Primer, 2nd Edition 4-20 OWL DL OWL DL (Description Logic) is a sublanguage of OWL Full that restricts application of the constructors from OWL and RDF – Application of OWL’s constructors to each other is disallowed – Therefore it corresponds to a well studied description logic OWL DL permits efficient reasoning support But we lose full compatibility with RDF: – Not every RDF document is a legal OWL DL document. – Every legal OWL DL document is a legal RDF document.

21 Chapter 4A Semantic Web Primer, 2nd Edition 4-21 OWL Lite An even further restriction limits OWL DL to a subset of the language constructors – E.g., OWL Lite excludes enumerated classes, disjointness statements, and arbitrary cardinality. The advantage of this is a language that is easier to – grasp, for users – implement, for tool builders The disadvantage is restricted expressivity

22 Chapter 4A Semantic Web Primer, 2nd Edition 4-22 Comparison of OWL Sublanguages Ontology developers adopting OWL should consider which sublanguage best suits their needs. Choice between OWL Lite - OWL DL: – Do we need the more expressive constructs provided by OWL DL? Choice between OWL DL - OWL Full: – Do we need the meta-modeling facilities of RDF Schema? – E.g. defining classes of classes, attaching properties to classes. – In OWL Full reasoning support is less predictable than OWL DL, because complete OWL Full implementations are impossible

23 Chapter 4A Semantic Web Primer, 2nd Edition 4-23 OWL Compatibility with RDF Schema All varieties of OWL useRDF for their syntax Instances are declared as in RDF, using RDF descriptions and typing information OWL constructors are specialisations of their RDF counterparts

24 Chapter 4A Semantic Web Primer, 2nd Edition 4-24 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions

25 Chapter 4A Semantic Web Primer, 2nd Edition 4-25 OWL Syntactic Varieties OWL uses the RDF/XML syntax Other syntactic forms for OWL : – An alternative, more readable XML syntax (OWL/XML) – Functional syntax: much more compact and readable than the XML languages – Manchester Syntax: designed to be as human- readable as possible. Used in the user interface of most ontology editors (e.g. Protégé)

26 Chapter 4A Semantic Web Primer, 2nd Edition 4-26 OWL XML/RDF Syntax: Header <rdf:RDF xmlns:owl ="http://www.w3.org/2002/07/owl#" xmlns:rdf ="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd ="http://www.w3.org/2001/XLMSchema#" > An OWL ontology may start with a collection of assertions for housekeeping purposes using owl:Ontology element

27 Chapter 4A Semantic Web Primer, 2nd Edition 4-27 owl:Ontology An example OWL ontology <owl:priorVersion rdf:resource="http://www.mydomain.org/uni-ns-old"/> <owl:imports rdf:resource="http://www.mydomain.org/persons"/> University Ontology owl:imports is a transitive property

28 Functional OWL Syntax Ontology( Annotation(rdfs:comment "An example OWL ontology") Annotation(rdfs:label "University Ontology") Annotation(owl:imports http://www.mydomain.org/persons) ) Chapter 4A Semantic Web Primer, 2nd Edition 4-28

29 Chapter 4A Semantic Web Primer, 2nd Edition 4-29 Imported Ontologies While namespaces are used for disambiguation purposes, imported ontologies provide definitions that can be used Usually there will be an import element for each namespace used, but it is possible to import additional ontologies

30 Chapter 4A Semantic Web Primer, 2nd Edition 4-30 Classes Classes are defined using owl:Class – owl:Class is a subclass of rdfs:Class <rdfs:subClassOf rdf:resource="#academicStaffMember"/>

31 Chapter 4A Semantic Web Primer, 2nd Edition 4-31 Class Disjointness Disjointness is defined using owl:disjointWith

32 Chapter 4A Semantic Web Primer, 2nd Edition 4-32 Class Equivalence owl:equivalentClass defines equivalence of classes <owl:equivalentClass rdf:resource="#academicStaffMember"/>

33 Functional OWL Syntax Declaration(Class( )) SubClassOf( ) Declaration(Class( )) EquivalentClasses( ) DisjointClasses( ) Chapter 4A Semantic Web Primer, 2nd Edition 4-33

34 Manchester Syntax Class: uni:professor DisjointWith: uni:associateProfessor Class: uni:assistantProfessor Class: uni:associateProfessor SubClassOf: uni:academicStaffMember DisjointWith: uni:professor, uni:assistantProfessor Class: uni:academicStaffMember EquivalentTo: uni:faculty 4-34 Chapter 4A Semantic Web Primer, 2nd Edition

35 Chapter 4A Semantic Web Primer, 2nd Edition 4-35 owl:Thing and owl:Nothing Predefined classes owl:Thing is the most general class, which contains everything owl:Nothing is the empty class Εvery class is a subclass of owl:Thing and a superclass of owl:Nothing.

36 Chapter 4A Semantic Web Primer, 2nd Edition 4-36 Properties In OWL there are two kinds of properties Object properties, which relate objects to other objects – E.g. is-TaughtBy, supervises Data type properties, which relate objects to datatype values – E.g. phone, title, age, etc.

37 Chapter 4A Semantic Web Primer, 2nd Edition 4-37 Datatype Properties OWL makes use of XML Schema data types, using the layered architecture of the SW <rdfs:range rdf:resource=“&xsd;nonNegativeInteger”/>

38 Chapter 4A Semantic Web Primer, 2nd Edition 4-38 Object Properties User-defined data types <rdfs:range rdf:resource="#academicStaffMember"/>

39 Multiple domains/ranges More than 1domain and range may be declared The intersection of the domains (ranges) is taken. Chapter 4A Semantic Web Primer, 2nd Edition 4-39

40 Multiple domains/ranges in Protégé … BUT in Protégé multiple domains / ranges mean UNION Chapter 4A Semantic Web Primer, 2nd Edition 4-40

41 Multiple domains / ranges in Protégé Chapter 4A Semantic Web Primer, 2nd Edition 4-41

42 Chapter 4A Semantic Web Primer, 2nd Edition 4-42 Inverse Properties <rdfs:domain rdf:resource="#academicStaffMember"/> Domain and range can be inherited from the inverse property – Interchange domain with range.

43 Chapter 4A Semantic Web Primer, 2nd Edition 4-43 Equivalent Properties <owl:equivalentProperty rdf:resource="#teaches"/>

44 Functional OWL Syntax (1) Declaration(DataProperty( )) DataPropertyRange( ) Declaration(ObjectProperty( )) SubObjectPropertyOf( ) ObjectPropertyDomain( ) ObjectPropertyRange( ) InverseObjectProperties( ) Chapter 4A Semantic Web Primer, 2nd Edition 4-44

45 Functional OWL Syntax (2) Declaration(ObjectProperty( )) EquivalentObjectProperties( ) Declaration(ObjectProperty( )) EquivalentObjectProperties( ) InverseObjectProperties( ) ObjectPropertyDomain( ) ObjectPropertyRange( ) Chapter 4A Semantic Web Primer, 2nd Edition 4-45

46 Manchester Syntax DataProperty: uni:age Range: ObjectProperty: uni:isTaughtBy SubPropertyOf: uni:involves Characteristics: Functional Domain: uni:course Range: uni:academicStaffMember InverseOf: uni:teaches 4-46 ObjectProperty: uni:teaches EquivalentTo: uni:lecturesIn Domain: uni:academicStaffMember Range: uni:course InverseOf: uni:isTaughtBy ObjectProperty: uni:lecturesIn EquivalentTo: uni:teaches

47 Chapter 4A Semantic Web Primer, 2nd Edition 4-47 Property Restrictions In OWL we can declare that the class C satisfies certain conditions – All instances of C satisfy the conditions This is equivalent to saying that C is subclass of a class C', where C' collects all objects that satisfy the conditions – C' can remain anonymous

48 Explanation of Restrictions If an object x belongs to a class C, then it satisfies the restriction R – x  C  R(x) – Necessary condition (if an object belongs to a class, then it necessarily satisfies the restriction) Let R be the class of all objects that satisfy R – This includes necessarily all objects of class C and possibly other objects – Thus, C  R (C subclass of R) Chapter 4A Semantic Web Primer, 2nd Edition 4-48

49 Explanation of Restrictions (2) If class R includes objects ONLY of class C, this means that there are not objects that satisfy the restriction other than objects of class C – Classes R and C contain exactly the same objects – They are equivalent (C≡R  C  R  R  C) Additional condition: If an object x belongs to a class R (i.e. it satisfies the restriction R), then it must belong to class C (since C and R are equivalent) – R(x)  x  C – Sufficient condition (if an object satisfies the restriction, then this is sufficient to belong to the class) Chapter 4A Semantic Web Primer, 2nd Edition 4-49

50 Chapter 4A Semantic Web Primer, 2nd Edition 4-50 Property Restrictions (2) A (restriction) class is achieved through an owl:Restriction element This element contains an owl:onProperty element and one or more restriction declarations One type of restriction declarations defines cardinality restrictions (at least 1, at most 3, etc.)

51 Chapter 4A Semantic Web Primer, 2nd Edition 4-51 Property Restrictions (3) The other type defines restrictions on the kinds of values the property may take – owl:allValuesFrom specifies universal quantification – owl:hasValue specifies a specific value – owl:someValuesFrom specifies existential quantification

52 Chapter 4A Semantic Web Primer, 2nd Edition 4-52 owl:allValuesFrom First-year courses are taught by professors only First-year courses Courses taught by Professors

53 Chapter 4A Semantic Web Primer, 2nd Edition 4-53 owl:hasValue Mathematics courses are taught by David Billington Mathematics courses Courses taught by David Billington

54 Chapter 4A Semantic Web Primer, 2nd Edition 4-54 owl:someValuesFrom All academic staff mem- bers must teach at least 1 undergraduate course academic staff members “People” that teach at least 1 undergraduate course

55 Chapter 4A Semantic Web Primer, 2nd Edition 4-55 Cardinality Restrictions We can specify minimum and maximum number using owl:minCardinality and owl:maxCardinality It is possible to specify a precise number by using the same minimum and maximum number For convenience, OWL offers also owl:cardinality

56 Chapter 4A Semantic Web Primer, 2nd Edition 4-56 Cardinality Restrictions (2) <owl:minCardinality rdf:datatype= "&xsd;nonNegativeInteger"> 1 Every course must be taught by at least someone Courses “Things” taught by at least someone

57 4-57 Cardinality Restrictions (3) 10 30 Α department must have at least 10 and at most 30 members

58 Cardinality Restrictions (4) Chapter 4A Semantic Web Primer, 2nd Edition 4-58 Departments “Things” that have at most 30 members “Things” that have at least 10 members

59 Chapter 4A Semantic Web Primer, 2nd Edition 4-59 Restriction Conclusions owl:Restriction defines an anonymous class – Has no ID – Is not defined by owl:Class – Has only local scope It can only be used where the restriction appears. Classes have a twofold meaning: – Classes, defined by owl:Class with an ID – Local anonymous classes, defined as collections of objects that satisfy restriction conditions, or as combinations of other classes Class expressions

60 Functional OWL Syntax (1) Declaration(Class( )) SubClassOf( ObjectAllValuesFrom( )) Declaration(Class( )) SubClassOf( ObjectHasValue( )) SubClassOf( ObjectSomeValuesFrom( )) Chapter 4A Semantic Web Primer, 2nd Edition 4-60

61 Abstract OWL Syntax (2) Declaration(Class( )) SubClassOf( ObjectMinCardinality(1 )) Declaration(Class( )) SubClassOf( DataMinCardinality(10 )) SubClassOf( DataMaxCardinality(30 )) Chapter 4A Semantic Web Primer, 2nd Edition 4-61

62 Manchester Syntax Class: uni:firstYearCourse SubClassOf: uni:isTaughtBy only uni:Professor Class: uni:mathCourse SubClassOf: uni:isTaughtBy value uni:949352 Class: uni:academicStaffMember SubClassOf: uni:teaches some uni:undergraduateCourse 4-62

63 Manchester Syntax Class: uni:course SubClassOf: uni:isTaughtBy min 1 owl:Thing Class: uni:department SubClassOf: uni:hasMember min 10 rdfs:Literal, uni:hasMember max 30 rdfs:Literal 4-63

64 Chapter 4A Semantic Web Primer, 2nd Edition 4-64 Special Properties owl:TransitiveProperty (transitive property) – E.g. “is part of”, “is ancestor of” owl:SymmetricProperty (symmetry) – E.g. “has same hight as”, “is sibling of” owl:FunctionalProperty defines a property that has at most one value for each object – E.g. “age”, “height”, “directSupervisor” owl:InverseFunctionalProperty defines a property for which 2 different objects cannot have the same value

65 4-65 Special Properties (2) Declaration(ObjectProperty( )) SymmetricObjectProperty( ) TransitiveObjectProperty( ) ObjectPropertyDomain( ) ObjectPropertyRange( )

66 Manchester Syntax ObjectProperty: uni:hasSameHightAs Characteristics: Symmetric, Transitive Domain: uni:student Range: uni:student 4-66

67 Functional Properties If a property is functional, for a given individual, there can only be at most one individual to be related via this property. – For a given domain, range must be unique Functional properties are also known as single valued properties. Chapter 4A Semantic Web Primer, 2nd Edition 4-67

68 Inverse Functional Properties If a property is inverse functional, then its inverse property is functional. – For a given range, domain must be unique. Chapter 4A Semantic Web Primer, 2nd Edition 4-68

69 Functional vs. inverse functional properties domainrangeexample Functional Property For a given domain Range is unique hasFather: A hasFather B, A hasFather C  B=C InverseFunctional Property Domain is unique For a given range hasID: A hasID B, C hasID B  A=C Chapter 4A Semantic Web Primer, 2nd Edition 4-69

70 Transitive Properties If a property is transitive, and the property related individual a to individual b, and also individual b to individual c, then we can infer that individual a is related to individual c via property P. Chapter 4A Semantic Web Primer, 2nd Edition 4-70

71 Symmetric Properties If a property P is symmetric, and the property relates individual a to individual b, then individual b is also related to individual a via property P. Chapter 4A Semantic Web Primer, 2nd Edition 4-71

72 Chapter 4A Semantic Web Primer, 2nd Edition 4-72 Boolean Combinations We can combine classes using Boolean operations (union, intersection, complement) <owl:complementOf rdf:resource="#staffMember"/> Courses and staff members are disjoint staffMember __________ staffMember course

73 Alternative expression <owl:disjointWith rdf:resource="#staffMember"/> Actually, owl:complementOf is a sub-property of owl:disjointWith – Whenever two classes are complement of each other, they are definitely disjoint, but not the other way around Chapter 4A Semantic Web Primer, 2nd Edition 4-73

74 Example of complement with equivalence The complement of Male is “exactly” the class Female and vice-versa Chapter 4A Semantic Web Primer, 2nd Edition 4-74

75 Chapter 4A Semantic Web Primer, 2nd Edition 4-75 Boolean Combinations (2) The new class is not a subclass of the union, but rather equal to the union – We have stated an equivalence of classes staffMemberstudent peopleAtUni

76 Chapter 4A Semantic Web Primer, 2nd Edition 4-76 Boolean Combinations (3) faculty belongsTo CSDepartment facultyInCS

77 4-77 Nesting of Boolean Operators Administrative staff is those staff members that are neither faculty nor technical support staff

78 Illustration of Nesting of Boolean Operators Chapter 4A Semantic Web Primer, 2nd Edition 4-78 staffMember techSup- portStaff faculty unionOf _______ unionOf adminStaff

79 Functional OWL Syntax (1) SubClassOf( ObjectComplementOf( )) Declaration(Class( )) EquivalentClasses( ObjectUnionOf( )) Declaration(Class( )) EquivalentClasses( ObjectIntersectionOf( ObjectHasValue( ) )) Chapter 4A Semantic Web Primer, 2nd Edition 4-79

80 Functional OWL Syntax (2) Declaration(Class( )) EquivalentClasses( ObjectIntersectionOf( ObjectComplementOf( ObjectUnionOf( ) )) Chapter 4A Semantic Web Primer, 2nd Edition 4-80

81 Manchester Syntax Class: uni:peopleAtUni EquivalentTo: uni:staffMember or uni:student Class: uni:facultyInCS EquivalentTo: uni:faculty and (uni:belongsTo value uni:CSDepartment) Class: uni:adminStaff EquivalentTo: uni:staffMember and (not (uni:faculty or uni:techSupportStaff)) 4-81

82 4-82 Enumerations with owl:oneOf Define a class by listing all its elements

83 Functional OWL Syntax Declaration(Class( )) EquivalentClasses( ObjectOneOf( )) ClassAssertion(owl:Thing ) 4-83

84 Chapter 4A Semantic Web Primer, 2nd Edition 4-84 Declaring Instances Instances of classes are declared as in RDF: 39

85 Chapter 4A Semantic Web Primer, 2nd Edition 4-85 No Unique-Names Assumption OWL does not adopt the unique-names assumption of database systems – If two instances have a different name or ID does not imply that they are different individuals Suppose we state that each course is taught by at most one staff member, and that a given course is taught by two staff members – An OWL reasoner does not flag an error – Instead it infers that the two resources are equal

86 No Unique-Names Assumption Example Chapter 4A Semantic Web Primer, 2nd Edition 4-86

87 Chapter 4A Semantic Web Primer, 2nd Edition 4-87 Distinct Objects To ensure that different individuals are indeed recognized as such, we must explicitly assert their inequality:

88 Chapter 4A Semantic Web Primer, 2nd Edition 4-88 Distinct Objects (2) OWL provides a shorthand notation to assert the pairwise inequality of all individuals in a given list

89 owl:sameAs Links an individual to an individual. – Indicates that two URI references actually refer to the same thing: the individuals have the same "identity". For individuals such as "people" this notion is relatively easy to understand. – E.g. the following 2 URIs actually refer to the same person A Semantic Web Primer, 2nd Edition 4-89 Chapter 4

90 Use of owl:sameAs (1/2) owl:sameAs statements can be used to define mappings between ontologies. It is unrealistic to assume everybody will use the same name to refer to individuals. – That would require some “grand design”, which is contrary to the spirit of the web. In OWL Full, where classes can be treated as instances, we can use owl:sameAs to define class equality – Two concepts have the same intentional meaning. A Semantic Web Primer, 2nd Edition 4-90 Chapter 4

91 Use of owl:sameAs (2/2) This could be part of a European sports ontology. – The two classes are treated as individuals, instances of owl:Class. – This allows to state that FootballTeam in some European sports ontology denotes the same concept as SoccerTeam in some American sports ontology. There is difference with the statement: – States that the 2 classes have the same class extension, but are not (necessarily) the same concepts. A Semantic Web Primer, 2nd Edition 4-91 Chapter 4

92 Functional OWL Syntax ClassAssertion(uni:academicStaffMember uni:T949352) DataPropertyAssertion(uni:age uni:T949352 "39"^^ ) FunctionalObjectProperty(uni:isTaughtBy) ClassAssertion(uni:course uni:CIT1111) ObjectPropertyAssertion(uni:isTaughtBy uni:CIT1111 uni: T949352) ObjectPropertyAssertion(uni:isTaughtBy uni:CIT1111 uni:T949318) DifferentIndividuals(uni:T949352 uni:T949318) DifferentIndividuals(uni:T949111 uni:T949318 uni:T949352) SameIndividual(William_Jefferson_Clinton BillClinton) 4-92

93 Manchester Syntax Individual: uni:T949352 Types: uni:academicStaffMember Facts: uni:age 39 DifferentFrom: uni:T949318 Individual: uni:CIT1111 Types: uni:course Facts: uni:isTaughtBy uni:T949352, uni:isTaughtBy uni:T949318 DifferentIndividuals: uni:T949111,uni:T949318,uni:T949352 4-93 Individual: uni:William_Jefferson_Clinton SameAs: uni:BillClinton

94 Chapter 4A Semantic Web Primer, 2nd Edition 4-94 Data Types in OWL XML Schema provides a mechanism to construct user-defined data types – E.g., the data type of adultAge includes all integers greater than 18 Derived data types cannot be used in OWL 1 – The OWL reference document lists all the XML Schema data types that can be used – These include the most frequently used types such as string, integer, Boolean, time, and date.

95 Chapter 4A Semantic Web Primer, 2nd Edition 4-95 Versioning Information owl:priorVersion indicates earlier versions of the current ontology – No formal meaning, can be exploited for ontology management owl:versionInfo generally contains a string giving information about the current version, e.g. keywords

96 Chapter 4A Semantic Web Primer, 2nd Edition 4-96 Versioning Information (2) owl:backwardCompatibleWith contains a reference to another ontology – All identifiers from the previous version have the same intended interpretations in the new version – Documents can be safely changed to commit to the new version owl:incompatibleWith indicates that the containing ontology is a later version of the referenced ontology but is not backward compatible with it

97 Chapter 4A Semantic Web Primer, 2nd Edition 4-97 Combination of Features In different OWL languages there are different sets of restrictions regarding the application of features In OWL Full, all the language constructors may be used in any combination as long as the result is legal RDF

98 Chapter 4A Semantic Web Primer, 2nd Edition 4-98 Restriction of Features in OWL DL Vocabulary partitioning Any resource is allowed to be only a class, a data type, a data type property, an object property, an individual, a data value, or part of the built-in vocabulary, and not more than one of these – E.g. a class cannot at the same time be an individual A property cannot have some values from a data type and some values from a class – This would make it both a data type property and an object property

99 Chapter 4A Semantic Web Primer, 2nd Edition 4-99 Restriction of Features in OWL DL Explicit typing The partitioning of all resources must be stated explicitly – E.g., if an ontology contains the following this already entails that C2 is a class – Nevertheless, an OWL DL ontology must explicitly state this information:

100 Chapter 4A Semantic Web Primer, 2nd Edition 4- 100 Restriction of Features in OWL DL Property Separation The set of object properties and data type properties are disjoint The following can never be specified for data type properties: owl:inverseOf owl:InverseFunctionalProperty owl:SymmetricProperty owl:TransitiveProperty

101 Chapter 4A Semantic Web Primer, 2nd Edition 4- 101 Restriction of Features in OWL DL (4) No transitive cardinality restrictions – No cardinality restrictions may be placed on transitive properties Restricted anonymous classes: Anonymous classes are only allowed to occur as: – the domain and range of either owl:equivalentClass or owl:disjointWith – the range (but not the domain) of rdfs:subClassOf

102 Explanation of Transitive Properties and Cardinality Restriction Class Employee and transitive property supervisor: Declaration(ObjectProperty(uni:supervisor)) TransitiveObjectProperty(uni:supervisor) ObjectPropertyDomain(uni:supervisor uni:Employee) ObjectPropertyRange(uni:supervisor uni:Employee) Restriction: each employee has only 1 supervisor SubClassOf(uni:Employee ObjectMaxCardinality(1 uni:supervisor)) Transitive means that: Supervisor(?x,?y)  Supervisor(?y,?z)  Supervisor(?x,?z) 4- 102

103 Chapter 4A Semantic Web Primer, 2nd Edition 4- 103 Restriction of Features in OWL Lite Restrictions of OWL DL and more Not allowed: owl:oneOf, owl:disjointWith, owl:unionOf, owl:complementOf, owl:hasValue Cardinality statements (minimal, maximal, exact) can only be made on the values 0 or 1 owl:equivalentClass statements can no longer be made between anonymous classes but only between class identifiers

104 Chapter 4A Semantic Web Primer, 2nd Edition 4- 104 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions

105 Chapter 4A Semantic Web Primer, 2nd Edition 4- 105 An African Wildlife Ontology – Class Hierarchy

106 Chapter 4A Semantic Web Primer, 2nd Edition 4- 106 An African Wildlife Ontology – Schematic Representation Βranches are parts of trees

107 Chapter 4A Semantic Web Primer, 2nd Edition 4- 107 An African Wildlife Ontology - Header <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl ="http://www.w3.org/2002/07/owl#" xmlns="http://www.mydomain.org/african"> My example version 1.2, 17 October 2002

108 Chapter 4A Semantic Web Primer, 2nd Edition 4- 108 An African Wildlife Ontology – Animals, Plants and Trees Plants are disjoint from animals. Trees are a type of plant.

109 Chapter 4A Semantic Web Primer, 2nd Edition 4- 109 An African Wildlife Ontology – Properties

110 Chapter 4A Semantic Web Primer, 2nd Edition 4- 110 An African Wildlife Ontology – Branches Branches are parts of trees.

111 Chapter 4A Semantic Web Primer, 2nd Edition 4- 111 An African Wildlife Ontology – Leaves Leaves are parts of branches

112 Chapter 4A Semantic Web Primer, 2nd Edition 4- 112 An African Wildlife Ontology – Carnivores Carnivores are exactly those animals that eat also animals.

113 Chapter 4A Semantic Web Primer, 2nd Edition 4- 113 An African Wildlife Ontology – Herbivores …

114 Chapter 4A Semantic Web Primer, 2nd Edition 4- 114 An African Wildlife Ontology – Giraffes Giraffes are herbivores, and they eat only leaves.

115 Chapter 4A Semantic Web Primer, 2nd Edition 4- 115 An African Wildlife Ontology – Giraffes Why couldn’t we just use intersection instead?

116 An African Wildlife Ontology – Giraffes Chapter 4A Semantic Web Primer, 2nd Edition 4- 116 Herbivores Animals that eat leaves Giraffes There are more herbivore animals that eat leaves, too. Not only Giraffes!

117 Chapter 4A Semantic Web Primer, 2nd Edition 4- 117 An African Wildlife Ontology – Lions Lions are animals that eat only herbivores.

118 Chapter 4A Semantic Web Primer, 2nd Edition 4- 118 An African Wildlife Ontology – Tasty Plants (1) Plants eaten both by herbivores and carnivores

119 Chapter 4A Semantic Web Primer, 2nd Edition 4- 119 An African Wildlife Ontology – Tasty Plants (2)

120 Tasty Plants – Wrong Solution (1) Why is the following not correct? Plants eaten both by herbivores and carnivores 4- 120 The intersection is empty There can be no Tasty plants, since an empty class cannot have members The intersection is empty There can be no Tasty plants, since an empty class cannot have members Because Herbivores and Carnivores are disjoint classes Chapter 4

121 Tasty Plants – Wrong Solution (2) Why is the following not correct? Plants eaten both by herbivores and carnivores 4- 121 Because Union does not secure that the plant is eaten by at least one Herbivore AND at least one Carnivore Tasty plants can be plants that are eaten solely by Herbivores, because Herbivores belong to the Union Chapter 4

122 4- 122 A Printer Ontology – Class Hierarchy

123 Chapter 4A Semantic Web Primer, 2nd Edition 4- 123 A Printer Ontology – Products and Devices Products form a class. Printing and digital imaging devices form a subclass of products. Device

124 Chapter 4A Semantic Web Primer, 2nd Edition 4- 124 A Printer Ontology – HP Products Hewlett Packard

125 Chapter 4A Semantic Web Primer, 2nd Edition 4- 125 A Printer Ontology – Printers and Personal Printers Printers are printing and digital imaging devices. Printers for personal use form a subclass of printers.

126 Chapter 4A Semantic Web Primer, 2nd Edition 4- 126 A Printer Ontology – HP Printers HP printers are HP products and printers.

127 Chapter 4A Semantic Web Primer, 2nd Edition 4- 127 A Printer Ontology – LaserJet Printers Laser jet printers are exactly those printers that use laser jet printing technology. laser jet

128 Chapter 4A Semantic Web Primer, 2nd Edition 4- 128 A Printer Ontology – HP LaserJet Printers HP laser jet printers are HP productsand laser jet printers. <rdfs:subClassOf rdf:resource="#laserJetPrinter"/>

129 Chapter 4A Semantic Web Primer, 2nd Edition 4- 129 A Printer Ontology – HP LaserJet 1100 series (1) 1100series printers are HP laser jet printers with 8ppm printing speed and 600dpi printing resolution. 8ppm

130 Chapter 4A Semantic Web Primer, 2nd Edition 4- 130 A Printer Ontology – HP LaserJet 1100 series (2) 600dpi

131 Chapter 4A Semantic Web Primer, 2nd Edition 4- 131 A Printer Ontology – HP LaserJet 1100se Printers 1100se printers belong to the 1100 series and cost $450. 450

132 Chapter 4A Semantic Web Primer, 2nd Edition 4- 132 A Printer Ontology – Properties (1)

133 Chapter 4A Semantic Web Primer, 2nd Edition 4- 133 A Printer Ontology – Properties (2) <rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>

134 Chapter 4A Semantic Web Primer, 2nd Edition 4- 134 A Printer Ontology – Properties (3)

135 Chapter 4A Semantic Web Primer, 2nd Edition 4- 135 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions

136 Chapter 4A Semantic Web Primer, 2nd Edition 4- 136 OWL in OWL We present a part of the definition of OWL in terms of itself The following captures some of OWL’s meaning in OWL – It does not capture the entire semantics – A separate semantic specification is necessary The URI of the OWL definition is defined as the default namespace

137 Chapter 4A Semantic Web Primer, 2nd Edition 4- 137 Classes of Classes (Metaclasses) The class of all OWL classes is itself a subclass of the class of all RDF Schema classes <rdfs:subClassOf rdf:resource="&rdfs;Class"/>

138 Chapter 4A Semantic Web Primer, 2nd Edition 4- 138 Classes of Classes (Metaclasses) – Thing and Nothing Thing is most general object class in OWL Nothing is most specific class: the empty object class The following relationships hold:

139 Chapter 4A Semantic Web Primer, 2nd Edition 4- 139 Classes of Classes (Metaclasses) – Thing and Nothing (2)

140 Chapter 4A Semantic Web Primer, 2nd Edition 4- 140 Class and Property Equivalences <rdfs:subPropertyOf rdf:resource="&rdfs;subClassOf"/> <rdfs:subPropertyOf rdf:resource="&rdfs;subPropertyOf"/>

141 Chapter 4A Semantic Web Primer, 2nd Edition 4- 141 Class Disjointness

142 Chapter 4A Semantic Web Primer, 2nd Edition 4- 142 Equality and Inequality Equality and inequality can be stated between arbitrary things – In OWL Full this statement can also be applied to classes Properties sameAs and differentFrom

143 Chapter 4A Semantic Web Primer, 2nd Edition 4- 143 Equality and Inequality (2)

144 Chapter 4A Semantic Web Primer, 2nd Edition 4- 144 Equality and Inequality (3) owl:distinctMembers can only be used for owl:AllDifferent

145 Chapter 4A Semantic Web Primer, 2nd Edition 4- 145 Union and Intersection of Classes Build a class from a list, assumed to be a list of other class expressions

146 Chapter 4A Semantic Web Primer, 2nd Edition 4- 146 Complement of a Class owl:complementOf defines a class in terms of a single other class

147 Chapter 4A Semantic Web Primer, 2nd Edition 4- 147 Restriction Classes Restrictions in OWL define the class of those objects that satisfy some attached conditions

148 Chapter 4A Semantic Web Primer, 2nd Edition 4- 148 Restriction Properties All the following properties (onProperty, allValuesFrom, minCardinality, etc.) are only allowed to occur within a restriction definition Their domain is owl:Restriction, but they differ with respect to their range

149 Chapter 4A Semantic Web Primer, 2nd Edition 4- 149 Restriction Properties (2)

150 Chapter 4A Semantic Web Primer, 2nd Edition 4- 150 Restriction Properties (3) <rdfs:range rdf:resource="&xsd;nonNegativeInteger"/>

151 Chapter 4A Semantic Web Primer, 2nd Edition 4- 151 Properties owl:ObjectProperty and owl:DatatypeProperty are special cases of rdf:Property <rdfs:subClassOf rdf:resource="&rdf;Property"/>

152 Chapter 4A Semantic Web Primer, 2nd Edition 4- 152 Properties (2) Symmetric, functional and inverse functional properties can only be applied to object properties <rdfs:subClassOf rdf:resource="#ObjectProperty"/>

153 Chapter 4A Semantic Web Primer, 2nd Edition 4- 153 Properties (3) owl:inverseOf relates two object properties: <rdfs:domain rdf:resource="#ObjectProperty"/> <rdfs:range rdf:resource="#ObjectProperty"/>

154 Chapter 4A Semantic Web Primer, 2nd Edition 4- 154 Implicit Statements Although not stated in the online references, the following would also seem to be true

155 Chapter 4A Semantic Web Primer, 2nd Edition 4- 155 Implicit Statements (2)

156 Chapter 4A Semantic Web Primer, 2nd Edition 4- 156 Implicit Statements (3)

157 Chapter 4A Semantic Web Primer, 2nd Edition 4- 157 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions

158 Chapter 4A Semantic Web Primer, 2nd Edition 4- 158 Future Extensions of OWL Modules and Imports Defaults Closed World Assumption Unique Names Assumption Procedural Attachments Rules for Property Chaining

159 Chapter 4A Semantic Web Primer, 2nd Edition 4- 159 Modules and Imports The importing facility of OWL is very trivial: – It only allows importing of an entire ontology, not parts of it Modules in programming languages based on information hiding: state functionality, hide implementation details – Open question how to define appropriate module mechanism for Web ontology languages

160 Chapter 4A Semantic Web Primer, 2nd Edition 4- 160 Defaults Many practical knowledge representation systems allow inherited values to be overridden by more specific classes in the hierarchy – treat inherited values as defaults No consensus has been reached on the right formalization for the nonmonotonic behaviour of default values

161 Chapter 4A Semantic Web Primer, 2nd Edition 4- 161 Closed World Assumption OWL currently adopts the open-world assumption: – A statement cannot be assumed false on the basis of a failure to prove it – On the huge and only partially knowable WWW, this is a correct assumption Closed-world assumption: a statement is true when its negation cannot be proved – tied to the notion of defaults, leads to nonmonotonic behaviour

162 Chapter 4A Semantic Web Primer, 2nd Edition 4- 162 Unique Names Assumption Typical database applications assume that individuals with different names are indeed different individuals OWL follows the usual logical paradigm where this is not the case – Plausible on the WWW One may want to indicate portions of the ontology for which the assumption does or does not hold

163 Chapter 4A Semantic Web Primer, 2nd Edition 4- 163 Procedural Attachments A common concept in knowledge representation is to define the meaning of a term by attaching a piece of code to be executed for computing the meaning of the term – Not through explicit definitions in the language Although widely used, this concept does not lend itself very well to integration in a system with a formal semantics, and it has not been included in OWL

164 Chapter 4A Semantic Web Primer, 2nd Edition 4- 164 Rules for Property Chaining OWL does not allow the composition of properties for reasons of decidability – In many applications this is a useful operation – One may want to define properties as general rules (Horn or otherwise) over other properties Integration of rule-based and DL-style knowledge representation is currently an active area of research In OWL-2 this feature exists!

165 Chapter 4A Semantic Web Primer, 2nd Edition 4- 165 Summary OWL is the proposed standard for Web ontologies OWL builds upon RDF and RDF Schema: – (XML-based) RDF syntax is used – Instances are defined using RDF descriptions – Most RDFS modeling primitives are used

166 Chapter 4A Semantic Web Primer, 2nd Edition 4- 166 Summary (2) Formal semantics and reasoning support is provided through the mapping of OWL on logics – Predicate logic and description logics have been used for this purpose While OWL is sufficiently rich to be used in practice, extensions are in the making – They will provide further logical features, including rules


Download ppt "ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ, ΑΠΘ ΜΕΤΑΠΤΥΧΙΑΚΟ ΠΡΟΓΡΑΜΜΑ ΣΠΟΥΔΩΝ Κατεύθυνση Πληροφοριακών Συστημάτων - 1ο Εξάμηνο Σημασιολογικός Ιστός lpis.csd.auth.gr/mtpx/sw/index.htm."

Similar presentations


Ads by Google