Topics Covered since 1st midterm…

Slides:



Advertisements
Similar presentations
Inference in First-Order Logic
Advertisements

Big Ideas in Cmput366. Search Blind Search State space representation Iterative deepening Heuristic Search A*, f(n)=g(n)+h(n), admissible heuristics Local.
Introduction to Theorem Proving
UIUC CS 497: Section EA Lecture #2 Reasoning in Artificial Intelligence Professor: Eyal Amir Spring Semester 2004.
Inference and Reasoning. Basic Idea Given a set of statements, does a new statement logically follow from this. For example If an animal has wings and.
Methods of Proof Chapter 7, second half.. Proof methods Proof methods divide into (roughly) two kinds: Application of inference rules: Legitimate (sound)
Intelligent Systems (AI-2) Computer Science cpsc422, Lecture 20
Rutgers CS440, Fall 2003 Review session. Rutgers CS440, Fall 2003 Topics Final will cover the following topics (after midterm): 1.Uncertainty & introduction.
Methods of Proof Chapter 7, Part II. Proof methods Proof methods divide into (roughly) two kinds: Application of inference rules: Legitimate (sound) generation.
Propositional Logic Reading: C , C Logic: Outline Propositional Logic Inference in Propositional Logic First-order logic.
Logic.
Outline Recap Knowledge Representation I Textbook: Chapters 6, 7, 9 and 10.
Proof methods Proof methods divide into (roughly) two kinds: –Application of inference rules Legitimate (sound) generation of new sentences from old Proof.
Logic in general Logics are formal languages for representing information such that conclusions can be drawn Syntax defines the sentences in the language.
Carla P. Gomes CS4700 CS 4700: Foundations of Artificial Intelligence Carla P. Gomes Exam-Info.
CPSC 322, Lecture 20Slide 1 Propositional Definite Clause Logic: Syntax, Semantics and Bottom-up Proofs Computer Science cpsc322, Lecture 20 (Textbook.
Artificial Intelligence Course review AIMA. Four main themes Problem solving by search Uninformed search Informed search Constraint satisfaction Adversarial.
Cooperating Intelligent Systems Course review AIMA.
CSCI 5582 Fall 2006 CSCI 5582 Artificial Intelligence Lecture 9 Jim Martin.
Computing & Information Sciences Kansas State University Lecture 11 of 42 CIS 530 / 730 Artificial Intelligence Lecture 11 of 42 William H. Hsu Department.
Oregon State University – CS430 Intro to AI (c) 2003 Thomas G. Dietterich and Devika Subramanian1 Reasoning/Inference  Given a set of facts/beliefs/rules/evidence.
Methods of Proof Chapter 7, second half.
Knoweldge Representation & Reasoning
Inference in First-Order Logic
CS 561, Sessions 28 1 Uncertainty Probability Syntax Semantics Inference rules.
Propositional Logic Reasoning correctly computationally Chapter 7 or 8.
Proof Systems KB |- Q iff there is a sequence of wffs D1,..., Dn such that Dn is Q and for each Di in the sequence: a) either Di is in KB or b) Di can.
CS 4100 Artificial Intelligence Prof. C. Hafner Class Notes Jan 19, 2012.
Logical Agents Logic Propositional Logic Summary
Computing & Information Sciences Kansas State University Wednesday, 20 Sep 2006CIS 490 / 730: Artificial Intelligence Lecture 12 of 42 Wednesday, 20 September.
An Introduction to Artificial Intelligence – CE Chapter 7- Logical Agents Ramin Halavati
Unification Algorithm Input: a finite set Σ of simple expressions Output: a mgu for Σ (if Σ is unifiable) 1. Set k = 0 and  0 = . 2. If Σ  k is a singleton,
Computing & Information Sciences Kansas State University Lecture 13 of 42 CIS 530 / 730 Artificial Intelligence Lecture 13 of 42 William H. Hsu Department.
Logical Agents Chapter 7. Knowledge bases Knowledge base (KB): set of sentences in a formal language Inference: deriving new sentences from the KB. E.g.:
1 Logical Agents Chapter 7. 2 A simple knowledge-based agent The agent must be able to: –Represent states, actions, etc. –Incorporate new percepts –Update.
Logical Agents Chapter 7. Outline Knowledge-based agents Logic in general Propositional (Boolean) logic Equivalence, validity, satisfiability.
CS6133 Software Specification and Verification
© Copyright 2008 STI INNSBRUCK Intelligent Systems Propositional Logic.
Inference in First Order Logic. Outline Reducing first order inference to propositional inference Unification Generalized Modus Ponens Forward and backward.
Computing & Information Sciences Kansas State University Lecture 12 of 42 CIS 530 / 730 Artificial Intelligence Lecture 12 of 42 William H. Hsu Department.
1 Propositional Logic Limits The expressive power of propositional logic is limited. The assumption is that everything can be expressed by simple facts.
Logical Agents Chapter 7. Outline Knowledge-based agents Propositional (Boolean) logic Equivalence, validity, satisfiability Inference rules and theorem.
UBC Department of Computer Science Undergraduate Events More
Proof Methods for Propositional Logic CIS 391 – Intro to Artificial Intelligence.
Knowledge Repn. & Reasoning Lecture #9: Propositional Logic UIUC CS 498: Section EA Professor: Eyal Amir Fall Semester 2005.
Announcements  Upcoming due dates  Thursday 10/1 in class Midterm  Coverage: everything in lecture and readings except first-order logic; NOT probability.
Logical Agents. Outline Knowledge-based agents Logic in general - models and entailment Propositional (Boolean) logic Equivalence, validity, satisfiability.
A Brief Introduction to Bayesian networks
EA C461 Artificial Intelligence
Introduction to Logic for Artificial Intelligence Lecture 2
Announcements No office hours today!
CS 4700: Foundations of Artificial Intelligence
Logical Inference: Through Proof to Truth
CS 4/527: Artificial Intelligence
Intelligent Systems (AI-2) Computer Science cpsc422, Lecture 20
Knowledge Representation and Inference
First Order Logic: Logical Inference
CSE 4705 Artificial Intelligence
Artificial Intelligence
Artificial Intelligence: Agents and Propositional Logic.
Artificial Intelligence: Logic agents
CS 416 Artificial Intelligence
Artificial Intelligence
Knowledge Representation I (Propositional Logic)
CS 188: Artificial Intelligence
Computer Science cpsc322, Lecture 20
Methods of Proof Chapter 7, second half.
Warm-up as you walk in Each node in a Bayes net represents a conditional probability distribution. What distribution do you get when you multiply all of.
Chapter 14 February 26, 2004.
Presentation transcript:

Topics Covered since 1st midterm… CSE 391 Fall 2008

Probability: Topics to Know Chain rule Bayes’ rule Axioms Why conditional independence is important and useful CIS 391 - Intro to AI

Probability: Skills you should have Convert a problem to a solvable form using Bayes’ Rule Given a joint distribution, answer questions about it Given a situation, build a Bayes network for it with observed, hidden and evidence variables, explaining why you make the independence assumptions you do, and show the CPTs Determine whether various things are independent or conditionally independent of each other Apply the Naïve Bayes algorithm to a very small example Map a Naïve Bayes problem into an appropriate Bayes network Do a step of the Viterbi algorithm on a very small example Explain the Forward Algorithm and the Backward Algorithm CIS 391 - Intro to AI

Perceptrons and SVMs Topics to Know: Perceptrons, (averaged perceptrons, voted perceptrons, MIRA) : what they are, and why you might want to use each of them Understand what the limits of perceptrons are Understanding “margin” How linear classifiers can be used to create non-linear classification boundaries Skills you should have: Perform a perceptron update step CIS 391 - Intro to AI

Logic: Topics to Know Syntax/Semantics distinction Models and entailment Soundness and completeness of inference procedures Syntax and semantics of propositional logic Validity and satisfiability (WalkSAT) Syntax and semantics of first-order logic Objects, relations and functions in FOL Common mistakes to avoid with quantifiers from FOL lecture (Universal and existential instantiation, and the relationship of the resulting knowledge bases to the original) (Unification) CIS 391 - Intro to AI

Logic: Skills you should have Is proposition P entailed by a knowledge base? Model-checking by hand Write out a truth table Exercises using important rules to know – e.g. de Morgan’s laws Converting statements into Conjunctive Normal Form Resolution Refutation Forward and backward chaining Representing a problem in propositional (or first-order) logic (Unification) CIS 391 - Intro to AI