Hybrid Learning of Ontology Classes

Size: px
Start display at page:

Download "Hybrid Learning of Ontology Classes"

Transcription

1 Hybrid Learning of Ontology Classes Jens Lehmann July 18, 2007 Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

2 Outline 1 Introduction to Description Logics, OWL, and the Learning Problem 2 Solving the Learning Problem with Genetic Programming (GP) 3 Genetic Refinement Operators 4 Preliminary Evaluation 5 Conclusions & Future Work Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

3 Outline 1 Introduction to Description Logics, OWL, and the Learning Problem 2 Solving the Learning Problem with Genetic Programming (GP) 3 Genetic Refinement Operators 4 Preliminary Evaluation 5 Conclusions & Future Work Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

4 Introduction to Description Logics Description Logics (DL) is the name of a family of languages for knowledge representation fragment of first order predicate logic less expressive power than predicate logic, but decidable inference problems intuitive variable free syntax basis of the ontology language OWL (W3C recommendation) OWL ontology convertable to DL knowledge base and vice versa Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

5 The Learning Problem in DLs Woman Man Mother Person Person Female Person Female Woman haschild. Man Woman Male Female ALC Description Logic knowledge base TBox - terminological knowledge Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

6 The Learning Problem in DLs Woman Person Female Man Person Female Mother Woman haschild. Person Man Woman Male(JOHN) Male Female Male(MARC) Male(STEPHEN) haschild(stephen,marc) Male(JASON) haschild(marc,anna) Female(MICHELLE) haschild(john,maria) Female(ANNA) haschild(anna,jason) Female(MARIA) ALC Description Logic knowledge base ABox - assertional knowledge Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

7 The Learning Problem in DLs Woman Person Female Man Person Female Mother Woman haschild. Person Man Woman Male(JOHN) Male Female Male(MARC) Male(STEPHEN) haschild(stephen,marc) Male(JASON) haschild(marc,anna) Female(MICHELLE) haschild(john,maria) Female(ANNA) haschild(anna,jason) Female(MARIA) positive examples:{stephen, MARC, JOHN} negative examples:{jason, ANNA, MARIA, MICHELLE} Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

8 The Learning Problem in DLs Woman Person Female Man Person Female Mother Woman haschild. Person Man Woman Male(JOHN) Male Female Male(MARC) Male(STEPHEN) haschild(stephen,marc) Male(JASON) haschild(marc,anna) Female(MICHELLE) haschild(john,maria) Female(ANNA) haschild(anna,jason) Female(MARIA) positive examples:{stephen, MARC, JOHN} negative examples:{jason, ANNA, MARIA, MICHELLE} possible solution: Target Male haschild. Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

9 Outline 1 Introduction to Description Logics, OWL, and the Learning Problem 2 Solving the Learning Problem with Genetic Programming (GP) 3 Genetic Refinement Operators 4 Preliminary Evaluation 5 Conclusions & Future Work Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

10 Genetic Programming (GP) Algorithm (Genetic Programming) create population while the termination criterion is not met: select a subset of the population based on their fitness produce offspring using genetic operators on selected individuals create a new population from the old one and the offspring genetic operators: crossover, mutation, editing selection: rank selection, FPS, tournament selection tree representation common in GP Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

11 Applying Standard GP representing ALC concepts: terminal set T = N C {, } function set F = {,, } { r r N R } { r r N R } Male haschild Female Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

12 Applying Standard GP representing ALC concepts: terminal set T = N C {, } function set F = {,, } { r r N R } { r r N R } Male haschild Female possible fitness function: f K (C) = E + \ pos K (C) + neg K (C) E + + E a C (0 < a < 1) pos K (C)... set of covered positive examples neg K (C)... set of covered negative examples a... concept length penalty Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

13 Advantages&Disadvantages of the Standard GP Approach Tree encoding and fitness measurement are sufficient to apply GP! Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

14 Advantages&Disadvantages of the Standard GP Approach Tree encoding and fitness measurement are sufficient to apply GP! Advantages: very flexible learning method (can handle other description languages) parallelisable algorithms GP is robust to noise Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

15 Advantages&Disadvantages of the Standard GP Approach Tree encoding and fitness measurement are sufficient to apply GP! Advantages: very flexible learning method (can handle other description languages) parallelisable algorithms GP is robust to noise Disadvantages: crossover operator too destructive: small syntactic changes - drastic semantic changes does not use all of the available background knowledge: no exploitation of the subsumption hierarchy of concepts Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

16 Outline 1 Introduction to Description Logics, OWL, and the Learning Problem 2 Solving the Learning Problem with Genetic Programming (GP) 3 Genetic Refinement Operators 4 Preliminary Evaluation 5 Conclusions & Future Work Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

17 Refinement Operators idea: combine refinement operators and GP definition of refinement operators: consider quasi-ordered space (ALC, ) ALC downward (upward) refinement operator ρ is a mapping from S to 2 S such that for any C S: example: C ρ(c) implies C C (C C ) Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

18 Refinement Operators idea: combine refinement operators and GP definition of refinement operators: consider quasi-ordered space (ALC, ) ALC downward (upward) refinement operator ρ is a mapping from S to 2 S such that for any C S: example: Person C ρ(c) implies C C (C C ) Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

19 Refinement Operators idea: combine refinement operators and GP definition of refinement operators: consider quasi-ordered space (ALC, ) ALC downward (upward) refinement operator ρ is a mapping from S to 2 S such that for any C S: C ρ(c) implies C C (C C ) example: Person Person takespartin.conference Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

