Skip to content

Instantly share code, notes, and snippets.

@matthewjwolff
Created October 17, 2016 22:02
Show Gist options
  • Save matthewjwolff/b577536ace0168d43a6bdc5a6c1140a5 to your computer and use it in GitHub Desktop.
Save matthewjwolff/b577536ace0168d43a6bdc5a6c1140a5 to your computer and use it in GitHub Desktop.
CSC4444 Fall 2016 Midterm review for Jianhua Chen

AI Midterm Review

Things on Exam

  • Tracing A*
  • Homework things

Textbook

  1. Intro to AI (+ cognitive computing) - Chapter 1-2
  2. Search and problem solving - Chapter 3-5
  3. Knowledge representation & Logic-based agent, propositional logic - Chapter 7

Part 1: Intro

  • What is AI? What is intelligence in general? - Think & act, humanly & rationally
  • Turing test

Chapter 2: Agents

An agent is a program in an architecture (that represents the environment). It has:

  • Performance
  • Environment
  • Actuators
  • Sensors

A rational agent does the right thing: it maximizes (expected) performance measure

The *environment*
  • Fully observable or partially observable
  • Deterministic (fully predictable) / stochastic
  • static / dynamic
  • episodic / sequential
  • discrete / continuous
  • single-agent / multi-agent
*Types of Agents* (homework 1)
  • Simple reflex agent (with/without randomness)
  • model-based agent (reflex agent with states)
  • goal-oriented agent
  • utility-based agent
  • learning agent

Will an agent be rational or not based on problem?

Part 2: Search and problem solving

Chapter 3: Problem solving as search

How to formulate a problem:
  1. States
  2. Actions
  3. Transition model (results)
  4. Initial State
  5. Goal Test
  6. Cost function

As a 6-tuple: <S, A, Tr_Model, Is, Goal_test, g>

Listing states:
  • Complete state formulation (all legal states)
  • Incremental formulation (all reachable states) - Initial state => actions => transitions => goal-test => cost function

Chapter 4: Search Algorithms

Types of algorithms:
  • Blind search algorithms (uninformed) - Breadth-first search (complete, optimal if step cost is constant,

    exponential space complexity, frontier is a queue)

    • Depth-first search (linear space complexity, not complete for graphs, not optimal, frontier is a stack)
    • Iterative deepening search
    • Uniform cost search: expand node in frontier with least cost
  • Heuristic search algorithms

Know limitations and advantages of each algorithm

Evaluation of search algorithms:
  • Completeness (will it find a solution if one exists?)
  • Optimality (will it find the best solution?)
  • Time complexity
  • Space (memory) complexity
Properties of search algorithms
  • b branching factor, the number of successor nodes of a node in search tree
  • d depth of the shallowest goal state node
  • m the maximal depth of search tree, could be INF
The search tree
  • Different from state space (states can be repeated)
Tree search vs. Graph Search
  • Graph search does not add nodes to frontier if it is already in the frontier or explored - frontier leaf nodes - explored seet internal nodes
Heuristic search algorithms
  • Best-first search: choose cheapest f(n)
  • Greedy best-first search: choose quickest path to goal f(n) = h(n)
  • A* f(n) = g(n) + h(n) - Uniform cost is a special case of A*, when h(n)=0 - Optimal for tree search if h is admissible - Optimal for graph search if h is consistent
Heuristics
  • Admissible: estimation is always at most the true cost h(n) <= h*(n)
  • Consistent: h(n) <= c(n,a,n') + h(n')
  • Consistency implies admissibility, but not the other way around
How to obtain heuristic functions for problems
  • An optimal solution for a relaxed problem is a heuristic for the original
  • Maximum of set of other heuristic functions
  • Use learning and pattern database

Trace AStar

Chapter 4: Beyond Classical Search

Local (greedy) search & variants
  • Searching for a state x which maximizes a function f

  • Advantages: quick & cheap, produces reasonable quality results

  • Disadvantages: not optimal

  • Variants - Stochastic Hillclimbing (add in some randomness) - first-choice hillclimbing - random-restart hillcimbing (choose a random starting point, possibly

    with multiple runs comparing the best)

Chapter 5: Minimax and alpha-beta pruning

Chapter 7: Propositional logic

  • Modeling of English statements into propositional logic formulas
  • Convert into clausal form
  • perform resolution to prove entailment - KB |= alpha => negate alpha, put ~a into clausal form - KB AND ~a is unsatisfiable - resolution from clauses for KB AND ~a to derive the empty clause
  • DPLL algorithm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment