SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Downloaden Sie, um offline zu lesen
EVA
An Expert System for Vases of the Antiquity
Martina Trognitz
Deutsches Arch¨ ologisches Institut, Berlin
a
22 October 2013

M. Trognitz (DAI)

EVA

1 / 31
What is EVA?

EVA is an expert system for computer aided classification and dating of
ceramics. It represents the application of natural language processing
methods for an archaeological problem.

It was the subject of my master thesis at the University of Heidelberg, in
the department of Computational Linguistics.

M. Trognitz (DAI)

EVA

2 / 31
Outline
1

Motivation

2

The problem

3

What is an expert system?
How it works
Properties

4

Implementation
Before implementation
System architecture
The knowledge base
Description texts

5

Discussion
M. Trognitz (DAI)

EVA

3 / 31
Motivation

Motivation

Combination of computational linguistics and archaeology
Fill the gap between the number of human experts and amount of
unclassified ceramic
EVA could provide a second opinion and be used as a learning tool

M. Trognitz (DAI)

EVA

4 / 31
The problem

Outline
1

Motivation

2

The problem

3

What is an expert system?
How it works
Properties

4

Implementation
Before implementation
System architecture
The knowledge base
Description texts

5

Discussion
M. Trognitz (DAI)

EVA

5 / 31
The problem

The problem

Ceramic is a common find at excavations.
Form and decoration depend on various factors and change in the
course of time:
cultural environment
source
taste and fashion
technical achievements

Hence ceramic is used to date archeological find deposits. It serves as
a type fossil.

M. Trognitz (DAI)

EVA

6 / 31
The problem

Problem
An ancient Greek vase is a difficult object for the non-expert to come to
terms with. Faced with rows of apparently undifferentiated black, red and
buff pots, he or she is at a loss as to where to begin.
Tom Rasmussen & Nigel Spivey

M. Trognitz (DAI)

EVA

7 / 31
The problem

Problem
An ancient Greek vase is a difficult object for the non-expert to come to
terms with. Faced with rows of apparently undifferentiated black, red and
buff pots, he or she is at a loss as to where to begin.
Tom Rasmussen & Nigel Spivey

Solution
Store the knowledge of an expert into an expert system to classify and
date ceramic.

M. Trognitz (DAI)

EVA

7 / 31
What is an expert system?

Outline
1

Motivation

2

The problem

3

What is an expert system?
How it works
Properties

4

Implementation
Before implementation
System architecture
The knowledge base
Description texts

5

Discussion
M. Trognitz (DAI)

EVA

8 / 31
What is an expert system?

What is an expert system?

It is a program capable of solving
problems similarly as human experts
would do.
It uses knowledge and inference
methods to solve problems.
It can solve complex problems
normally requiring enourmous human
expertise.
Edward Feigenbaum
“Father of expert systems”

M. Trognitz (DAI)

EVA

9 / 31
What is an expert system?

Special subject of artificial intelligence
Early systems were developed in the sixties (DENDRAL)
They are used comercially since the eighties
Can be used in a wide range of subjects (MYCIN, PROSPECTOR,
XCON/R1)

M. Trognitz (DAI)

EVA

10 / 31
What is an expert system?

Special subject of artificial intelligence
Early systems were developed in the sixties (DENDRAL)
They are used comercially since the eighties
Can be used in a wide range of subjects (MYCIN, PROSPECTOR,
XCON/R1)
Remark
An expert system only works well in a well-defined special field, the
knowledge domain.

M. Trognitz (DAI)

EVA

10 / 31
What is an expert system?

How it works

How it works

facts & informations
user interface
user

M. Trognitz (DAI)

expertise

expert system
knowledge base
inference engine

EVA

11 / 31
What is an expert system?

How it works

Functionality of the inference engine

inference engine
deductions
facts
working memory

agenda
knowledge base

M. Trognitz (DAI)

EVA

12 / 31
What is an expert system?

Properties

Properties of expert systems

high perfomance, results compete with those of human experts
proper response time
robust
understandable
flexible

M. Trognitz (DAI)

EVA

13 / 31
What is an expert system?

Properties

Properties of expert systems

high perfomance, results compete with those of human experts
proper response time
robust
understandable
flexible
Remark
The knowledge is explicitly disconnected from the processig part of the
program.

M. Trognitz (DAI)

EVA

13 / 31
Implementation

Outline
1

Motivation

2

The problem

3

What is an expert system?
How it works
Properties

4

Implementation
Before implementation
System architecture
The knowledge base
Description texts

5

Discussion
M. Trognitz (DAI)

EVA

14 / 31
Implementation

Before implementation

Before implementation

Size of knowledge domain?
“Ancient vases” is reduced to:
attic protogeometric and geometric

Knowledge base?
sort of a rule-based system
based on a decision tree

Inference engine and knowledge base depend on each other
The system is implemented with Python

M. Trognitz (DAI)

EVA

15 / 31
Implementation

System architecture

System architecture

user

desriptions

B

A
processing

questions
expert system

results
classification
& dating

knowledge base
inference engine
M. Trognitz (DAI)

EVA

16 / 31
Implementation

The knowledge base

The knowledge base

The knowledge base is the heart of the system
A restricted, well-defined knowledge domain is mapped to a
knowledge base
The knowledge representation depends on:
area of application
scope
source of knowledge
functionality of the inference engine

A knowledge engineer transfers the knowledge from an expert to the
knowledge base of the expert system.

M. Trognitz (DAI)

EVA

17 / 31
Implementation

The knowledge base

Why a decision tree?
A specific vase can be described with a specific set of characteristics.
EG I:
figured:no; shape:amphora; handlePosition:neck; handleForm:band;
body:ovoid; motifs:band of slanting lines

MG II:
figured:no; shape:amphora; handlePosition:neck; handleForm:band;
body:ovoid; motifs:hatched meander, zigzag, dogtooth
IF a specific set of characteristics is given THEN you get a specific
vase.
M. Trognitz (DAI)

EVA

18 / 31
Implementation

The knowledge base

Decision tree in EVA
start
figured?

no
shape?

amphora
handlePostion?

neck
...
M. Trognitz (DAI)

shoulder
...

yes
LG!

oinochoe
...

...
...

belly
...
EVA

19 / 31
Implementation

The knowledge base

tree.py
The decision tree is built in the module tree.py
Each node in the tree consists of a value, a question related to the
value, a link to the parent node and a list of child nodes.

no
shape?

amphora
handlePostion?
M. Trognitz (DAI)

oinochoe
...
EVA

yes
LG!

...
...
20 / 31
Implementation

The knowledge base

Knowledge base details

The knowledge base is stored in a separate text file
root - figured? : yes - LG!
root - figured? : no - shape? : amphora - handlePosition? : neck - ...
root - figured? : no - shape? : amphora - handlePosition? : shoulder -

The full question that is displayed to the user is stored in
dictionaries.py

M. Trognitz (DAI)

EVA

21 / 31
Implementation

Description texts

Description texts

user

descriptions

B

A
processing

questions
expert system

result
classification
& dating

knowledge base
inference engine
M. Trognitz (DAI)

EVA

22 / 31
Implementation

Description texts

Description texts

user

descriptions

B

A
processing

questions
expert system

result
classification
& dating

knowledge base
inference engine
M. Trognitz (DAI)

EVA

22 / 31
Implementation

Description texts

This is a small oinochoe. The handle is
outlined and has a wavy line. The rim is
decorated with three horizontal lines. On
the neck a horizontal row of dots, a
horizontal panel with a lozenge chain and
another row of dots can be seen. The
shoulder is decorated with a dotted snake
and some sparse dots. On the belly are
linked dots. All ornaments are interspersed
by encircling bands. The lower part of the
vase is covered by a thin layer of clay.

M. Trognitz (DAI)

EVA

CVA Oxford 4 (GB, 24) p.
12, plate 30 1-3

23 / 31
Implementation

Description texts

This is a small oinochoe. The handle is
outlined and has a wavy line. The rim is
decorated with three horizontal lines. On
the neck a horizontal row of dots, a
horizontal panel with a lozenge chain and
another row of dots can be seen. The
shoulder is decorated with a dotted snake
and some sparse dots. On the belly are
linked dots. All ornaments are interspersed
by encircling bands. The lower part of the
vase is covered by a thin layer of clay.

M. Trognitz (DAI)

EVA

