CPSC 322, Lecture 7Slide 1 Heuristic Search Computer Science cpsc322, Lecture 7 (Textbook Chpt 3.5) January, 19, 2009.

Slides:



Advertisements
Similar presentations
Lecture Notes on AI-NN Chapter 5 Information Processing & Utilization.
Advertisements

Informed search algorithms
and 6.855J Cycle Canceling Algorithm. 2 A minimum cost flow problem , $4 20, $1 20, $2 25, $2 25, $5 20, $6 30, $
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Heuristic Search Russell and Norvig: Chapter 4 Slides adapted from:
Chapter 4: Informed Heuristic Search
Heuristic Search The search techniques we have seen so far...
Lights Out Issues Questions? Comment from me.
Informed Search CS 171/271 (Chapter 4)
CMSC 471 Fall 2002 Class #5-6 – Monday, September 16 / Wednesday, September 18.
Heuristic Functions By Peter Lane
Informed search algorithms
Review: Search problem formulation
Heuristic Search. Best First Search A* Heuristic Search Heuristic search exploits additional knowledge about the problem that helps direct search to.
Informed Search Algorithms
Heuristic Search Ref: Chapter 4.
ABC Technology Project
1 Undirected Breadth First Search F A BCG DE H 2 F A BCG DE H Queue: A get Undiscovered Fringe Finished Active 0 distance from A visit(A)
1 Breadth First Search s s Undiscovered Discovered Finished Queue: s Top of queue 2 1 Shortest path from s.
Lecture 4: Informed/Heuristic Search
Informed search strategies
Informed Search Problems
Informed search algorithms
Squares and Square Root WALK. Solve each problem REVIEW:
© 2012 National Heart Foundation of Australia. Slide 2.
An Introduction to Artificial Intelligence
25 seconds left…...
The A* Algorithm Héctor Muñoz-Avila. The Search Problem Starting from a node n find the shortest path to a goal node g ?
A* Search. 2 Tree search algorithms Basic idea: Exploration of state space by generating successors of already-explored states (a.k.a.~expanding states).
Week 1.
Problem Solving: Informed Search Algorithms Edmondo Trentin, DIISM.
We will resume in: 25 Minutes.
Local Search Jim Little UBC CS 322 – CSP October 3, 2014 Textbook §4.8
CPSC 322, Lecture 14Slide 1 Local Search Computer Science cpsc322, Lecture 14 (Textbook Chpt 4.8) Oct, 5, 2012.
CPSC 322, Lecture 5Slide 1 Uninformed Search Computer Science cpsc322, Lecture 5 (Textbook Chpt 3.5) Sept, 14, 2012.
Heuristic Search Jim Little UBC CS 322 – Search 4 September 17, 2014 Textbook §
Solving Problem by Searching
CPSC 322, Lecture 5Slide 1 Uninformed Search Computer Science cpsc322, Lecture 5 (Textbook Chpt 3.4) January, 14, 2009.
Slide 1 Heuristic Search: BestFS and A * Jim Little UBC CS 322 – Search 5 September 19, 2014 Textbook § 3.6.
CPSC 322, Lecture 4Slide 1 Search: Intro Computer Science cpsc322, Lecture 4 (Textbook Chpt ) January, 12, 2009.
CPSC 322, Lecture 8Slide 1 Heuristic Search: BestFS and A * Computer Science cpsc322, Lecture 8 (Textbook Chpt 3.5) January, 21, 2009.
Uninformed Search (cont.)
CMU Snake Robot
Dr.Abeer Mahmoud ARTIFICIAL INTELLIGENCE (CS 461D) Dr. Abeer Mahmoud Computer science Department Princess Nora University Faculty of Computer & Information.
CPSC 322, Lecture 8Slide 1 Heuristic Search: BestFS and A * Computer Science cpsc322, Lecture 8 (Textbook Chpt 3.6) Sept, 23, 2013.
Computer Science CPSC 322 Lecture Heuristic Search (Ch: 3.6, 3.6.1) Slide 1.
Computer Science CPSC 322 Lecture A* and Search Refinements (Ch 3.6.1, 3.7.1, 3.7.2) Slide 1.
Informed search strategies Idea: give the algorithm “hints” about the desirability of different states – Use an evaluation function to rank nodes and select.
Search with Costs and Heuristic Search 1 CPSC 322 – Search 3 January 17, 2011 Textbook §3.5.3, Taught by: Mike Chiang.
Review: Tree search Initialize the frontier using the starting state While the frontier is not empty – Choose a frontier node to expand according to search.
Heuristic Search: A* 1 CPSC 322 – Search 4 January 19, 2011 Textbook §3.6 Taught by: Vasanth.
Computer Science CPSC 322 Lecture 6 Iterative Deepening and Search with Costs (Ch: 3.7.3, 3.5.3)
CS 312: Algorithm Design & Analysis Lecture #37: A* (cont.); Admissible Heuristics Credit: adapted from slides by Stuart Russell of UC Berkeley. This work.
CPSC 322, Lecture 8Slide 1 Heuristic Search: BestFS and A * Computer Science cpsc322, Lecture 8 (Textbook Chpt 3.6) Sept, 21, 2010.
Heuristic Functions. A Heuristic is a function that, when applied to a state, returns a number that is an estimate of the merit of the state, with respect.
CPSC 322, Lecture 6Slide 1 Uniformed Search (cont.) Computer Science cpsc322, Lecture 6 (Textbook finish 3.5) Sept, 17, 2012.
A* optimality proof, cycle checking CPSC 322 – Search 5 Textbook § 3.6 and January 21, 2011 Taught by Mike Chiang.
Chapter 3.5 and 3.6 Heuristic Search Continued. Review:Learning Objectives Heuristic search strategies –Best-first search –A* algorithm Heuristic functions.
Heuristic Functions.
For Monday Read chapter 4 exercise 1 No homework.
CPSC 322, Lecture 7Slide 1 Heuristic Search Computer Science cpsc322, Lecture 7 (Textbook Chpt 3.6) Sept, 20, 2013.
Computer Science cpsc322, Lecture 7
Review: Tree search Initialize the frontier using the starting state
Uniformed Search (cont.) Computer Science cpsc322, Lecture 6
Informed search algorithms
Informed search algorithms
Iterative Deepening CPSC 322 – Search 6 Textbook § 3.7.3
Announcements This Friday Project 1 due Talk by Jeniya Tabassum
Informed Search.
Presentation transcript:

CPSC 322, Lecture 7Slide 1 Heuristic Search Computer Science cpsc322, Lecture 7 (Textbook Chpt 3.5) January, 19, 2009

CPSC 322, Lecture 7Slide 2 Dept. Announcements Event: Weekly ELM Lunches Description: Whimsical discussion of CS topics over brown bag lunch. This terms theme is human distributed games. Date and Time: Every Tuesday, 12:30 – 2 pm Place: ICICS/CS Rm 206 Event: IBM Information Session Date and Time: Tuesday, Jan 20, 5:30 – 7:30 pm Place: Wesbrook 100 Event: Resume and Cover Letter Writing Workshop Date and Time: Wednesday, Jan 21, 12 – 1 pm Place: DMP 201 Event: How to Prepare for Career Fair Workshop Date and Time: Thursday, Jan 29, 1 – 2 pm Place: DMP 110

CPSC 322, Lecture 7Slide 3 Course Announcements Posted on WebCT Marks for assignment0 Second Practice Exercise (uninformed Search) If you are confused on basic search algorithm, different search strategies….. Check learning goals at the end of lectures. Please come to office hours Assignment1 will be posted on Wed

CPSC 322, Lecture 7Slide 4 Lecture Overview Recap Search with Costs Summary Uninformed Search Heuristic Search

CPSC 322, Lecture 7Slide 5 Recap: Search with Costs Sometimes there are costs associated with arcs. The cost of a path is the sum of the costs of its arcs. Optimal solution: not the one that minimizes the number of links, but the one that minimizes cost Lowest-Cost-First Search: expand paths from the frontier in order of their costs.

CPSC 322, Lecture 7Slide 6 Recap Uninformed Search CompleteOptimalTimeSpace DFSNNO(b m )O(mb) BFSYYO(b m ) IDSYYO(b m )O(mb) LCFSY Costs > 0 Y Costs >=0 O(b m )

CPSC 322, Lecture 7Slide 7 Recap Uninformed Search Why are all these strategies called uninformed? Because they do not consider any information about the states (end nodes) to decide which path to expand first on the frontier eg ( n0, n2, n3 12), ( n0, n3 8), ( n0, n1,n4 13) In other words, they are general they do not take into account the specific nature of the problem.

CPSC 322, Lecture 7Slide 8 Lecture Overview Recap Search with Costs Summary Uninformed Search Heuristic Search Best-First Search