20 Refinement Operators idea: combine refinement operators and GP definition of refinement operators: consider quasi-ordered space (ALC, ) ALC downward (upward) refinement operator ρ is a mapping from S to 2 S such that for any C S: C ρ(c) implies C C (C C ) example: Person Person takespartin.conference refinement operators... Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

21 Refinement Operators idea: combine refinement operators and GP definition of refinement operators: consider quasi-ordered space (ALC, ) ALC downward (upward) refinement operator ρ is a mapping from S to 2 S such that for any C S: C ρ(c) implies C C (C C ) example: Person Person takespartin.conference refinement operators can make use of the generality order of concepts w.r.t. K... are less destructive w.r.t. the semantics of a concept... can use the (precomputed) subsumption hierarchy Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

22 Genetic Refinement Operators What distinguishes refinement and genetic operators? refinement operators map one concept to many concepts refinement operators are either downward or upward operators Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

23 Genetic Refinement Operators What distinguishes refinement and genetic operators? refinement operators map one concept to many concepts refinement operators are either downward or upward operators solution: Genetic Refinement Operators rand(φ (C)) φ K (C) = rand(φ (C)) with probability with probability neg K (C) E 1+ neg K (C) E pos K (C) E + 1 pos K (C) E + 1+ neg K (C) E pos K (C) E + Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

24 Genetic Refinement Operators What distinguishes refinement and genetic operators? refinement operators map one concept to many concepts refinement operators are either downward or upward operators solution: Genetic Refinement Operators rand(φ (C)) φ K (C) = rand(φ (C)) with probability with probability neg K (C) E 1+ neg K (C) E pos K (C) E + 1 pos K (C) E + 1+ neg K (C) E pos K (C) E + we created a complete and proper operator based on a full property analysis [Lehmann et. al, ILP 2007] Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

25 Outline 1 Introduction to Description Logics, OWL, and the Learning Problem 2 Solving the Learning Problem with Genetic Programming (GP) 3 Genetic Refinement Operators 4 Preliminary Evaluation 5 Conclusions & Future Work Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

26 Evaluation - Uncle Problem learn definition of uncle from FORTE family data set (337 assertions, 86 examples) problem is challenging - relatively complex solution and no search space restrictions possible solution: Uncle Male ( sibling. parent. married. sibling. parent. ) Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

27 Evaluation - Uncle Problem learn definition of uncle from FORTE family data set (337 assertions, 86 examples) problem is challenging - relatively complex solution and no search space restrictions compare against state of the art DL learning system YinYang compare improvement over standard GP possible solution: Uncle Male ( sibling. parent. married. sibling. parent. ) Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

28 Evaluation - Accuracy classification accuracy in % refinement mixed standard GP population size YinYang: 73.5% Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

29 Evaluation - Concept Length syntactic length of solution refinement mixed standard GP population size YinYang: 12.2 Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

30 Outline 1 Introduction to Description Logics, OWL, and the Learning Problem 2 Solving the Learning Problem with Genetic Programming (GP) 3 Genetic Refinement Operators 4 Preliminary Evaluation 5 Conclusions & Future Work Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

31 Contributions to the State of the Art first time to apply evolutionary techniques to learning problem in DLs first framework for combining refinement operators and GP directly creation of a concrete operator based on a full property analysis implemented in a system called DL-Learner and shown to be feasible in a preliminary evaluation Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

32 Future Work more evaluation examples, e.g. asses performance on noisy or inconsistent data create (more) benchmarks to assess scalability and enable easier comparison between different algorithms tests on real world data, e.g. DBpedia embed learning algorithm in ontology editor e.g. OntoWiki extend algorithm to other description languages (cardinality restrictions, datatype integer) Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

33 The End Thank you for your attention. contact: Jens Lehmann (Uni Leipzig) Hybrid Ontology Class Learning July 18, / 20

Computerized Adaptive Psychological Testing A Personalisation Perspective

Computerized Adaptive Psychological Testing A Personalisation Perspective Psychology and the internet: An European Perspective Computerized Adaptive Psychological Testing A Personalisation Perspective Mykola Pechenizkiy mpechen@cc.jyu.fi Introduction Mixed Model of IRT and ES

More information

Intension, Attitude, and Tense Annotation in a High-Fidelity Semantic Representation

Intension, Attitude, and Tense Annotation in a High-Fidelity Semantic Representation Intension, Attitude, and Tense Annotation in a High-Fidelity Semantic Representation Gene Kim and Lenhart Schubert Presented by: Gene Kim April 2017 Project Overview Project: Annotate a large, topically

More information

Chapter 2 Rule Learning in a Nutshell

Chapter 2 Rule Learning in a Nutshell Chapter 2 Rule Learning in a Nutshell This chapter gives a brief overview of inductive rule learning and may therefore serve as a guide through the rest of the book. Later chapters will expand upon the

More information

Knowledge-Based - Systems

Knowledge-Based - Systems Knowledge-Based - Systems ; Rajendra Arvind Akerkar Chairman, Technomathematics Research Foundation and Senior Researcher, Western Norway Research institute Priti Srinivas Sajja Sardar Patel University

More information

Some Principles of Automated Natural Language Information Extraction

Some Principles of Automated Natural Language Information Extraction Some Principles of Automated Natural Language Information Extraction Gregers Koch Department of Computer Science, Copenhagen University DIKU, Universitetsparken 1, DK-2100 Copenhagen, Denmark Abstract

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

