SlideShare a Scribd company logo
Semantic Web
&
Cased Based Reasoning
October 2015
 Semantic Web Overview
 Semantic Web
 Motivations
 Ontology Languages
 Semantic Web and Cased Based Reasoning
 Cased Based Reasoning Overview
 Cased Based Reasoning
 CBR Process
 Conversational Cased Based Reasoning
Semantic Web Overview
 “The Semantic Web is a major research initiative of the World Wide
Web Consortium (W3C) to create a metadata-rich Web of resources
that can describe themselves not only by how they should be
displayed (HTML) or syntactically (XML), but also by the meaning of the
metadata.”
From W3C Semantic Web Activity Page
 “The Semantic Web is an extension of the current web in which
information is given well-defined meaning, better enabling computers
and people to work in cooperation.”
Tim Berners-Lee, James Hendler, Ora Lassila,
The Semantic Web, Scientific American, May 2001
Motivations
 Difficulties to find, present, access, or maintain
available electronic information on the web
 Need for a data representation to enable software
products (agents) to provide intelligent access to
heterogeneous and distributed information.
The Semantic Stack and Ontology Languages
XML, XML Schema
RDF
DAML,
OIL,
DAML+OIL OWL Lite
RDF Schema
OWL DL
OWL Full
From “The Semantic Web” technical report by PierceThe Semantic Language Layer for the Web
A
B
A = Ontology languages based on XML syntax
B = Ontology languages built on top of RDF and RDF Schema
Resource Description Framework (RDF) - I
 Resource Description Framework (RDF) is a framework for
describing and interchanging metadata (data describing the web
resources).
 RDF provides machine understandable semantics for metadata.
This leads,
 better precision in resource discovery than full text search,
 assisting applications as schemas evolve,
 interoperability of metadata.
Resource Description Framework (RDF)- II
 RDF has following important concepts
 Resource : The resources being described by RDF are anything
that can be named via a URI.
 Property : A property is also a resource that has a name, for
instance Author or Title.
 Statement : A statement consists of the combination of a
Resource, a Property, and an associated value.
Example: Alice is the creator of the resource http://www.cs.indiana.edu/~Alice.
The Dublin Core Definition Standard
 RDF is dependent on metadata conventions for definitions.
 The Dublin Core is an example definition standard which
defines a simple metadata elements for describing Web
authoring.
 It is named after 1995 Dublin (Ohio) Metadata Workshop.
 Following list is the partial tag element list for Dublin Core
standard.
 Creator: the primary author of the content
 Date: date of creation or other important life cycle events
 Title: the name of the resource
 Subject: the resource topic
 Description: an account of the content
 Type: the genre of the content
 Language: the human language of the content.
Example
http://www.cs.indiana.edu/~Alice
creator
=
http://purl.org/dc/elements/1.1/creator
Alice is the creator of the resource http://www.cs.indiana.edu/~Alice.
• Property “creator” refers to a specific definition. (in this example by Dublin Core
Definition Standard). So, there is a structured URI for this property. This URI makes this
property unique and globally known.
• By providing structured URI, we also specified the property value Alice as following.
“http://www.cs.indiana.edu/People/auto/b/Alice”
Alice
Resource
Property
Property
Value
Inspired from “The Semantic Web” technical report by Pierce
Example
Alice is the creator of the resource http://www.cs.indiana.edu/~Alice.
Inspired from “The Semantic Web” technical report by Pierce
<rdf:RDF xmlns:rdf=”http://www.w3c.org/1999/02/22-rdf-syntax-ns##”
xmlns:dc=”http://purl.org/dc/elements/1.1”
xmlns:cgl=”http://cgl.indiana.edu/people”>
<rdf:Description about=” http://www.cs.indiana.edu/~Alice”>
<dc:creator>
<cgl:staff> Alice </cgl:staff>
</dc:creator>
</rdf:RDF>
• Information in the graph can be modeled in diff. XML organizations. Human readers would
infer the same structure, however, general purpose applications would not.
•Given RDF model enables any general purpose application to infer the same structure.
Why bother to use
RDF instead of XML?
RDF Schema (RDFS )
 RDF Schema is an extension of Resource Description Framework.
 RDF Schema provides a higher level of abstraction than RDF.
 specific classes of resources ,
 specific properties,
 and the relationships between these properties and other resources can be