CPSC 322, Lecture 7Slide 9 Uninformed/Blind search algorithms do not take into account the goal until they are at a goal node. Often there is extra knowledge that can be used to guide the search: an estimate of the distance from node n to a goal node. This is called a heuristic Heuristic Search

CPSC 322, Lecture 7Slide 10 More formally Definition (search heuristic) A search heuristic h(n) is an estimate of the cost of the shortest path from node n to a goal node. h can be extended to paths: h( n 0,…,n k )=h(n k ) h(n) uses only readily obtainable information (that is easy to compute) about a node.

CPSC 322, Lecture 7Slide 11 More formally (cont.) Definition (admissible heuristic) A search heuristic h(n) is admissible if it is never an overestimate of the cost from n to a goal. There is never a path from n to a goal that has path length less than h(n). another way of saying this: h(n) is a lower bound on the cost of getting from n to the nearest goal.

CPSC 322, Lecture 7Slide 12 Example Admissible Heuristic Functions Search problem: robot has to find a route from start location to goal location on a grid (discrete space with obstacles) Final cost (quality of the solution) is the number of steps If no obstacles, cost of optimal solution is…

CPSC 322, Lecture 7Slide 13 Example Admissible Heuristic Functions If there are obstacle, the optimal solution without obstacles is an admissible heuristic G

CPSC 322, Lecture 7Slide 14 Example Admissible Heuristic Functions Similarly, If the nodes are points on a Euclidean plane and the cost is the distance, we can use the straight-line distance from n to the closest goal as the value of h(n).

CPSC 322, Lecture 7Slide 15 Example Heuristic Functions In the 8-puzzle, we can use the number of misplaced tiles

CPSC 322, Lecture 7Slide 16 Example Heuristic Functions Another one we can use the number of moves between each tile's current position and its position in the solution

CPSC 322, Lecture 7Slide 17 How to Construct a Heuristic You identify relaxed version of the problem: where one or more constraints have been dropped problem with fewer restrictions on the actions Robot: the agent can move through walls Driver: the agent can move straight 8puzzle: (1) tiles can move anywhere (2) tiles can move to any adjacent square Result: The cost of an optimal solution to the relaxed problem is an admissible heuristic for the original problem (because it is always weakly less costly to solve a less constrained problem!)

CPSC 322, Lecture 7Slide 18 How to Construct a Heuristic (cont.) You should identify constraints which, when dropped, make the problem extremely easy to solve this is important because heuristics are not useful if they're as hard to solve as the original problem! This was the case in our examples Robot: allowing the agent to move through walls. Optimal solution to this relaxed problem is Manhattan distance Driver: allowing the agent to move straight. Optimal solution to this relaxed problem is straight-line distance 8puzzle: (1) tiles can move anywhere Optimal solution to this relaxed problem is number of misplaced tiles (2) tiles can move to any adjacent square….

CPSC 322, Lecture 8Slide 19 Another approach to construct heuristics Solution cost for a subproblem Current node Goal node Original Problem SubProblem

CPSC 322, Lecture 8Slide 20 Heuristics: Dominance If h 2 (n) h 1 (n) for all n (both admissible) then h 2 dominates h 1 h 2 is better for search (why?) 8puzzle: (1) tiles can move anywhere (2) tiles can move to any adjacent square (Original problem: tiles can move to an adjacent square if it is empty) search costs for the 8-puzzle (average number of paths expanded): d=12IDS = 3,644,035 paths A * (h 1 ) = 227 paths A * (h 2 ) = 73 paths d=24 IDS = too many paths A * (h 1 ) = 39,135 paths A * (h 2 ) = 1,641 paths

CPSC 322, Lecture 8Slide 21 Combining Heuristics How to combine heuristics when there is no dominance? If h 1 (n) is admissible and h 2 (n) is also admissible then h(n)= ………………… is also admissible … and dominates all its components

CPSC 322, Lecture 8Slide 22 Combining Heuristics: Example In 8-puzzle, solution cost for the 1,2,3,4 subproblem is substantially more accurate than Manhattan distance in some cases So…..

CPSC 322, Lecture 7Slide 23 Lecture Overview Recap Search with Costs Summary Uninformed Search Heuristic Search Best-First Search

CPSC 322, Lecture 7Slide 24 Learning Goals for todays class Construct admissible heuristics for appropriate problems. Verify Heuristic Dominance. Combine admissible heuristics Define/read/write/trace/debug different search algorithms With / Without cost Informed / Uninformed

CPSC 322, Lecture 7Slide 25 Next class Combining LCFS and BFS: A* (finish 3.5) A* Optimality A* is optimal efficient