1 / 76

Building Sharable Ontology for Intelligent Agents based on Semantic Web

Building Sharable Ontology for Intelligent Agents based on Semantic Web. Von-Wun Soo Department of Computer Science National Tsing Hua University. Outline of the talk. Basic concepts in Agents, ontology and Semantic Web Projects related to Semantic Web

aysha
Download Presentation

Building Sharable Ontology for Intelligent Agents based on Semantic Web

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Building Sharable Ontology for Intelligent Agents based on Semantic Web Von-Wun Soo Department of Computer Science National Tsing Hua University

  2. Outline of the talk • Basic concepts in Agents, ontology and Semantic Web • Projects related to Semantic Web • Using Sharable Ontology to Retrieval Historical Images • Answer Simple Historical Questions based on Thesaurus and Ontology • Conclusions

  3. What is Web? • The Web was designed as an information space, • useful not only for human-human communication, • machines would be also able to participate and help. • Successful factors: Simple, evolution, scalability

  4. What is Semantic Web? (According to Tim Berners-Lee) • Knowledge Representation goes global • Machine-understandable information • Possible formulation of a universal Web of semantic assertions, • based on a common model of great generality. • The general model is the Resource Description Framework (RDF)

  5. What is semantic Web? (2) • The Semantic Web is a Web that includes documents, or portions of documents, describing explicit relationships between things and containing semantic information intended for automated processing by our machines. According to http://swag.semanticweb.org/whatIsSW

  6. What Semantic Web is not? • is not Artificial Intelligence—but will provide a foundation to make the technology more feasible • will not require every application to use expressions of arbitrary complexity • will not require proof generation to be useful: proof validation will be enough. • is not an exact rerun of a previous failed experiment

  7. Why Semantic Web? • Standardizing knowledge sharing and reusable on Web • Interoperable (independent of devices and platforms) • Machine readable—for possibility of intelligent processing of information

  8. What is a software agent? • A paradigm shift of information utilization from direct manipulation to indirect access and delegation • A kind of middleware between information demand (client) and information supply (server) • A software that has autonomous, personalized, adaptive, mobile, communicative, social, decision making abilities

  9. Agents and Ontology • Agents must have domain knowledge to solve domain-specific problems. • Agents must have common sharable ontology to communicate and share knowledge with each other. • The common sharable ontology must be represented in a standard format so that all software agents can understand and thus communicate with.

  10. Agents and Semantic Web • Semantic Web provides the structure for meaningful content of Web pages, so that software agents roaming from page to page will carry out sophisticated tasks. • An agent coming to a clinic’s web page will know Dr. Henry works at the clinic on Monday, Wednesday and Friday without having the full intelligence to understand the text… • of course the assumption is Dr. Henry make the page using a off-the-shelf tool, as well as the resources listed on the Physical Therapy Association’s site.

  11. Knowledge representation on Web • The challenge of web is to provide a language to express both data and rules for reasoning about the data[meta-data] that allows rules from any existing knowledge representation system to be exported onto web. • Adding logic to web means to use rules to make inference, choose actions and answer question. The logic must be powerful enough but not too complicated for agents to consider a paradox.

  12. What is ontology? • An ontology is a formal and explicit specification of sharedconceptualization of a domain of interest. (T. Gruber) • Formal semantics • Consensus of terms • Machine readable and processible • Model of real world • Domain specific

  13. What is Ontology?(2) • Generalization of • Entity relationship diagrams • Object database schemas • Taxonomies • Thesauri • Conceptualization contains phenomena like • Concepts/classes/frames/entity types • Constraints • Axioms, rules

  14. Language Layers on the Web Trust DAML-L (logic) Declarative Languages: OIL, DAML+Ont DC PICS XHTML SMIL RDF XML HTML Semantic web infrastructure is built on RDF data model

  15. Ontological languages • Ontology modeling languages: • Concept Map, UML, Entity-relation Model • Ontological languages: • KIF, RDF, RDF schema, DAML+OIL

  16. Tagging documents • Everything on semantic web is a standard hypertext tagged with “semantic” tags • Which can be regarded as a resource

  17. Identifiers: Uniform Resource Identifier (URI) • All subjects and objects in web are represented by a URI just as a link in a page • An URL is a most common type of URI

  18. Documents: Extensible Markup Language (XML) • I just got a new pet dog. [An English Sentence] • In XML: <sentence><person href="http://aaronsw.com/">I</person> just got a new pet <animal>dog</animal>.</sentence> • Tags • A full set of tags (opening and closing) and their content is called an element • Descriptions such as href=“http://aaaronsw.com/ are called attributes

  19. DTD (Data Type Definition) • XML’s document consists of elements with attributes • Define element • <!element code (#PCDATA)> • <!element message (ANY)> • Define Attribute • <!ATTLIST authorlist type CDATA #IMPLIED> • <!ATTLIST authorlist type CDATA #REQUIRED> • <!ATTLIST book company CDATA #FIXED “Microsoft”> …

  20. XML Schema • A well defined XML document • Support more data types • Support name space (more extensible than XML DTD) • Disadvantage of DTD: • allow user to define “ill-defined” elements

  21. XML namespaces • A namespace is a collections of names that are defined in some way. • With XML Name Spaces(give each element and attribute a URI). • <sentence xmlns=http://example.org/xml/documents/ xmlns:c=http://animals.example.net/xmlns/> <c:person c:href= "http://aaronsw.com/">I</c:person> just got a new pet <c:animal>dog</c:animal>. </sentence>

  22. XML is not the solution • Meaning of XML-documents is intuitively clear • But computers do not have intuition • Tag-names per se do not provide semantics • DTD or XML Schema does not distinguish between objects and relations • XML lacks a semantic model • Has only a “surface model”, i. e. tree.

  23. <person> <idn>5634</idn> <name>W. Chen</name> <marriedWith> S. Chen</marriedWith> <gender>male</gender> <salary>50000NT</salary> </person> <man idn=“5634”> <name>W. Chen</name> <marriedWith ref=“4365”/> <salary>1650 USD</salary> </man> XML is not the solution(2) Challenges: Name conflict Value Conflict Structure Conflicts

  24. Statements: Resource Description Framework (RDF) I really likes weaving the web. http://aaron.com/ http://love.example.org/terms/reallylikes http://www.w3.org/People/Berner-Lee/Weaving/

  25. Statements: RDF(2) <rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#> xmlns:love=http://love.example.org/terms/> <rdf:Description rdf:about=http://arron.com/> <love:reallyLikes rdf:recource=“http://www.w3.org/People/Berners-Lee/Weaving> </rdf:Description> </rdf:RDF>

  26. Statements: RDF(3) • The basic structure of RDF is object-attribute-value • In terms of labeled graph: [O]-A->[V] A O V

  27. Schemas and Ontologies: RDF Schemas • Ontologies and schemas are ways to describe meaning and relationships of terms • Define ontology in terms of RDF means RDF schema • A schema: @prefix dc:<http??purl.org/dc/elements/1.1/> @prefix rdfs: http://www.w3.org/2000/01/rdf-schema# # An author is a type of contributor: dc:author rdfs:subClassOf dc:contributor

  28. RDF Schema • Is a set of pre-defined resources and relationships between them that define a simple meta-model including concepts of • class, • property, • subclass and subproperty relationships, • domain and range of property constraints • and so on.

  29. Family Ontology in terms of RDF schema f:Person.name r d t rdfs:Literal rdf:Bag f:Person.father t r d et f:Person.son t f:Man t d rdf:Property r s f:Person.parent rdfs:Class d et t et f:Person t d t t f:Person.child t s d r f:Person.mother r f:Woman d et f:Person.daughter rdf:Seq

  30. t = rdf:type s = rdfs:subClassOf d = rdfs:domain r = rdfs:range et = rdfsx:collectionElementType rdf = http://www.w3.org/1999/02/22-rdf-syntax-ns#ns# rdfs = http://www.w3.org/2000/01/rdf-schema# rdfsx = http://nzdis.otago.ac.nz/0_1/rdf-schema-x# f = any new namespace chosen for this schema Property Labels and Namespace Abbreviations

  31. Family knowledge in terms of RDF t rdf:Bag f:Woman 1 f:Man 2 t n Mary Smith n John Smith p t c m fr c d d 1 1 n 1 1 t Susan Smith t t t rdf:Seq

  32. t = rdf:type 1 = rdf:_1 2 = rdf:_2 n = f:Person.name fr = f:Person.father s = f:Person.son p = f:Person.parent e = f:Person.child m = f:Person.mother d = f:Person.daughter rdf = http://www.w3.org/1999/02/22-rdf-syntax-ns#ns# f = namespace chosen in previous rdf schema Property Labels and Namespace Abbreviations

  33. Using Sharable Ontology to Retrieve Historical Images

  34. Motivation • Users might not have the complete historical knowledge for a query. Need the historicalontology. • For example: • I want the picture of Qin dynasty’s emperor. • Our Goal: • Establish an image retrieval model with the high precision and easy usage by applying the sharable domainontology, knowledge and thesaurus. • The endeavor of semanticweb allows domainknowledge to be represented in an interoperable and sharable manner.

  35. Processes of ontology-based image retrieval

  36. Sharable Ontology & Thesaurus • Ontology • Based on RDF Schema • Describe the Relations between classes • Currently implemented 6classes and about 100 properties. • Thesaurus • General term: about 70’000 terms in 13 categories. • Domain term: add about 300 terms in historical domain of Qin terracotta soldiers.

  37. Sharable domain ontology for terracotta warriors, horses and related articles(in Graphic representation)

  38. An instance of the sharable domain ontology (in RDFS)

  39. An annotated image of a side view of a Qin terracotta warrior's head

  40. NL Query paring • Users give the query in terms of a natural language phrase. • The system parses the query into the RDF format with the aid of ontology and thesaurus. “The general in armor in Qin-dynasty” Parsing Wear General Armor Period Qin-dynasty

  41. NL Query paring (Naïve parsing Algorithm) “秦代穿著盔甲的將軍” (The general in armor in Qin-dynasty) Word segmentation 秦代 穿著 盔甲 將軍” (Qin-dynasty,Wear,Armor,General) Property assignment 秦代 穿著 盔甲 將軍” (Qin-dynasty,Wear,Armor,General)

  42. NL Query paring (Naïve parsing Algorithm) 秦代 穿著 盔甲 將軍” • Disadvantage • Too simple and easy to mismatch. Backward matching 將軍 穿著 盔甲 ???? 秦代

  43. The Similarity Matching Algorithm • Matching a query schema with annotated images.

  44. The Similarity Matching Algorithm • Method • Treat the RDF query schema and the RDF query instance as a Tree • Match all possible interpreting paths of a query instance with annotated pictures. • Rank the similarity match and find the best answer.

  45. Answer Simple Historical Questions Using Thesaurus and Ontology Case Study 2

  46. Thesaurus Word Segmentation Pattern Matching Plain text documents Generalize Lexicon & Thesaurus Codes Meta-Documents Answers User query User Validate Manual Correction Domain Ontology Query Schema Pattern rules An Ontology-Based Answer Extraction System

  47. Word segmentation • It divides the whole document into pieces of lexicons based on Chinese synonym thesaurus. • It might result in wrong words. For example, “將軍政大權集於一身” Incorrect : “將軍政大 權 集 於 一身” Correct : “將 軍政大權 集 於 一身”

  48. Pattern matching • It makes complex and continuous fragments into to a unit. For example, “13歲” Original : “1 3 歲” Result : “13歲”

  49. Generalization lexicons & thesaurus codes • User may enhance the completeness of the meta-document by domain ontology or linguistic principle. • Users may also refine the meta-sentence by interacting with an ontology. • The instance from a meta-document can be expressed in XML/RDF format as knowledge base.

  50. The Chinese Synonym Thesaurus Soldier “AE10” Thesaurus

More Related