described.
 RDFS allows specific resources to be described as instances of more
general classes.
 RDFS provides mechanisms where custom RDF vocabulary can be
developed.
 Also, RDFS provides important semantic capabilities that are used by
enhanced semantic languages like DAML, OIL and OWL.
It resembles
objected-oriented
programming
 No standard for expressing primitive data types such as integer, etc. All
data types in RDF/RDFS are treated as strings.
 No standard for expressing relations of properties (unique, transitive,
inverse etc.)
 No standard for expressing whether enumerations are closed.
 No standard to express equivalence, disjointedness etc. among
properties
Limitations of RDF/RDFS
 RDFRDFS define a framework, however they have limitations. There is a
need for new semantic web languages with following requirements
 They should be compatible with (XML, RDF/RDFS)
 They should have enough expressive power to fill in the gaps in
RDFS
 They should provide automated reasoning support
 Ontology Inference Layer (OIL) and DARPAAgent Markup Language
(DAML) are two important efforts developed to fulfill these requirements.
 Their combined efforts formed DAML+OIL declarative semantic language.
DAML, OIL and DAML+OIL - I
 DAML+OIL is built on top of RDFS.
 It uses RDFS syntax.
 It has richer ways to express primitive data types.
 DAML+OIL allows other relationships (inverse and transitivity) to be
directly expressed.
 DAML+OIL provides well defined semantics, This provides followings:
 Meaning of DAML+OIL statements can be formally specified.
 Machine understanding and automated reasoning can be supported.
 More expressive power can be provided.
DAML, OIL and DAML + OIL - II
Example: T. Rex is not herbivore and not a currently living species.
 This statement can be expressed in DAML+OIL, but not in RDF/RDFS
since RDF/RDFS cannot express disjointedness.
 DAML+OIL provides automated reasoning by providing such expressive
power.
 For instance, a software agent can find out the “list of all the carnivores that
won’t be any threat today” by processing the DAML+OIL data representation
of the example above.
 RDF/RDFS does not express “is not” relationships and exclusions.
Example
How is DAML+OIL is
different than RDF/RDFS?
From “The Semantic Web” technical report by Pierce
 Web Ontology Language (OWL) is another effort developed by the OWL
working group of the W3Consorsium.
 OWL is an extension of DAML+OIL.
 OWL is divided following sub languages.
 OWL Lite
 OWL (Description Logics) DL
 OWL Full – limited cardinality
 OWL Lite provides many of the facilities of DAML+OIL provides. In
addition to RDF/RDFS tags, it also allows us to express equivalence,
identity, difference, inverse, and transivity.
 OWL Lite is a subset of OWL DL, which in turn is a subset of OWL Full.
Web Ontology Language (OWL)
 Developing new tools, applications and architectures on top of the
Semantic Web is the real challenge.
 AI techniques should be used to utilize the Semantic Web up to its
potentials.
 CBR is an AI technique based on reasoning on stored cases.
 CBR technique can be applied to do intelligent retrieval on metadata of
codes related Earthquake Science.
From Semantic Web to Cased Based
Reasoning
 CBR is reasoning by remembering: It is a starting point for new
reasoning
 Problem-solving: CBR solves new problems by retrieving and adapting
records from similar prior problems.
 Interpretive/classification: CBR understands new situations by
comparing and contrasting them to similar situations in the past
 Case-based reasoning is a methodology of reasoning from specific
experiences, which may be applied using various technologies (Watson
98)
What is CBR?
Overview of Case-Based Reasoning
Everyday Examples of CBR
 Remembering today’s route from the place you live to campus and
taking the same route.
 Diagnosing a computer problem based on a similar prior problem.
 Predicting an opponent’s actions based on how they acted under
similar past circumstances
 Assessing a hiring candidate by comparing and contrasting to existing
employees
What is CBR?
CBR Process
 What is a Case?
 Input cases are descriptions of a specific problem.
 Stored cases encapsulate previous specific
problem situations with solutions.
 Another way to look at it:
 Stored cases contain a lesson and a specific
context where the lesson applied.
 The context is used to determine when the
lesson may apply again.
CBR Process
 When and how are cases used?
Given a Problem Description (P.D.) to be solved,
CBR follows a cyclical process.
 REtrieve the most similar case(s)
 REuse the case(s) to attempt to solve the problem
 REvise the proposed solution if necessary
 REtain the new solution as a part of new case.
CBR Process
Problem
Retrieve
Reuse
Revise
Retain
Proposed solutionConfirmed solution
Case-Base
The CBR Cycle
 CCBR is a method of CBR where user interacts
with the system to retrieve the right cases.
 System responds with ranked cases and questions
at each step
 Question-answer-ranking cycle continues until
success or failure
 CCBR facilities
 Question management facility
 Case management facility
 GUI for user-system interaction
 Facilities to display questions or cases
A Prototype CCBR Application
 Purpose
 Intelligent retrieval on metadata describing codes written for
earthquake science.
 Guidance on how to run the codes to get reasonable results.
 Guidance for inexpert users to browse and select codes
 Casebase
 disloc - produces surface displacements based on multiple arbitrary
dipping dislocations in an elastic half-space
 simplex - inverts surface geodetic displacements to produce fault
parameters
 VC - simulates interactions between vertical strike slip faults.
 Classification
 Initial effort – dummy cases created to classify the different codes
 A general approach is needed
CCBR CASE
Problem Solution
Feature
Feature
Feature
= <Question, Answer>
How does Case Ranking take place in CCBR?
 Retrieved cases are sorted based on their consistency with
the query case.
 As the questions are answered more cases are eliminated.
 A case is ruled out only if there is a conflict between the case
and the query case
 Consistency number for a case remains same if the case has
no answer for the question.
 Consistency number for a case gets incremented if the case
has the same answer to the question as the query case.
CCBR CASEBASE
Case
Feature 1
Feature 2
Feature 5
Case
= <Problem, Solution>
Feature 1
Feature 2
Feature 3
Feature 4
A Case from
CASEBASE
Query Case
IF ((A.Feature1.Solution = B.Feature1.Solution) &
(A.Feature2.Solution = B.Feature2.Solution))
THEN Consistency # = 2
A B
How does question ranking take place in CCBR?
 Questions can be ranked based on their frequency factor
 Questions can be ranked based on predefined inference rules
 Only distinguishing questions are to be ranked
 Questions can be YES/NO questions, multiple choice
questions or questions with numerical answers.
 W3C Semantic Web Activity Page. Available from
http://www.w3.org/2001/sw/.
 T. Berners-Lee, J. Hendler, and O. Lassila, “The Semantic Web.” Scientific
American, May 2001.
 Resource Description Framework (RDF)/W3C Semantic Web Activity Web
Site: http://www.w3.org/RDF/.
 D. Brickley and R. V. Guha (eds), “RDF Vocabulary Description Language
1.0: RDF Schema.” W3C Working Draft 23 January 2003.
 The DARPA Agent Markup Language Web Site: http://www.daml.org.
 OIL Project Web Site: http://www.ontoknowledge.org/oil
References

More Related Content

What's hot

The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)
Myungjin Lee
 
Jarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageJarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology Language
Mustafa Jarrar
 
OWL Web Ontology Language Overview
OWL Web Ontology Language OverviewOWL Web Ontology Language Overview
OWL Web Ontology Language Overview
Igor Myroshnichenko
 
Semantic web Technology
Semantic web TechnologySemantic web Technology
Semantic web Technology
Abdelrahman Ibrahim
 
DC-2008 Tutorial: Basic Concepts
DC-2008 Tutorial: Basic ConceptsDC-2008 Tutorial: Basic Concepts
DC-2008 Tutorial: Basic Concepts
Eduserv Foundation
 
Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)
Mustafa Jarrar
 
Web Spa
Web SpaWeb Spa
The Web Ontology Language
The Web Ontology LanguageThe Web Ontology Language
The Web Ontology Language
Hector Quintero Casanova
 
Semantic Web Nature
Semantic Web NatureSemantic Web Nature
Semantic Web Nature
Constantin Stan
 
Intro to OWL & Ontology
Intro to OWL & OntologyIntro to OWL & Ontology
Intro to OWL & Ontology
Narni Rajesh
 
CSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web TutorialCSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web Tutorial
LeeFeigenbaum
 
Debunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsDebunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative Facts
Neo4j
 
RDF and Java
RDF and JavaRDF and Java
RDF and Java
Constantin Stan
 
RDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data FramesRDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data Frames
Kurt Cagle
 