CVA Oxford 4 (GB, 24) p.
12, plate 30 1-3

23 / 31
Implementation

Description texts

Some aspects of natural language texts

The form and structure of the texts depend on:
personal style
language skills
knowledge of the subject

Some informations may be missing

M. Trognitz (DAI)

EVA

24 / 31
Implementation

Description texts

Information extraction
Question
At which part of the body are the handles attached?

M. Trognitz (DAI)

EVA

25 / 31
Implementation

Description texts

Information extraction
Question
At which part of the body are the handles attached?
Possible answers
This neck-handled amphora has a thick barred rim.
The handles of this amphora are attached to the neck.
This is a neck-handled amphora with a thick barred rim.
This amphora has a thick barred rim. The handles are on the neck.

M. Trognitz (DAI)

EVA

25 / 31
Implementation

Description texts

Information extraction
Question
At which part of the body are the handles attached?
Possible answers
This neck-handled amphora has a thick barred rim.
The handles of this amphora are attached to the neck.
This is a neck-handled amphora with a thick barred rim.
This amphora has a thick barred rim. The handles are on the neck.
Possible patterns to look for
... string -handled ...
... handles verbal phrase with on/to ... string

M. Trognitz (DAI)

EVA

25 / 31
Implementation

Description texts

Processing of texts

1: Parsing
Stanford Parser (Klein – Manning 2003)

2: Go through decision tree
Questions are answered automatically with the given text (information
extraction)
It is done by searching for specific patterns

M. Trognitz (DAI)

EVA

26 / 31
Implementation

Description texts

Demonstration of EVA

The main module ist called core.py
core.py builds the decision tree with tree.py and a knowledge base
stored in a text file
In dictionaries.py the user friendly questions and answers are stored.
The patterns for information extraction are also stored in
dictionaries.py

M. Trognitz (DAI)

EVA

27 / 31
Implementation

Description texts

Demonstration of EVA

The main module ist called core.py
core.py builds the decision tree with tree.py and a knowledge base
stored in a text file
In dictionaries.py the user friendly questions and answers are stored.
The patterns for information extraction are also stored in
dictionaries.py
EVA is in an experimental status.

M. Trognitz (DAI)

EVA

27 / 31
Discussion

Outline
1

Motivation

2

The problem

3

What is an expert system?
How it works
Properties

4

Implementation
Before implementation
System architecture
The knowledge base
Description texts

5

Discussion
M. Trognitz (DAI)

EVA

28 / 31
Discussion

Drawbacks

time-consuming
Knowledge base and patterns are handcraftet.
abstract
The program does not consider the actual vase (e.g. looks at images). It
only relies on textual descriptions.

M. Trognitz (DAI)

EVA

29 / 31
Discussion

Future work

GUI (with example images)
Use a certainty factor to weigh outcome
Expansion of knowledge base
more regions; earlier and later styles

Additional languages
Build knowledge base by means of machine learning
Include image recognition

M. Trognitz (DAI)

EVA

30 / 31
Discussion

Discussion

Computer aided classification and dating of ceramics is possible.

What do you think?

martina.trognitz@dainst.de

M. Trognitz (DAI)

EVA

31 / 31

Weitere ähnliche Inhalte

Ähnlich wie EVA: An Expert System for Classifying Ancient Greek Vases

The Role Of Ontology In Modern Expert Systems Dallas 2008
The Role Of Ontology In Modern Expert Systems   Dallas   2008The Role Of Ontology In Modern Expert Systems   Dallas   2008
The Role Of Ontology In Modern Expert Systems Dallas 2008Jason Morris
 
On Methods for the Formal Specification of Fault Tolerant Systems
On Methods for the Formal Specification of Fault Tolerant SystemsOn Methods for the Formal Specification of Fault Tolerant Systems
On Methods for the Formal Specification of Fault Tolerant SystemsMazzara1976
 
AsiaCALL 2017 presentation
AsiaCALL 2017 presentationAsiaCALL 2017 presentation
AsiaCALL 2017 presentationTakeshi Sato
 
download
downloaddownload
downloadbutest
 
download
downloaddownload
downloadbutest
 
Design Patterns
Design PatternsDesign Patterns
Design Patternsppd1961
 