AQUA: An Ontology-Driven Question Answering System

AQUA: An Ontology-Driven Question Answering System AQUA: An Ontology-Driven Question Answering System Maria Vargas-Vera, Enrico Motta and John Domingue Knowledge Media Institute (KMI) The Open University, Walton Hall, Milton Keynes, MK7 6AA, United Kingdom.

More information

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition Chapter 2: The Representation of Knowledge Expert Systems: Principles and Programming, Fourth Edition Objectives Introduce the study of logic Learn the difference between formal logic and informal logic

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

A Polynomial Approach to the Constructive Induction of Structural Knowledge

A Polynomial Approach to the Constructive Induction of Structural Knowledge Machine Learning, 14, 193-217 (1994) 1994 Kluwer Academic Publishers, Boston. Manufactured in The Netherlands. A Polynomial Approach to the Constructive Induction of Structural Knowledge JORG-UWE KIETZ

More information

Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments

Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments Cristina Vertan, Walther v. Hahn University of Hamburg, Natural Language Systems Division Hamburg,

More information

An Introduction to the Minimalist Program

An Introduction to the Minimalist Program An Introduction to the Minimalist Program Luke Smith University of Arizona Summer 2016 Some findings of traditional syntax Human languages vary greatly, but digging deeper, they all have distinct commonalities:

More information

Applications of memory-based natural language processing

Applications of memory-based natural language processing Applications of memory-based natural language processing Antal van den Bosch and Roser Morante ILK Research Group Tilburg University Prague, June 24, 2007 Current ILK members Principal investigator: Antal

More information

Erkki Mäkinen State change languages as homomorphic images of Szilard languages

Erkki Mäkinen State change languages as homomorphic images of Szilard languages Erkki Mäkinen State change languages as homomorphic images of Szilard languages UNIVERSITY OF TAMPERE SCHOOL OF INFORMATION SCIENCES REPORTS IN INFORMATION SCIENCES 48 TAMPERE 2016 UNIVERSITY OF TAMPERE

More information

Proof Theory for Syntacticians

Proof Theory for Syntacticians Department of Linguistics Ohio State University Syntax 2 (Linguistics 602.02) January 5, 2012 Logics for Linguistics Many different kinds of logic are directly applicable to formalizing theories in syntax

More information

Toward Probabilistic Natural Logic for Syllogistic Reasoning

Toward Probabilistic Natural Logic for Syllogistic Reasoning Toward Probabilistic Natural Logic for Syllogistic Reasoning Fangzhou Zhai, Jakub Szymanik and Ivan Titov Institute for Logic, Language and Computation, University of Amsterdam Abstract Natural language

More information

Grammars & Parsing, Part 1:

Grammars & Parsing, Part 1: Grammars & Parsing, Part 1: Rules, representations, and transformations- oh my! Sentence VP The teacher Verb gave the lecture 2015-02-12 CS 562/662: Natural Language Processing Game plan for today: Review

More information

Ontological spine, localization and multilingual access

Ontological spine, localization and multilingual access Start Ontological spine, localization and multilingual access Some reflections and a proposal New Perspectives on Subject Indexing and Classification in an International Context International Symposium

More information

Ontologies vs. classification systems

Ontologies vs. classification systems Ontologies vs. classification systems Bodil Nistrup Madsen Copenhagen Business School Copenhagen, Denmark bnm.isv@cbs.dk Hanne Erdman Thomsen Copenhagen Business School Copenhagen, Denmark het.isv@cbs.dk

More information

Using dialogue context to improve parsing performance in dialogue systems

Using dialogue context to improve parsing performance in dialogue systems Using dialogue context to improve parsing performance in dialogue systems Ivan Meza-Ruiz and Oliver Lemon School of Informatics, Edinburgh University 2 Buccleuch Place, Edinburgh I.V.Meza-Ruiz@sms.ed.ac.uk,

More information

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Todd Holloway Two Lecture Series for B551 November 20 & 27, 2007 Indiana University Outline Introduction Bias and

More information

Transfer Learning Action Models by Measuring the Similarity of Different Domains

Transfer Learning Action Models by Measuring the Similarity of Different Domains Transfer Learning Action Models by Measuring the Similarity of Different Domains Hankui Zhuo 1, Qiang Yang 2, and Lei Li 1 1 Software Research Institute, Sun Yat-sen University, Guangzhou, China. zhuohank@gmail.com,lnslilei@mail.sysu.edu.cn

More information

Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge

Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge Innov High Educ (2009) 34:93 103 DOI 10.1007/s10755-009-9095-2 Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge Phyllis Blumberg Published online: 3 February

More information

Constraining X-Bar: Theta Theory

Constraining X-Bar: Theta Theory Constraining X-Bar: Theta Theory Carnie, 2013, chapter 8 Kofi K. Saah 1 Learning objectives Distinguish between thematic relation and theta role. Identify the thematic relations agent, theme, goal, source,

More information

Ensemble Technique Utilization for Indonesian Dependency Parser

Ensemble Technique Utilization for Indonesian Dependency Parser Ensemble Technique Utilization for Indonesian Dependency Parser Arief Rahman Institut Teknologi Bandung Indonesia 23516008@std.stei.itb.ac.id Ayu Purwarianti Institut Teknologi Bandung Indonesia ayu@stei.itb.ac.id

More information

IAT 888: Metacreation Machines endowed with creative behavior. Philippe Pasquier Office 565 (floor 14)

IAT 888: Metacreation Machines endowed with creative behavior. Philippe Pasquier Office 565 (floor 14) IAT 888: Metacreation Machines endowed with creative behavior Philippe Pasquier Office 565 (floor 14) pasquier@sfu.ca Outline of today's lecture A little bit about me A little bit about you What will that

More information

RANKING AND UNRANKING LEFT SZILARD LANGUAGES. Erkki Mäkinen DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF TAMPERE REPORT A ER E P S I M S

RANKING AND UNRANKING LEFT SZILARD LANGUAGES. Erkki Mäkinen DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF TAMPERE REPORT A ER E P S I M S N S ER E P S I M TA S UN A I S I T VER RANKING AND UNRANKING LEFT SZILARD LANGUAGES Erkki Mäkinen DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF TAMPERE REPORT A-1997-2 UNIVERSITY OF TAMPERE DEPARTMENT OF

More information

Seminar - Organic Computing

Seminar - Organic Computing Seminar - Organic Computing Self-Organisation of OC-Systems Markus Franke 25.01.2006 Typeset by FoilTEX Timetable 1. Overview 2. Characteristics of SO-Systems 3. Concern with Nature 4. Design-Concepts

More information

Automating the E-learning Personalization

Automating the E-learning Personalization Automating the E-learning Personalization Fathi Essalmi 1, Leila Jemni Ben Ayed 1, Mohamed Jemni 1, Kinshuk 2, and Sabine Graf 2 1 The Research Laboratory of Technologies of Information and Communication

More information

Linking Task: Identifying authors and book titles in verbose queries

Linking Task: Identifying authors and book titles in verbose queries Linking Task: Identifying authors and book titles in verbose queries Anaïs Ollagnier, Sébastien Fournier, and Patrice Bellot Aix-Marseille University, CNRS, ENSAM, University of Toulon, LSIS UMR 7296,

More information

TABLE OF CONTENTS TABLE OF CONTENTS COVER PAGE HALAMAN PENGESAHAN PERNYATAAN NASKAH SOAL TUGAS AKHIR ACKNOWLEDGEMENT FOREWORD

TABLE OF CONTENTS TABLE OF CONTENTS COVER PAGE HALAMAN PENGESAHAN PERNYATAAN NASKAH SOAL TUGAS AKHIR ACKNOWLEDGEMENT FOREWORD TABLE OF CONTENTS TABLE OF CONTENTS COVER PAGE HALAMAN PENGESAHAN PERNYATAAN NASKAH SOAL TUGAS AKHIR ACKNOWLEDGEMENT FOREWORD TABLE OF CONTENTS LIST OF FIGURES LIST OF TABLES LIST OF APPENDICES LIST OF

More information

Rule discovery in Web-based educational systems using Grammar-Based Genetic Programming

Rule discovery in Web-based educational systems using Grammar-Based Genetic Programming Data Mining VI 205 Rule discovery in Web-based educational systems using Grammar-Based Genetic Programming C. Romero, S. Ventura, C. Hervás & P. González Universidad de Córdoba, Campus Universitario de

More information

Lecture 2: Quantifiers and Approximation

Lecture 2: Quantifiers and Approximation Lecture 2: Quantifiers and Approximation Case study: Most vs More than half Jakub Szymanik Outline Number Sense Approximate Number Sense Approximating most Superlative Meaning of most What About Counting?

More information

Improved Effects of Word-Retrieval Treatments Subsequent to Addition of the Orthographic Form

Improved Effects of Word-Retrieval Treatments Subsequent to Addition of the Orthographic Form Orthographic Form 1 Improved Effects of Word-Retrieval Treatments Subsequent to Addition of the Orthographic Form The development and testing of word-retrieval treatments for aphasia has generally focused

More information

Using focal point learning to improve human machine tacit coordination

Using focal point learning to improve human machine tacit coordination DOI 10.1007/s10458-010-9126-5 Using focal point learning to improve human machine tacit coordination InonZuckerman SaritKraus Jeffrey S. Rosenschein The Author(s) 2010 Abstract We consider an automated

More information

Abstractions and the Brain

Abstractions and the Brain Abstractions and the Brain Brian D. Josephson Department of Physics, University of Cambridge Cavendish Lab. Madingley Road Cambridge, UK. CB3 OHE bdj10@cam.ac.uk http://www.tcm.phy.cam.ac.uk/~bdj10 ABSTRACT

More information

A Version Space Approach to Learning Context-free Grammars

A Version Space Approach to Learning Context-free Grammars Machine Learning 2: 39~74, 1987 1987 Kluwer Academic Publishers, Boston - Manufactured in The Netherlands A Version Space Approach to Learning Context-free Grammars KURT VANLEHN (VANLEHN@A.PSY.CMU.EDU)

More information

Shared Mental Models

Shared Mental Models Shared Mental Models A Conceptual Analysis Catholijn M. Jonker 1, M. Birna van Riemsdijk 1, and Bas Vermeulen 2 1 EEMCS, Delft University of Technology, Delft, The Netherlands {m.b.vanriemsdijk,c.m.jonker}@tudelft.nl

More information

Cooperative evolutive concept learning: an empirical study

Cooperative evolutive concept learning: an empirical study Cooperative evolutive concept learning: an empirical study Filippo Neri University of Piemonte Orientale Dipartimento di Scienze e Tecnologie Avanzate Piazza Ambrosoli 5, 15100 Alessandria AL, Italy Abstract

More information

Organizational Knowledge Distribution: An Experimental Evaluation

Organizational Knowledge Distribution: An Experimental Evaluation Association for Information Systems AIS Electronic Library (AISeL) AMCIS 24 Proceedings Americas Conference on Information Systems (AMCIS) 12-31-24 : An Experimental Evaluation Surendra Sarnikar University

More information

A Data Fusion Model for Location Estimation in Construction

A Data Fusion Model for Location Estimation in Construction 26th International Symposium on Automation and Robotics in Construction (ISARC 2009) A Data Fusion Model for Location Estimation in Construction S.N.Razavi 1 and C.T.Hass 2 1 PhD Candidate, Department

More information

Modeling user preferences and norms in context-aware systems

Modeling user preferences and norms in context-aware systems Modeling user preferences and norms in context-aware systems Jonas Nilsson, Cecilia Lindmark Jonas Nilsson, Cecilia Lindmark VT 2016 Bachelor's thesis for Computer Science, 15 hp Supervisor: Juan Carlos

More information

Evaluating the Effectiveness of Mindmapping in Generating Domain Ontologies using OntoREM: The MASCOT Case Study

Evaluating the Effectiveness of Mindmapping in Generating Domain Ontologies using OntoREM: The MASCOT Case Study Evaluating the Effectiveness of Mindmapping in Generating Domain Ontologies using OntoREM: The MASCOT Case Study Kelly Antonini University of the West of England, UK kelani3@virgilio.it Dr. Mario Kossmann

More information

Using AMT & SNOMED CT-AU to support clinical research

Using AMT & SNOMED CT-AU to support clinical research Using AMT & SNOMED CT-AU to support clinical research Simon J. McBRIDE, Michael J. LAWLEY, Hugo LEROUX and Simon GIBSON CSIRO Australian E-Health Research Centre 2 August 2012 PREVENTATIVE HEALTH FLAGSHIP

More information

Compositional Semantics

Compositional Semantics Compositional Semantics CMSC 723 / LING 723 / INST 725 MARINE CARPUAT marine@cs.umd.edu Words, bag of words Sequences Trees Meaning Representing Meaning An important goal of NLP/AI: convert natural language

More information

The IDN Variant Issues Project: A Study of Issues Related to the Delegation of IDN Variant TLDs. 20 April 2011

The IDN Variant Issues Project: A Study of Issues Related to the Delegation of IDN Variant TLDs. 20 April 2011 The IDN Variant Issues Project: A Study of Issues Related to the Delegation of IDN Variant TLDs 20 April 2011 Project Proposal updated based on comments received during the Public Comment period held from

More information

Type Theory and Universal Grammar

Type Theory and Universal Grammar Type Theory and Universal Grammar Aarne Ranta Department of Computer Science and Engineering Chalmers University of Technology and Göteborg University Abstract. The paper takes a look at the history of

More information

A simulated annealing and hill-climbing algorithm for the traveling tournament problem

A simulated annealing and hill-climbing algorithm for the traveling tournament problem European Journal of Operational Research xxx (2005) xxx xxx Discrete Optimization A simulated annealing and hill-climbing algorithm for the traveling tournament problem A. Lim a, B. Rodrigues b, *, X.

More information

Basic Parsing with Context-Free Grammars. Some slides adapted from Julia Hirschberg and Dan Jurafsky 1

Basic Parsing with Context-Free Grammars. Some slides adapted from Julia Hirschberg and Dan Jurafsky 1 Basic Parsing with Context-Free Grammars Some slides adapted from Julia Hirschberg and Dan Jurafsky 1 Announcements HW 2 to go out today. Next Tuesday most important for background to assignment Sign up

More information

Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation

Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation Vivek Kumar Rangarajan Sridhar, John Chen, Srinivas Bangalore, Alistair Conkie AT&T abs - Research 180 Park Avenue, Florham Park,

More information

Evolution of Symbolisation in Chimpanzees and Neural Nets

Evolution of Symbolisation in Chimpanzees and Neural Nets Evolution of Symbolisation in Chimpanzees and Neural Nets Angelo Cangelosi Centre for Neural and Adaptive Systems University of Plymouth (UK) a.cangelosi@plymouth.ac.uk Introduction Animal communication

More information

Version Space. Term 2012/2013 LSI - FIB. Javier Béjar cbea (LSI - FIB) Version Space Term 2012/ / 18

Version Space. Term 2012/2013 LSI - FIB. Javier Béjar cbea (LSI - FIB) Version Space Term 2012/ / 18 Version Space Javier Béjar cbea LSI - FIB Term 2012/2013 Javier Béjar cbea (LSI - FIB) Version Space Term 2012/2013 1 / 18 Outline 1 Learning logical formulas 2 Version space Introduction Search strategy

More information

FIGURE IT OUT! MIDDLE SCHOOL TASKS. Texas Performance Standards Project

FIGURE IT OUT! MIDDLE SCHOOL TASKS. Texas Performance Standards Project FIGURE IT OUT! MIDDLE SCHOOL TASKS π 3 cot(πx) a + b = c sinθ MATHEMATICS 8 GRADE 8 This guide links the Figure It Out! unit to the Texas Essential Knowledge and Skills (TEKS) for eighth graders. Figure

More information

From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design

From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design Rachel Baker From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design Organised session: Neil McHugh, Job van Exel Session outline

More information

Visual CP Representation of Knowledge