Making the semantic web work
Making the semantic web workMaking the semantic web work
Making the semantic web work
Paul Houle
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Websamar_slideshare
 
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
 Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Kingsley Uyi Idehen
 
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4jExplicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Connected Data World
 

What's hot (19)

The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)
 
Jarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageJarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology Language
 
OWL Web Ontology Language Overview
OWL Web Ontology Language OverviewOWL Web Ontology Language Overview
OWL Web Ontology Language Overview
 
Semantic web Technology
Semantic web TechnologySemantic web Technology
Semantic web Technology
 
DC-2008 Tutorial: Basic Concepts
DC-2008 Tutorial: Basic ConceptsDC-2008 Tutorial: Basic Concepts
DC-2008 Tutorial: Basic Concepts
 
Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)
 
Web Spa
Web SpaWeb Spa
Web Spa
 
The Web Ontology Language
The Web Ontology LanguageThe Web Ontology Language
The Web Ontology Language
 
Semantic Web Nature
Semantic Web NatureSemantic Web Nature
Semantic Web Nature
 
Intro to OWL & Ontology
Intro to OWL & OntologyIntro to OWL & Ontology
Intro to OWL & Ontology
 
CSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web TutorialCSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web Tutorial
 
Debunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsDebunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative Facts
 
RDF and Java
RDF and JavaRDF and Java
RDF and Java
 
RDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data FramesRDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data Frames
 
Making the semantic web work
Making the semantic web workMaking the semantic web work
Making the semantic web work
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Web
 
master_thesis_greciano_v2
master_thesis_greciano_v2master_thesis_greciano_v2
master_thesis_greciano_v2
 
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
 Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
Virtuoso, The Prometheus of RDF -- Sematics 2014 Conference Keynote
 
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4jExplicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
 

Similar to RDFa Semantic Web

Jpl presentation
Jpl presentationJpl presentation
Jpl presentation
Rama Bastola
 
Jpl presentation
Jpl presentationJpl presentation
Jpl presentation
Rama Bastola
 
MR^3: Meta-Model Management based on RDFs Revision Reflection
MR^3: Meta-Model Management based on RDFs Revision ReflectionMR^3: Meta-Model Management based on RDFs Revision Reflection
MR^3: Meta-Model Management based on RDFs Revision Reflection
Takeshi Morita
 
Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?Museums Computer Group
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
adameq
 
Web 3 Mark Greaves
Web 3 Mark GreavesWeb 3 Mark Greaves
Web 3 Mark GreavesMediabistro
 
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
dannyijwest
 
SNSW CO3.pptx
SNSW CO3.pptxSNSW CO3.pptx
SNSW CO3.pptx
harishdhanukonda48
 
Repositories thru the looking glass
Repositories thru the looking glassRepositories thru the looking glass
Repositories thru the looking glass
Eduserv Foundation
 
Semantic Search using RDF Metadata (SemTech 2005)
Semantic Search using RDF Metadata (SemTech 2005)Semantic Search using RDF Metadata (SemTech 2005)
Semantic Search using RDF Metadata (SemTech 2005)Bradley Allen
 
Semantic Web and Linked Open Data
Semantic Web and Linked Open DataSemantic Web and Linked Open Data
Semantic Web and Linked Open Data
University of Wisconsin-Madison
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
Jane Stevenson
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Sören Auer
 
Toward The Semantic Deep Web
Toward The Semantic Deep WebToward The Semantic Deep Web
Toward The Semantic Deep WebSamiul Hoque
 