Databasing the world
Databasing the worldDatabasing the world
Databasing the worldChen Zhang
 
EngD in Systems (thinking)
EngD in Systems (thinking)EngD in Systems (thinking)
EngD in Systems (thinking)richard_craig
 
Learning and Text Analysis for Ontology Engineering
Learning and Text Analysis for Ontology EngineeringLearning and Text Analysis for Ontology Engineering
Learning and Text Analysis for Ontology Engineeringbutest
 
The Valladolid Presentation - Nov, 16, 2011
The Valladolid Presentation - Nov, 16, 2011The Valladolid Presentation - Nov, 16, 2011
The Valladolid Presentation - Nov, 16, 2011sdemetri
 
GATE, HLT and Machine Learning, Sheffield, July 2003
GATE, HLT and Machine Learning, Sheffield, July 2003GATE, HLT and Machine Learning, Sheffield, July 2003
GATE, HLT and Machine Learning, Sheffield, July 2003butest
 
Computing with Directed Labeled Graphs
Computing with Directed Labeled GraphsComputing with Directed Labeled Graphs
Computing with Directed Labeled GraphsMarko Rodriguez
 
Data structures and algorithms alfred v. aho, john e. hopcroft and jeffrey ...
Data structures and algorithms   alfred v. aho, john e. hopcroft and jeffrey ...Data structures and algorithms   alfred v. aho, john e. hopcroft and jeffrey ...
Data structures and algorithms alfred v. aho, john e. hopcroft and jeffrey ...Chethan Nt
 
The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...
The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...
The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...YanNaingSoe33
 
Behind the courtain of a paper: Interdisciplinary research from the idea to d...
Behind the courtain of a paper: Interdisciplinary research from the idea to d...Behind the courtain of a paper: Interdisciplinary research from the idea to d...
Behind the courtain of a paper: Interdisciplinary research from the idea to d...Federico Gobbo
 
NLP Tasks and Applications.ppt useful in
NLP Tasks and Applications.ppt useful inNLP Tasks and Applications.ppt useful in
NLP Tasks and Applications.ppt useful inKumari Naveen
 

Ähnlich wie EVA: An Expert System for Classifying Ancient Greek Vases (20)

The Role Of Ontology In Modern Expert Systems Dallas 2008
The Role Of Ontology In Modern Expert Systems   Dallas   2008The Role Of Ontology In Modern Expert Systems   Dallas   2008
The Role Of Ontology In Modern Expert Systems Dallas 2008
 
On Methods for the Formal Specification of Fault Tolerant Systems
On Methods for the Formal Specification of Fault Tolerant SystemsOn Methods for the Formal Specification of Fault Tolerant Systems
On Methods for the Formal Specification of Fault Tolerant Systems
 
What's in a textbook
What's in a textbookWhat's in a textbook
What's in a textbook
 
AsiaCALL 2017 presentation
AsiaCALL 2017 presentationAsiaCALL 2017 presentation
AsiaCALL 2017 presentation
 
download
downloaddownload
download
 
download
downloaddownload
download
 
FinalReport
FinalReportFinalReport
FinalReport
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
Databasing the world
Databasing the worldDatabasing the world
Databasing the world
 
03
0303
03
 
EngD in Systems (thinking)
EngD in Systems (thinking)EngD in Systems (thinking)
EngD in Systems (thinking)
 
Learning and Text Analysis for Ontology Engineering
Learning and Text Analysis for Ontology EngineeringLearning and Text Analysis for Ontology Engineering
Learning and Text Analysis for Ontology Engineering
 
The Valladolid Presentation - Nov, 16, 2011
The Valladolid Presentation - Nov, 16, 2011The Valladolid Presentation - Nov, 16, 2011
The Valladolid Presentation - Nov, 16, 2011
 
GATE, HLT and Machine Learning, Sheffield, July 2003
GATE, HLT and Machine Learning, Sheffield, July 2003GATE, HLT and Machine Learning, Sheffield, July 2003
GATE, HLT and Machine Learning, Sheffield, July 2003
 
Computing with Directed Labeled Graphs
Computing with Directed Labeled GraphsComputing with Directed Labeled Graphs
Computing with Directed Labeled Graphs
 