Visual CP Representation of Knowledge Visual CP Representation of Knowledge Heather D. Pfeiffer and Roger T. Hartley Department of Computer Science New Mexico State University Las Cruces, NM 88003-8001, USA email: hdp@cs.nmsu.edu and rth@cs.nmsu.edu

More information

A Topic Maps-based ontology IR system versus Clustering-based IR System: A Comparative Study in Security Domain

A Topic Maps-based ontology IR system versus Clustering-based IR System: A Comparative Study in Security Domain A Topic Maps-based ontology IR system versus Clustering-based IR System: A Comparative Study in Security Domain Myongho Yi 1 and Sam Gyun Oh 2* 1 School of Library and Information Studies, Texas Woman

More information

POWLA: Modeling linguistic corpora in OWL/DL

POWLA: Modeling linguistic corpora in OWL/DL POWLA: Modeling linguistic corpora in OWL/DL Christian Chiarcos Information Sciences Institute, University of Southern California, 4676 Admiralty Way # 1001, Marina del Rey, CA 90292 chiarcos@daad-alumni.de

More information

Syntax Parsing 1. Grammars and parsing 2. Top-down and bottom-up parsing 3. Chart parsers 4. Bottom-up chart parsing 5. The Earley Algorithm

Syntax Parsing 1. Grammars and parsing 2. Top-down and bottom-up parsing 3. Chart parsers 4. Bottom-up chart parsing 5. The Earley Algorithm Syntax Parsing 1. Grammars and parsing 2. Top-down and bottom-up parsing 3. Chart parsers 4. Bottom-up chart parsing 5. The Earley Algorithm syntax: from the Greek syntaxis, meaning setting out together

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

eportfolio Assessment of General Education

eportfolio Assessment of General Education eportfolio Assessment of General Education Pages from the eportfolios of Matthew Potts and Adam Eli Spikell. Used with Permission. Table of Contents Section Page Methods 2 Results--Quantitative Literacy

More information

Machine Learning from Garden Path Sentences: The Application of Computational Linguistics

Machine Learning from Garden Path Sentences: The Application of Computational Linguistics Machine Learning from Garden Path Sentences: The Application of Computational Linguistics http://dx.doi.org/10.3991/ijet.v9i6.4109 J.L. Du 1, P.F. Yu 1 and M.L. Li 2 1 Guangdong University of Foreign Studies,

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

Cross-Media Knowledge Extraction in the Car Manufacturing Industry

Cross-Media Knowledge Extraction in the Car Manufacturing Industry Cross-Media Knowledge Extraction in the Car Manufacturing Industry José Iria The University of Sheffield 211 Portobello Street Sheffield, S1 4DP, UK j.iria@sheffield.ac.uk Spiros Nikolopoulos ITI-CERTH

More information

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System QuickStroke: An Incremental On-line Chinese Handwriting Recognition System Nada P. Matić John C. Platt Λ Tony Wang y Synaptics, Inc. 2381 Bering Drive San Jose, CA 95131, USA Abstract This paper presents

More information

Courses in English. Application Development Technology. Artificial Intelligence. 2017/18 Spring Semester. Database access

Courses in English. Application Development Technology. Artificial Intelligence. 2017/18 Spring Semester. Database access The courses availability depends on the minimum number of registered students (5). If the course couldn t start, students can still complete it in the form of project work and regular consultations with

More information

The Interface between Phrasal and Functional Constraints

The Interface between Phrasal and Functional Constraints The Interface between Phrasal and Functional Constraints John T. Maxwell III* Xerox Palo Alto Research Center Ronald M. Kaplan t Xerox Palo Alto Research Center Many modern grammatical formalisms divide

More information

Introduction to HPSG. Introduction. Historical Overview. The HPSG architecture. Signature. Linguistic Objects. Descriptions.

Introduction to HPSG. Introduction. Historical Overview. The HPSG architecture. Signature. Linguistic Objects. Descriptions. to as a linguistic theory to to a member of the family of linguistic frameworks that are called generative grammars a grammar which is formalized to a high degree and thus makes exact predictions about

More information

Linking the Ohio State Assessments to NWEA MAP Growth Tests *

Linking the Ohio State Assessments to NWEA MAP Growth Tests * Linking the Ohio State Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. August 2016 Introduction Northwest Evaluation Association (NWEA

More information

- «Crede Experto:,,,». 2 (09) (http://ce.if-mstuca.ru) '36

- «Crede Experto:,,,». 2 (09) (http://ce.if-mstuca.ru) '36 - «Crede Experto:,,,». 2 (09). 2016 (http://ce.if-mstuca.ru) 811.512.122'36 Ш163.24-2 505.. е е ы, Қ х Ц Ь ғ ғ ғ,,, ғ ғ ғ, ғ ғ,,, ғ че ые :,,,, -, ғ ғ ғ, 2016 D. A. Alkebaeva Almaty, Kazakhstan NOUTIONS

More information

Foundations of Knowledge Representation in Cyc

Foundations of Knowledge Representation in Cyc Foundations of Knowledge Representation in Cyc Why use logic? CycL Syntax Collections and Individuals (#$isa and #$genls) Microtheories This is an introduction to the foundations of knowledge representation

More information

Evolution of Collective Commitment during Teamwork

Evolution of Collective Commitment during Teamwork Fundamenta Informaticae 56 (2003) 329 371 329 IOS Press Evolution of Collective Commitment during Teamwork Barbara Dunin-Kȩplicz Institute of Informatics, Warsaw University Banacha 2, 02-097 Warsaw, Poland

More information

Outline. Web as Corpus. Using Web Data for Linguistic Purposes. Ines Rehbein. NCLT, Dublin City University. nclt

Outline. Web as Corpus. Using Web Data for Linguistic Purposes. Ines Rehbein. NCLT, Dublin City University. nclt Outline Using Web Data for Linguistic Purposes NCLT, Dublin City University Outline Outline 1 Corpora as linguistic tools 2 Limitations of web data Strategies to enhance web data 3 Corpora as linguistic

More information

Ph.D in Advance Machine Learning (computer science) PhD submitted, degree to be awarded on convocation, sept B.Tech in Computer science and

Ph.D in Advance Machine Learning (computer science) PhD submitted, degree to be awarded on convocation, sept B.Tech in Computer science and Name Qualification Sonia Thomas Ph.D in Advance Machine Learning (computer science) PhD submitted, degree to be awarded on convocation, sept. 2016. M.Tech in Computer science and Engineering. B.Tech in

More information

Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape

Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape Koshi Odagiri 1, and Yoichi Muraoka 1 1 Graduate School of Fundamental/Computer Science and Engineering, Waseda University,

More information

Analysis of Hybrid Soft and Hard Computing Techniques for Forex Monitoring Systems

Analysis of Hybrid Soft and Hard Computing Techniques for Forex Monitoring Systems Analysis of Hybrid Soft and Hard Computing Techniques for Forex Monitoring Systems Ajith Abraham School of Business Systems, Monash University, Clayton, Victoria 3800, Australia. Email: ajith.abraham@ieee.org

More information

INPE São José dos Campos

INPE São José dos Campos INPE-5479 PRE/1778 MONLINEAR ASPECTS OF DATA INTEGRATION FOR LAND COVER CLASSIFICATION IN A NEDRAL NETWORK ENVIRONNENT Maria Suelena S. Barros Valter Rodrigues INPE São José dos Campos 1993 SECRETARIA

More information

Achim Stein: Diachronic Corpora Aston Corpus Summer School 2011

Achim Stein: Diachronic Corpora Aston Corpus Summer School 2011 Achim Stein: Diachronic Corpora Aston Corpus Summer School 2011 Achim Stein achim.stein@ling.uni-stuttgart.de Institut für Linguistik/Romanistik Universität Stuttgart 2nd of August, 2011 1 Installation

More information

The Impact of Formative Assessment and Remedial Teaching on EFL Learners Listening Comprehension N A H I D Z A R E I N A S TA R A N YA S A M I

The Impact of Formative Assessment and Remedial Teaching on EFL Learners Listening Comprehension N A H I D Z A R E I N A S TA R A N YA S A M I The Impact of Formative Assessment and Remedial Teaching on EFL Learners Listening Comprehension N A H I D Z A R E I N A S TA R A N YA S A M I Formative Assessment The process of seeking and interpreting

More information

Section 3.4. Logframe Module. This module will help you understand and use the logical framework in project design and proposal writing.

Section 3.4. Logframe Module. This module will help you understand and use the logical framework in project design and proposal writing. Section 3.4 Logframe Module This module will help you understand and use the logical framework in project design and proposal writing. THIS MODULE INCLUDES: Contents (Direct links clickable belo[abstract]w)

More information

A Bayesian Learning Approach to Concept-Based Document Classification

A Bayesian Learning Approach to Concept-Based Document Classification Databases and Information Systems Group (AG5) Max-Planck-Institute for Computer Science Saarbrücken, Germany A Bayesian Learning Approach to Concept-Based Document Classification by Georgiana Ifrim Supervisors

More information

Evolution in Paradise

Evolution in Paradise Evolution in Paradise Engaging science lessons for middle and high school brought to you by BirdSleuth K-12 and the most extravagant birds in the world! The Evolution in Paradise lesson series is part

More information

Word Segmentation of Off-line Handwritten Documents

Word Segmentation of Off-line Handwritten Documents Word Segmentation of Off-line Handwritten Documents Chen Huang and Sargur N. Srihari {chuang5, srihari}@cedar.buffalo.edu Center of Excellence for Document Analysis and Recognition (CEDAR), Department

More information

Role Models, the Formation of Beliefs, and Girls Math. Ability: Evidence from Random Assignment of Students. in Chinese Middle Schools

Role Models, the Formation of Beliefs, and Girls Math. Ability: Evidence from Random Assignment of Students. in Chinese Middle Schools Role Models, the Formation of Beliefs, and Girls Math Ability: Evidence from Random Assignment of Students in Chinese Middle Schools Alex Eble and Feng Hu February 2017 Abstract This paper studies the

More information

Knowledge based expert systems D H A N A N J A Y K A L B A N D E

Knowledge based expert systems D H A N A N J A Y K A L B A N D E Knowledge based expert systems D H A N A N J A Y K A L B A N D E What is a knowledge based system? A Knowledge Based System or a KBS is a computer program that uses artificial intelligence to solve problems

More information

Adaptation Criteria for Preparing Learning Material for Adaptive Usage: Structured Content Analysis of Existing Systems. 1

Adaptation Criteria for Preparing Learning Material for Adaptive Usage: Structured Content Analysis of Existing Systems. 1 Adaptation Criteria for Preparing Learning Material for Adaptive Usage: Structured Content Analysis of Existing Systems. 1 Stefan Thalmann Innsbruck University - School of Management, Information Systems,

More information

Lecture Notes on Mathematical Olympiad Courses

Lecture Notes on Mathematical Olympiad Courses Lecture Notes on Mathematical Olympiad Courses For Junior Section Vol. 2 Mathematical Olympiad Series ISSN: 1793-8570 Series Editors: Lee Peng Yee (Nanyang Technological University, Singapore) Xiong Bin

More information

Building a Semantic Role Labelling System for Vietnamese

Building a Semantic Role Labelling System for Vietnamese Building a emantic Role Labelling ystem for Vietnamese Thai-Hoang Pham FPT University hoangpt@fpt.edu.vn Xuan-Khoai Pham FPT University khoaipxse02933@fpt.edu.vn Phuong Le-Hong Hanoi University of cience

More information

Learning to Schedule Straight-Line Code

Learning to Schedule Straight-Line Code Learning to Schedule Straight-Line Code Eliot Moss, Paul Utgoff, John Cavazos Doina Precup, Darko Stefanović Dept. of Comp. Sci., Univ. of Mass. Amherst, MA 01003 Carla Brodley, David Scheeff Sch. of Elec.

More information

stateorvalue to each variable in a given set. We use p(x = xjy = y) (or p(xjy) as a shorthand) to denote the probability that X = x given Y = y. We al

stateorvalue to each variable in a given set. We use p(x = xjy = y) (or p(xjy) as a shorthand) to denote the probability that X = x given Y = y. We al Dependency Networks for Collaborative Filtering and Data Visualization David Heckerman, David Maxwell Chickering, Christopher Meek, Robert Rounthwaite, Carl Kadie Microsoft Research Redmond WA 98052-6399

More information

Prediction of Maximal Projection for Semantic Role Labeling

Prediction of Maximal Projection for Semantic Role Labeling Prediction of Maximal Projection for Semantic Role Labeling Weiwei Sun, Zhifang Sui Institute of Computational Linguistics Peking University Beijing, 100871, China {ws, szf}@pku.edu.cn Haifeng Wang Toshiba

More information

Mining Association Rules in Student s Assessment Data

Mining Association Rules in Student s Assessment Data www.ijcsi.org 211 Mining Association Rules in Student s Assessment Data Dr. Varun Kumar 1, Anupama Chadha 2 1 Department of Computer Science and Engineering, MVN University Palwal, Haryana, India 2 Anupama

More information

Language Acquisition Fall 2010/Winter Lexical Categories. Afra Alishahi, Heiner Drenhaus

Language Acquisition Fall 2010/Winter Lexical Categories. Afra Alishahi, Heiner Drenhaus Language Acquisition Fall 2010/Winter 2011 Lexical Categories Afra Alishahi, Heiner Drenhaus Computational Linguistics and Phonetics Saarland University Children s Sensitivity to Lexical Categories Look,

More information

Analysis of Probabilistic Parsing in NLP

Analysis of Probabilistic Parsing in NLP Analysis of Probabilistic Parsing in NLP Krishna Karoo, Dr.Girish Katkar Research Scholar, Department of Electronics & Computer Science, R.T.M. Nagpur University, Nagpur, India Head of Department, Department

More information

A Case Study: News Classification Based on Term Frequency

A Case Study: News Classification Based on Term Frequency A Case Study: News Classification Based on Term Frequency Petr Kroha Faculty of Computer Science University of Technology 09107 Chemnitz Germany kroha@informatik.tu-chemnitz.de Ricardo Baeza-Yates Center

More information

Speech Emotion Recognition Using Support Vector Machine

Speech Emotion Recognition Using Support Vector Machine Speech Emotion Recognition Using Support Vector Machine Yixiong Pan, Peipei Shen and Liping Shen Department of Computer Technology Shanghai JiaoTong University, Shanghai, China panyixiong@sjtu.edu.cn,

More information

Department of Anthropology ANTH 1027A/001: Introduction to Linguistics Dr. Olga Kharytonava Course Outline Fall 2017

Department of Anthropology ANTH 1027A/001: Introduction to Linguistics Dr. Olga Kharytonava Course Outline Fall 2017 Department of Anthropology ANTH 1027A/001: Introduction to Linguistics Dr. Olga Kharytonava Course Outline Fall 2017 Lectures: Tuesdays 11:30 am - 1:30 pm, SEB-1059 Tutorials: Thursdays: Section 002 2:30-3:30pm

More information

Thank you letters to teachers >>>CLICK HERE<<<

Thank you letters to teachers >>>CLICK HERE<<< Thank you letters to teachers >>>CLICK HERE

More information

Parsing of part-of-speech tagged Assamese Texts

Parsing of part-of-speech tagged Assamese Texts IJCSI International Journal of Computer Science Issues, Vol. 6, No. 1, 2009 ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 28 Parsing of part-of-speech tagged Assamese Texts Mirzanur Rahman 1, Sufal

More information

This scope and sequence assumes 160 days for instruction, divided among 15 units.

This scope and sequence assumes 160 days for instruction, divided among 15 units. In previous grades, students learned strategies for multiplication and division, developed understanding of structure of the place value system, and applied understanding of fractions to addition and subtraction

More information

CS 446: Machine Learning

CS 446: Machine Learning CS 446: Machine Learning Introduction to LBJava: a Learning Based Programming Language Writing classifiers Christos Christodoulopoulos Parisa Kordjamshidi Motivation 2 Motivation You still have not learnt

More information