Tutorial on Semantic Digital Libraries (WWW'2007)
Tutorial on Semantic Digital Libraries (WWW'2007)Tutorial on Semantic Digital Libraries (WWW'2007)
Tutorial on Semantic Digital Libraries (WWW'2007)
Sebastian Ryszard Kruk
 
Document Based Data Modeling Technique
Document Based Data Modeling TechniqueDocument Based Data Modeling Technique
Document Based Data Modeling Technique
Carmen Sanborn
 

Similar to RDFa Semantic Web (20)

Jpl presentation
Jpl presentationJpl presentation
Jpl presentation
 
Jpl presentation
Jpl presentationJpl presentation
Jpl presentation
 
Semantic web
Semantic web Semantic web
Semantic web
 
MR^3: Meta-Model Management based on RDFs Revision Reflection
MR^3: Meta-Model Management based on RDFs Revision ReflectionMR^3: Meta-Model Management based on RDFs Revision Reflection
MR^3: Meta-Model Management based on RDFs Revision Reflection
 
Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?Lee Iverson - How does the web connect content?
Lee Iverson - How does the web connect content?
 
SWT Lecture Session 5 - RDFS
SWT Lecture Session 5 - RDFSSWT Lecture Session 5 - RDFS
SWT Lecture Session 5 - RDFS
 
5 rdfs
5 rdfs5 rdfs
5 rdfs
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
 
Web 3 Mark Greaves
Web 3 Mark GreavesWeb 3 Mark Greaves
Web 3 Mark Greaves
 
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
Semantic - Based Querying Using Ontology in Relational Database of Library Ma...
 
SNSW CO3.pptx
SNSW CO3.pptxSNSW CO3.pptx
SNSW CO3.pptx
 
Repositories thru the looking glass
Repositories thru the looking glassRepositories thru the looking glass
Repositories thru the looking glass
 
Linked data and voyager
Linked data and voyagerLinked data and voyager
Linked data and voyager
 
Semantic Search using RDF Metadata (SemTech 2005)
Semantic Search using RDF Metadata (SemTech 2005)Semantic Search using RDF Metadata (SemTech 2005)
Semantic Search using RDF Metadata (SemTech 2005)
 
Semantic Web and Linked Open Data
Semantic Web and Linked Open DataSemantic Web and Linked Open Data
Semantic Web and Linked Open Data
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Toward The Semantic Deep Web
Toward The Semantic Deep WebToward The Semantic Deep Web
Toward The Semantic Deep Web
 
Tutorial on Semantic Digital Libraries (WWW'2007)
Tutorial on Semantic Digital Libraries (WWW'2007)Tutorial on Semantic Digital Libraries (WWW'2007)
Tutorial on Semantic Digital Libraries (WWW'2007)
 
Document Based Data Modeling Technique
Document Based Data Modeling TechniqueDocument Based Data Modeling Technique
Document Based Data Modeling Technique
 

Recently uploaded

Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
Abida Shariff
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User Group
CatarinaPereira64715
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 

Recently uploaded (20)

Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User Group
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 

RDFa Semantic Web

  • 1. Semantic Web & Cased Based Reasoning October 2015
  • 2.  Semantic Web Overview  Semantic Web  Motivations  Ontology Languages  Semantic Web and Cased Based Reasoning  Cased Based Reasoning Overview  Cased Based Reasoning  CBR Process  Conversational Cased Based Reasoning
  • 3. Semantic Web Overview  “The Semantic Web is a major research initiative of the World Wide Web Consortium (W3C) to create a metadata-rich Web of resources that can describe themselves not only by how they should be displayed (HTML) or syntactically (XML), but also by the meaning of the metadata.” From W3C Semantic Web Activity Page  “The Semantic Web is an extension of the current web in which information is given well-defined meaning, better enabling computers and people to work in cooperation.” Tim Berners-Lee, James Hendler, Ora Lassila, The Semantic Web, Scientific American, May 2001
  • 4. Motivations  Difficulties to find, present, access, or maintain available electronic information on the web  Need for a data representation to enable software products (agents) to provide intelligent access to heterogeneous and distributed information.
  • 5. The Semantic Stack and Ontology Languages XML, XML Schema RDF DAML, OIL, DAML+OIL OWL Lite RDF Schema OWL DL OWL Full From “The Semantic Web” technical report by PierceThe Semantic Language Layer for the Web A B A = Ontology languages based on XML syntax B = Ontology languages built on top of RDF and RDF Schema
  • 6. Resource Description Framework (RDF) - I  Resource Description Framework (RDF) is a framework for describing and interchanging metadata (data describing the web resources).  RDF provides machine understandable semantics for metadata. This leads,  better precision in resource discovery than full text search,  assisting applications as schemas evolve,  interoperability of metadata.
  • 7. Resource Description Framework (RDF)- II  RDF has following important concepts  Resource : The resources being described by RDF are anything that can be named via a URI.  Property : A property is also a resource that has a name, for instance Author or Title.  Statement : A statement consists of the combination of a Resource, a Property, and an associated value. Example: Alice is the creator of the resource http://www.cs.indiana.edu/~Alice.
  • 8. The Dublin Core Definition Standard  RDF is dependent on metadata conventions for definitions.  The Dublin Core is an example definition standard which defines a simple metadata elements for describing Web authoring.  It is named after 1995 Dublin (Ohio) Metadata Workshop.  Following list is the partial tag element list for Dublin Core standard.  Creator: the primary author of the content  Date: date of creation or other important life cycle events  Title: the name of the resource  Subject: the resource topic  Description: an account of the content  Type: the genre of the content  Language: the human language of the content.
  • 9. Example http://www.cs.indiana.edu/~Alice creator = http://purl.org/dc/elements/1.1/creator Alice is the creator of the resource http://www.cs.indiana.edu/~Alice. • Property “creator” refers to a specific definition. (in this example by Dublin Core Definition Standard). So, there is a structured URI for this property. This URI makes this property unique and globally known. • By providing structured URI, we also specified the property value Alice as following. “http://www.cs.indiana.edu/People/auto/b/Alice” Alice Resource Property Property Value Inspired from “The Semantic Web” technical report by Pierce
  • 10. Example Alice is the creator of the resource http://www.cs.indiana.edu/~Alice. Inspired from “The Semantic Web” technical report by Pierce <rdf:RDF xmlns:rdf=”http://www.w3c.org/1999/02/22-rdf-syntax-ns##” xmlns:dc=”http://purl.org/dc/elements/1.1” xmlns:cgl=”http://cgl.indiana.edu/people”> <rdf:Description about=” http://www.cs.indiana.edu/~Alice”> <dc:creator> <cgl:staff> Alice </cgl:staff> </dc:creator> </rdf:RDF> • Information in the graph can be modeled in diff. XML organizations. Human readers would infer the same structure, however, general purpose applications would not. •Given RDF model enables any general purpose application to infer the same structure. Why bother to use RDF instead of XML?
  • 11. RDF Schema (RDFS )  RDF Schema is an extension of Resource Description Framework.  RDF Schema provides a higher level of abstraction than RDF.  specific classes of resources ,  specific properties,  and the relationships between these properties and other resources can be described.  RDFS allows specific resources to be described as instances of more general classes.  RDFS provides mechanisms where custom RDF vocabulary can be developed.  Also, RDFS provides important semantic capabilities that are used by enhanced semantic languages like DAML, OIL and OWL. It resembles objected-oriented programming
  • 12.  No standard for expressing primitive data types such as integer, etc. All data types in RDF/RDFS are treated as strings.  No standard for expressing relations of properties (unique, transitive, inverse etc.)  No standard for expressing whether enumerations are closed.  No standard to express equivalence, disjointedness etc. among properties Limitations of RDF/RDFS
  • 13.  RDFRDFS define a framework, however they have limitations. There is a need for new semantic web languages with following requirements  They should be compatible with (XML, RDF/RDFS)  They should have enough expressive power to fill in the gaps in RDFS  They should provide automated reasoning support  Ontology Inference Layer (OIL) and DARPAAgent Markup Language (DAML) are two important efforts developed to fulfill these requirements.  Their combined efforts formed DAML+OIL declarative semantic language. DAML, OIL and DAML+OIL - I
  • 14.  DAML+OIL is built on top of RDFS.  It uses RDFS syntax.  It has richer ways to express primitive data types.  DAML+OIL allows other relationships (inverse and transitivity) to be directly expressed.  DAML+OIL provides well defined semantics, This provides followings:  Meaning of DAML+OIL statements can be formally specified.  Machine understanding and automated reasoning can be supported.  More expressive power can be provided. DAML, OIL and DAML + OIL - II
  • 15. Example: T. Rex is not herbivore and not a currently living species.  This statement can be expressed in DAML+OIL, but not in RDF/RDFS since RDF/RDFS cannot express disjointedness.  DAML+OIL provides automated reasoning by providing such expressive power.  For instance, a software agent can find out the “list of all the carnivores that won’t be any threat today” by processing the DAML+OIL data representation of the example above.  RDF/RDFS does not express “is not” relationships and exclusions. Example How is DAML+OIL is different than RDF/RDFS? From “The Semantic Web” technical report by Pierce
  • 16.  Web Ontology Language (OWL) is another effort developed by the OWL working group of the W3Consorsium.  OWL is an extension of DAML+OIL.  OWL is divided following sub languages.  OWL Lite  OWL (Description Logics) DL  OWL Full – limited cardinality  OWL Lite provides many of the facilities of DAML+OIL provides. In addition to RDF/RDFS tags, it also allows us to express equivalence, identity, difference, inverse, and transivity.  OWL Lite is a subset of OWL DL, which in turn is a subset of OWL Full. Web Ontology Language (OWL)
  • 17.  Developing new tools, applications and architectures on top of the Semantic Web is the real challenge.  AI techniques should be used to utilize the Semantic Web up to its potentials.  CBR is an AI technique based on reasoning on stored cases.  CBR technique can be applied to do intelligent retrieval on metadata of codes related Earthquake Science. From Semantic Web to Cased Based Reasoning
  • 18.  CBR is reasoning by remembering: It is a starting point for new reasoning  Problem-solving: CBR solves new problems by retrieving and adapting records from similar prior problems.  Interpretive/classification: CBR understands new situations by comparing and contrasting them to similar situations in the past  Case-based reasoning is a methodology of reasoning from specific experiences, which may be applied using various technologies (Watson 98) What is CBR? Overview of Case-Based Reasoning
  • 19. Everyday Examples of CBR  Remembering today’s route from the place you live to campus and taking the same route.  Diagnosing a computer problem based on a similar prior problem.  Predicting an opponent’s actions based on how they acted under similar past circumstances  Assessing a hiring candidate by comparing and contrasting to existing employees What is CBR?
  • 20. CBR Process  What is a Case?  Input cases are descriptions of a specific problem.  Stored cases encapsulate previous specific problem situations with solutions.  Another way to look at it:  Stored cases contain a lesson and a specific context where the lesson applied.  The context is used to determine when the lesson may apply again.
  • 21. CBR Process  When and how are cases used? Given a Problem Description (P.D.) to be solved, CBR follows a cyclical process.  REtrieve the most similar case(s)  REuse the case(s) to attempt to solve the problem  REvise the proposed solution if necessary  REtain the new solution as a part of new case.
  • 23.  CCBR is a method of CBR where user interacts with the system to retrieve the right cases.  System responds with ranked cases and questions at each step  Question-answer-ranking cycle continues until success or failure
  • 24.  CCBR facilities  Question management facility  Case management facility  GUI for user-system interaction  Facilities to display questions or cases
  • 25. A Prototype CCBR Application
  • 26.  Purpose  Intelligent retrieval on metadata describing codes written for earthquake science.  Guidance on how to run the codes to get reasonable results.  Guidance for inexpert users to browse and select codes  Casebase  disloc - produces surface displacements based on multiple arbitrary dipping dislocations in an elastic half-space  simplex - inverts surface geodetic displacements to produce fault parameters  VC - simulates interactions between vertical strike slip faults.
  • 27.  Classification  Initial effort – dummy cases created to classify the different codes  A general approach is needed
  • 29. How does Case Ranking take place in CCBR?  Retrieved cases are sorted based on their consistency with the query case.  As the questions are answered more cases are eliminated.  A case is ruled out only if there is a conflict between the case and the query case  Consistency number for a case remains same if the case has no answer for the question.  Consistency number for a case gets incremented if the case has the same answer to the question as the query case.
  • 30. CCBR CASEBASE Case Feature 1 Feature 2 Feature 5 Case = <Problem, Solution> Feature 1 Feature 2 Feature 3 Feature 4 A Case from CASEBASE Query Case IF ((A.Feature1.Solution = B.Feature1.Solution) & (A.Feature2.Solution = B.Feature2.Solution)) THEN Consistency # = 2 A B
  • 31. How does question ranking take place in CCBR?  Questions can be ranked based on their frequency factor  Questions can be ranked based on predefined inference rules  Only distinguishing questions are to be ranked  Questions can be YES/NO questions, multiple choice questions or questions with numerical answers.
  • 32.  W3C Semantic Web Activity Page. Available from http://www.w3.org/2001/sw/.  T. Berners-Lee, J. Hendler, and O. Lassila, “The Semantic Web.” Scientific American, May 2001.  Resource Description Framework (RDF)/W3C Semantic Web Activity Web Site: http://www.w3.org/RDF/.  D. Brickley and R. V. Guha (eds), “RDF Vocabulary Description Language 1.0: RDF Schema.” W3C Working Draft 23 January 2003.  The DARPA Agent Markup Language Web Site: http://www.daml.org.  OIL Project Web Site: http://www.ontoknowledge.org/oil References