Data structures and algorithms alfred v. aho, john e. hopcroft and jeffrey ...
Data structures and algorithms   alfred v. aho, john e. hopcroft and jeffrey ...Data structures and algorithms   alfred v. aho, john e. hopcroft and jeffrey ...
Data structures and algorithms alfred v. aho, john e. hopcroft and jeffrey ...
 
The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...
The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...
The Design and Analysis of Computer Algorithms [Aho, Hopcroft & Ullman 1974-0...
 
Behind the courtain of a paper: Interdisciplinary research from the idea to d...
Behind the courtain of a paper: Interdisciplinary research from the idea to d...Behind the courtain of a paper: Interdisciplinary research from the idea to d...
Behind the courtain of a paper: Interdisciplinary research from the idea to d...
 
Recommandation sociale : filtrage collaboratif et par le contenu
Recommandation sociale : filtrage collaboratif et par le contenuRecommandation sociale : filtrage collaboratif et par le contenu
Recommandation sociale : filtrage collaboratif et par le contenu
 
NLP Tasks and Applications.ppt useful in
NLP Tasks and Applications.ppt useful inNLP Tasks and Applications.ppt useful in
NLP Tasks and Applications.ppt useful in
 

Mehr von Digital Classicist Seminar Berlin

[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...
[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...
[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...Digital Classicist Seminar Berlin
 
[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...
[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...
[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...Digital Classicist Seminar Berlin
 
[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...
[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...
[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...Digital Classicist Seminar Berlin
 
[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...
[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...
[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...Digital Classicist Seminar Berlin
 
[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...
[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...
[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...Digital Classicist Seminar Berlin
 
[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...
[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...
[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...Digital Classicist Seminar Berlin
 
[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...
[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...
[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...Digital Classicist Seminar Berlin
 
[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...
[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...
[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...Digital Classicist Seminar Berlin
 
[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...
[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...
[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...Digital Classicist Seminar Berlin
 
[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...
[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...
[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...Digital Classicist Seminar Berlin
 
[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...
[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...
[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...Digital Classicist Seminar Berlin
 
[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...
[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...
[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...Digital Classicist Seminar Berlin
 
[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...
[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...
[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...Digital Classicist Seminar Berlin
 
[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...
[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...
[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...Digital Classicist Seminar Berlin
 
[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...
[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...
[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...Digital Classicist Seminar Berlin
 
[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...
[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...
[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...Digital Classicist Seminar Berlin
 
Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...
Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...
Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...Digital Classicist Seminar Berlin
 
[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...
[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...
[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...Digital Classicist Seminar Berlin
 
[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...
[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...
[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...Digital Classicist Seminar Berlin
 
[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...
[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...
[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...Digital Classicist Seminar Berlin
 

Mehr von Digital Classicist Seminar Berlin (20)

[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...
[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...
[DCSB] Aline Deicke (Digital Academy Mainz) From E19 to MATCH and MERGE. Mapp...
 
[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...
[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...
[DCSB] Wolfgang Schmidle et al. (DAI) chronOntology: A time gazetteer with pr...
 
[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...
[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...
[DCSB] Chiara Palladino & Tariq Youssef (Leipzig) iAligner: a tool for syntax...
 
[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...
[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...
[DCSB] Katherine Crawford (Southampton) In the Footsteps of the Gods: network...
 
[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...
[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...
[DCSB] Nathan Gibson (Vanderbilt) Toward a Cyberinfrastructure for Syriac Lit...
 
[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...
[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...
[DCSB] Duncan Keenan-Jones (Glasgow) Digital Experimental Archaeology: Hero o...
 
[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...
[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...
[DCSB] Undine Lieberwirth & Axel Gering (TOPOI) 3D GIS in archaeology – a mic...
 
[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...
[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...
[DCSB] Christian Prager (Bonn) Of Codes, Glyphs and Kings: Tasks, Limits and ...
 
[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...
[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...
[DCSB] Silvia Polla (Topoi) Between Demography and Consumption: Digital and Q...
 
[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...
[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...
[DCSB] Pau de Soto (University of Southampton), “Network Analysis to Understa...
 
[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...
[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...
[DCSB] Torsten Roeder (Julius Maximilian University of Würzburg) and Yury Arz...
 
[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...
[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...
[DCSB] Christian Fron (University of Stuttgart), “Beyond the visual. The acou...
 
[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...
[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...
[DCSB] Silke Vanbeselaere (KU Leuven), “Love Thy (Theban) Neighbours, or how ...
 
[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...
[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...
[DCSB] Jorit Wintjes (University of Würzburg), “Diekplous! – understanding an...
 
[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...
[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...
[DCSB] Gregory Crane (University of Leipzig): "Digital Philology, World Liter...
 
[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...
[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...
[DCSB] Chris Forstall, Lavinia Galli Milić (University of Geneva): "Thematic ...
 
Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...
Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...
Kathryn Piquette (U of Cologne), "The Herculaneum Papyri and Greek Magical Te...
 
[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...
[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...
[DCSB] Gabriel Bodard / Faith Lawrence (KCL), "Standards for Networking Ancie...
 
[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...
[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...
[DCSB] Tom Brughmans (U of Konstanz), "Roman bazaar or market economy? Explai...
 
[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...
[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...
[DCSB] Yannick Anné and Toon Van Hal (U of Leuven), "Creating a Dynamic Gramm...
 

Kürzlich hochgeladen

4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Using Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea DevelopmentUsing Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea Developmentchesterberbo7
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxDhatriParmar
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvRicaMaeCastro1
 
Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsPooky Knightsmith
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptxJonalynLegaspi2
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxDIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxMichelleTuguinay1
 

Kürzlich hochgeladen (20)

4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
 
Paradigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTAParadigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTA
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Using Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea DevelopmentUsing Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea Development
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
 
Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young minds
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptx
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxDIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
 

EVA: An Expert System for Classifying Ancient Greek Vases

  • 1. EVA An Expert System for Vases of the Antiquity Martina Trognitz Deutsches Arch¨ ologisches Institut, Berlin a 22 October 2013 M. Trognitz (DAI) EVA 1 / 31
  • 2. What is EVA? EVA is an expert system for computer aided classification and dating of ceramics. It represents the application of natural language processing methods for an archaeological problem. It was the subject of my master thesis at the University of Heidelberg, in the department of Computational Linguistics. M. Trognitz (DAI) EVA 2 / 31
  • 3. Outline 1 Motivation 2 The problem 3 What is an expert system? How it works Properties 4 Implementation Before implementation System architecture The knowledge base Description texts 5 Discussion M. Trognitz (DAI) EVA 3 / 31
  • 4. Motivation Motivation Combination of computational linguistics and archaeology Fill the gap between the number of human experts and amount of unclassified ceramic EVA could provide a second opinion and be used as a learning tool M. Trognitz (DAI) EVA 4 / 31
  • 5. The problem Outline 1 Motivation 2 The problem 3 What is an expert system? How it works Properties 4 Implementation Before implementation System architecture The knowledge base Description texts 5 Discussion M. Trognitz (DAI) EVA 5 / 31
  • 6. The problem The problem Ceramic is a common find at excavations. Form and decoration depend on various factors and change in the course of time: cultural environment source taste and fashion technical achievements Hence ceramic is used to date archeological find deposits. It serves as a type fossil. M. Trognitz (DAI) EVA 6 / 31
  • 7. The problem Problem An ancient Greek vase is a difficult object for the non-expert to come to terms with. Faced with rows of apparently undifferentiated black, red and buff pots, he or she is at a loss as to where to begin. Tom Rasmussen & Nigel Spivey M. Trognitz (DAI) EVA 7 / 31
  • 8. The problem Problem An ancient Greek vase is a difficult object for the non-expert to come to terms with. Faced with rows of apparently undifferentiated black, red and buff pots, he or she is at a loss as to where to begin. Tom Rasmussen & Nigel Spivey Solution Store the knowledge of an expert into an expert system to classify and date ceramic. M. Trognitz (DAI) EVA 7 / 31
  • 9. What is an expert system? Outline 1 Motivation 2 The problem 3 What is an expert system? How it works Properties 4 Implementation Before implementation System architecture The knowledge base Description texts 5 Discussion M. Trognitz (DAI) EVA 8 / 31
  • 10. What is an expert system? What is an expert system? It is a program capable of solving problems similarly as human experts would do. It uses knowledge and inference methods to solve problems. It can solve complex problems normally requiring enourmous human expertise. Edward Feigenbaum “Father of expert systems” M. Trognitz (DAI) EVA 9 / 31
  • 11. What is an expert system? Special subject of artificial intelligence Early systems were developed in the sixties (DENDRAL) They are used comercially since the eighties Can be used in a wide range of subjects (MYCIN, PROSPECTOR, XCON/R1) M. Trognitz (DAI) EVA 10 / 31
  • 12. What is an expert system? Special subject of artificial intelligence Early systems were developed in the sixties (DENDRAL) They are used comercially since the eighties Can be used in a wide range of subjects (MYCIN, PROSPECTOR, XCON/R1) Remark An expert system only works well in a well-defined special field, the knowledge domain. M. Trognitz (DAI) EVA 10 / 31
  • 13. What is an expert system? How it works How it works facts & informations user interface user M. Trognitz (DAI) expertise expert system knowledge base inference engine EVA 11 / 31
  • 14. What is an expert system? How it works Functionality of the inference engine inference engine deductions facts working memory agenda knowledge base M. Trognitz (DAI) EVA 12 / 31
  • 15. What is an expert system? Properties Properties of expert systems high perfomance, results compete with those of human experts proper response time robust understandable flexible M. Trognitz (DAI) EVA 13 / 31
  • 16. What is an expert system? Properties Properties of expert systems high perfomance, results compete with those of human experts proper response time robust understandable flexible Remark The knowledge is explicitly disconnected from the processig part of the program. M. Trognitz (DAI) EVA 13 / 31
  • 17. Implementation Outline 1 Motivation 2 The problem 3 What is an expert system? How it works Properties 4 Implementation Before implementation System architecture The knowledge base Description texts 5 Discussion M. Trognitz (DAI) EVA 14 / 31
  • 18. Implementation Before implementation Before implementation Size of knowledge domain? “Ancient vases” is reduced to: attic protogeometric and geometric Knowledge base? sort of a rule-based system based on a decision tree Inference engine and knowledge base depend on each other The system is implemented with Python M. Trognitz (DAI) EVA 15 / 31
  • 19. Implementation System architecture System architecture user desriptions B A processing questions expert system results classification & dating knowledge base inference engine M. Trognitz (DAI) EVA 16 / 31
  • 20. Implementation The knowledge base The knowledge base The knowledge base is the heart of the system A restricted, well-defined knowledge domain is mapped to a knowledge base The knowledge representation depends on: area of application scope source of knowledge functionality of the inference engine A knowledge engineer transfers the knowledge from an expert to the knowledge base of the expert system. M. Trognitz (DAI) EVA 17 / 31
  • 21. Implementation The knowledge base Why a decision tree? A specific vase can be described with a specific set of characteristics. EG I: figured:no; shape:amphora; handlePosition:neck; handleForm:band; body:ovoid; motifs:band of slanting lines MG II: figured:no; shape:amphora; handlePosition:neck; handleForm:band; body:ovoid; motifs:hatched meander, zigzag, dogtooth IF a specific set of characteristics is given THEN you get a specific vase. M. Trognitz (DAI) EVA 18 / 31
  • 22. Implementation The knowledge base Decision tree in EVA start figured? no shape? amphora handlePostion? neck ... M. Trognitz (DAI) shoulder ... yes LG! oinochoe ... ... ... belly ... EVA 19 / 31
  • 23. Implementation The knowledge base tree.py The decision tree is built in the module tree.py Each node in the tree consists of a value, a question related to the value, a link to the parent node and a list of child nodes. no shape? amphora handlePostion? M. Trognitz (DAI) oinochoe ... EVA yes LG! ... ... 20 / 31
  • 24. Implementation The knowledge base Knowledge base details The knowledge base is stored in a separate text file root - figured? : yes - LG! root - figured? : no - shape? : amphora - handlePosition? : neck - ... root - figured? : no - shape? : amphora - handlePosition? : shoulder - The full question that is displayed to the user is stored in dictionaries.py M. Trognitz (DAI) EVA 21 / 31
  • 25. Implementation Description texts Description texts user descriptions B A processing questions expert system result classification & dating knowledge base inference engine M. Trognitz (DAI) EVA 22 / 31
  • 26. Implementation Description texts Description texts user descriptions B A processing questions expert system result classification & dating knowledge base inference engine M. Trognitz (DAI) EVA 22 / 31
  • 27. Implementation Description texts This is a small oinochoe. The handle is outlined and has a wavy line. The rim is decorated with three horizontal lines. On the neck a horizontal row of dots, a horizontal panel with a lozenge chain and another row of dots can be seen. The shoulder is decorated with a dotted snake and some sparse dots. On the belly are linked dots. All ornaments are interspersed by encircling bands. The lower part of the vase is covered by a thin layer of clay. M. Trognitz (DAI) EVA CVA Oxford 4 (GB, 24) p. 12, plate 30 1-3 23 / 31
  • 28. Implementation Description texts This is a small oinochoe. The handle is outlined and has a wavy line. The rim is decorated with three horizontal lines. On the neck a horizontal row of dots, a horizontal panel with a lozenge chain and another row of dots can be seen. The shoulder is decorated with a dotted snake and some sparse dots. On the belly are linked dots. All ornaments are interspersed by encircling bands. The lower part of the vase is covered by a thin layer of clay. M. Trognitz (DAI) EVA CVA Oxford 4 (GB, 24) p. 12, plate 30 1-3 23 / 31
  • 29. Implementation Description texts Some aspects of natural language texts The form and structure of the texts depend on: personal style language skills knowledge of the subject Some informations may be missing M. Trognitz (DAI) EVA 24 / 31
  • 30. Implementation Description texts Information extraction Question At which part of the body are the handles attached? M. Trognitz (DAI) EVA 25 / 31
  • 31. Implementation Description texts Information extraction Question At which part of the body are the handles attached? Possible answers This neck-handled amphora has a thick barred rim. The handles of this amphora are attached to the neck. This is a neck-handled amphora with a thick barred rim. This amphora has a thick barred rim. The handles are on the neck. M. Trognitz (DAI) EVA 25 / 31
  • 32. Implementation Description texts Information extraction Question At which part of the body are the handles attached? Possible answers This neck-handled amphora has a thick barred rim. The handles of this amphora are attached to the neck. This is a neck-handled amphora with a thick barred rim. This amphora has a thick barred rim. The handles are on the neck. Possible patterns to look for ... string -handled ... ... handles verbal phrase with on/to ... string M. Trognitz (DAI) EVA 25 / 31
  • 33. Implementation Description texts Processing of texts 1: Parsing Stanford Parser (Klein – Manning 2003) 2: Go through decision tree Questions are answered automatically with the given text (information extraction) It is done by searching for specific patterns M. Trognitz (DAI) EVA 26 / 31
  • 34. Implementation Description texts Demonstration of EVA The main module ist called core.py core.py builds the decision tree with tree.py and a knowledge base stored in a text file In dictionaries.py the user friendly questions and answers are stored. The patterns for information extraction are also stored in dictionaries.py M. Trognitz (DAI) EVA 27 / 31
  • 35. Implementation Description texts Demonstration of EVA The main module ist called core.py core.py builds the decision tree with tree.py and a knowledge base stored in a text file In dictionaries.py the user friendly questions and answers are stored. The patterns for information extraction are also stored in dictionaries.py EVA is in an experimental status. M. Trognitz (DAI) EVA 27 / 31
  • 36. Discussion Outline 1 Motivation 2 The problem 3 What is an expert system? How it works Properties 4 Implementation Before implementation System architecture The knowledge base Description texts 5 Discussion M. Trognitz (DAI) EVA 28 / 31
  • 37. Discussion Drawbacks time-consuming Knowledge base and patterns are handcraftet. abstract The program does not consider the actual vase (e.g. looks at images). It only relies on textual descriptions. M. Trognitz (DAI) EVA 29 / 31
  • 38. Discussion Future work GUI (with example images) Use a certainty factor to weigh outcome Expansion of knowledge base more regions; earlier and later styles Additional languages Build knowledge base by means of machine learning Include image recognition M. Trognitz (DAI) EVA 30 / 31
  • 39. Discussion Discussion Computer aided classification and dating of ceramics is possible. What do you think? martina.trognitz@dainst.de M. Trognitz (DAI) EVA 31 / 31