2/24/2019.

Slides:



Advertisements
Similar presentations
1 Probability and the Web Ken Baclawski Northeastern University VIStology, Inc.
Advertisements

Pat Langley Computational Learning Laboratory Center for the Study of Language and Information Stanford University, Stanford, California
Big Ideas in Cmput366. Search Blind Search State space representation Iterative deepening Heuristic Search A*, f(n)=g(n)+h(n), admissible heuristics Local.
Rulebase Expert System and Uncertainty. Rule-based ES Rules as a knowledge representation technique Type of rules :- relation, recommendation, directive,
Weka. Preprocessing Opening a file Editing a file Visualize a variable.
An Introduction to Artificial Intelligence. Introduction Getting machines to “think”. Imitation game and the Turing test. Chinese room test. Key processes.
OMEN: A Probabilistic Ontology Mapping Tool Mitra et al.
Breadth First Search
1 Chapter 12 Probabilistic Reasoning and Bayesian Belief Networks.
1 5.0 Expert Systems Outline 5.1 Introduction 5.2 Rules for Knowledge Representation 5.3 Types of rules 5.4 Rule-based systems 5.5 Reasoning approaches.
Artificial Intelligence and Lisp Lecture 13 Additional Topics in Artificial Intelligence LiU Course TDDC65 Autumn Semester, 2010
1 Chapter 9 Rules and Expert Systems. 2 Chapter 9 Contents (1) l Rules for Knowledge Representation l Rule Based Production Systems l Forward Chaining.
Semantics For the Semantic Web: The Implicit, the Formal and The Powerful Amit Sheth, Cartic Ramakrishnan, Christopher Thomas CS751 Spring 2005 Presenter:
02 -1 Lecture 02 Agent Technology Topics –Introduction –Agent Reasoning –Agent Learning –Ontology Engineering –User Modeling –Mobile Agents –Multi-Agent.
Chapter 4: Reasoning Under Uncertainty
Knowledge Acquisition. Concepts of Knowledge Engineering Knowledge engineering The engineering discipline in which knowledge is integrated into computer.
Artificial Intelligence Dr. Paul Wagner Department of Computer Science University of Wisconsin – Eau Claire.
 Define A.I and discuss its application areas in detail.  Explain Turing test. why it is not justifiable to use it to test whether the machine is intelligent.
Notes for Chapter 12 Logic Programming The AI War Basic Concepts of Logic Programming Prolog Review questions.
CS62S: Expert Systems Based on: The Engineering of Knowledge-based Systems: Theory and Practice A. J. Gonzalez and D. D. Dankel.
B. Ross Cosc 4f79 1 Commercial tools Size of system: –small systems 400 rules single user, PC based –larger systems narrow, problem-type specific or hybrid.
Abdul Rahim Ahmad MITM 613 Intelligent System Chapter 0: Introduction.
Abdul Rahim Ahmad MITM 613 Intelligent System Chapter 1: Introduction To Intelligent Systems.
School of Computer Science and Technology, Tianjin University
Introduction to Artificial Intelligence and Soft Computing
 Dr. Syed Noman Hasany 1.  Review of known methodologies  Analysis of software requirements  Real-time software  Software cost, quality, testing.
1 2010/2011 Semester 2 Introduction: Chapter 1 ARTIFICIAL INTELLIGENCE.
ES component and structure Dr. Ahmed Elfaig The production system or rule-based system has three main component and subcomponents shown in Figure 1. 1.Knowledge.
The AI War LISP and Prolog Basic Concepts of Logic Programming
1 Chapter 12 Probabilistic Reasoning and Bayesian Belief Networks.
Majid Sazvar Knowledge Engineering Research Group Ferdowsi University of Mashhad Semantic Web Reasoning.
Intelligent Control Methods Lecture 7: Knowledge representation Slovak University of Technology Faculty of Material Science and Technology in Trnava.
KNOWLEDGE BASED SYSTEMS
1 Knowledge Based Systems (CM0377) Introductory lecture (Last revised 28th January 2002)
CSE & CSE6002E - Soft Computing Winter Semester, 2011 Course Review.
DEDUCTION PRINCIPLES AND STRATEGIES FOR SEMANTIC WEB Chain resolution and its fuzzyfication Dr. Hashim Habiballa University of Ostrava.
Invitation to Computer Science, Java Version, Second Edition 1 Logic Programming Logic programming  Various facts are asserted to be true  On the basis.
Abdul Rahim Ahmad MITM 613 Intelligent System Chapter 10: Tools.
From NARS to a Thinking Machine Pei Wang Temple University.
On Abductive Equivalence Katsumi Inoue National Institute of Informatics Chiaki Sakama Wakayama University MBR
COMPUTER SYSTEM FUNDAMENTAL Genetic Computer School INTRODUCTION TO ARTIFICIAL INTELLIGENCE LESSON 11.
Definition and Technologies Knowledge Representation.
Introduction to Artificial Intelligence Heshaam Faili University of Tehran.
EXPERT SYSTEMS.
Artificial Intelligence
Chapter 11: Artificial Intelligence
Artificial intelligence (AI)
© r. born.
Chapter 9. Rules and Expert Systems
Artificial Intelligence (AI)
TECHNOLOGY GUIDE FOUR Intelligent Systems.
Artificial Intelligence and Lisp Lecture 13 Additional Topics in Artificial Intelligence LiU Course TDDC65 Autumn Semester,
Knowledge Representation
EXPERT SYSTEMS.
النظم الخبيرة Expert Systems (ES)
Artificial Intelligence (AI)
Probabilistic Horn abduction and Bayesian Networks
Introduction to Artificial Intelligence and Soft Computing
Knowledge Representation and Inference
Logic for Artificial Intelligence
Chapter 9. Rules and Expert Systems
2004: Topics Covered in COSC 6368
Social Abstractions for Information agents
A task of induction to find patterns
Subject : Artificial Intelligence
Deniz Beser A Fundamental Tradeoff in Knowledge Representation and Reasoning Hector J. Levesque and Ronald J. Brachman.
A task of induction to find patterns
8/2/2019.
Chapter 14 February 26, 2004.
Artificial Intelligence
Presentation transcript:

2/24/2019

Subfields (sub)symbolic Bayes rules Expert systems Hybrid systems Rules Agents Learning 2/24/2019

Rules If condition1 and condition2 then Consequence Inference engine, lists of rules (knowledge base), data (database), knowledge encapsulation, explanation, user Rule chaning – foreward, backward, combinations Deduction, abduction, induction Semantic networks, objects, frames, trees, ontologies 2/24/2019

+ some concepts Declarative-procedural programming Search: depth-first, breadth-first, beam-search, alfa-beta, A* Meta- Progaming languages: Prolog, Logo, Lisp ... Logic – closed world 2/24/2019

Probabilistic-Bayesian Optimal in theory, in future not P(H|E) = P(H)xP(E|H) / P(E) P(H)xP(E|H) P(H|E) = -------------------------------------- P(H)xP(E|H) + P(~H)xP(E|~H) Likehood ratio, odds O(H) = P(H)/ P(~H) 2/24/2019

Naïve Baesian Classifier P(A1=v1&A2=v2…|C=c) P(C|A)= P(C=c) x --------------------------------- P(A1=v1&A2=v2…) P(A1=v1|C=c)xP(A2=v2|C=c)… 2/24/2019

Baesian Network P(F) = P(F|L,A)P(LΛA) + P(F|¬L,A) P(¬LΛA) + 2/24/2019