Introduction to the Semantic Web

Master DSC & CPS²

Antoine Zimmermann

Use arrows to navigate through the slides
 →  or  ↓  to go one slide forward
 ←  or  ↑  go one slide backward
   to go to the first slide
End to go to the last slide

1

The Semantic Web

Tim Berners-Lee’s description

The Semantic Web is not a separate Web but an extension of the current one, in which information is given well-defined meaning, better enabling computers and people to work in cooperation. The first steps in weaving the Semantic Web into the structure of the existing Web are already under way. In the near future, these developments will usher in significant new functionality as machines become much better able to process and “understand” the data that they merely display at present.

Berners-Lee et al. 2001. The Semantic Web. Scientific American

2

The Semantic Web

My definition

A vision of the WWW whereby it is made easier for software agents to process information that automates tasks that used to be mostly performed by people manually interacting with the Web; also, it allows software agents to perform tasks that cannot be done by people but can be achieved by exploiting the Web more automatically.

3

The Semantic Web

4

What we do with the Web?

5

Our use of the Web evolved...

6

Using the Web, find…

7

How a machine knows?

8

Accessible and processable knowledge

9

The Web of Data

What if we could ask who are the widows of murdered American presidents? like this:

    SELECT ?widow
    FROM WorldWideWeb
    WHERE
      (?widow marriedTo ?person) AND
      (?person isPresidentOf UnitedStates) AND
      (?person killedBy ?someKiller)
10

The Web of Data

How many Nobel Prizes per continent?

    SELECT COUNT(?prize)
    FROM WorldWideWeb
    WHERE
      (?scientist wasAwarded NobelPrize) AND
      (?scientist countryOfOrigin ?country) AND
      (?country partOf ?continent)
    GROUP BY ?continent
11

Structured data

Volkswagen site
12

Structured data

Volkswagen site Vehicle data structure
13

Interlinked data

lacentrale.fr website
14

Interlinked data

lacentrale.fr website with price metadata

lacentrale:AB-234-CD priceInEuros 6300

15

Interlinked data

lacentrale.fr website with price metadata and link to VW website

lacentrale:AB-234-CD priceInEuros 6300
lacentrale:AB-234-CD model vw:Golf4

16

Interlinked data

lacentrale.fr website with price metadata and link to VW website
17

Automate deductions

web site uses the vehicle sales ontology
18

Automate deductions

web site uses the vehicle sales ontology with deduction
19

Today session

20