HEURISTIC SEARCH Heuristics: Rules for choosing the branches in a - - PowerPoint PPT Presentation

heuristic search
SMART_READER_LITE
LIVE PREVIEW

HEURISTIC SEARCH Heuristics: Rules for choosing the branches in a - - PowerPoint PPT Presentation

HEURISTIC SEARCH Heuristics: Rules for choosing the branches in a state space that are most likely to lead to an acceptable problem solution. Used when: Information has inherent ambiguity computational costs are high Algorithms for


slide-1
SLIDE 1

HEURISTIC SEARCH

Heuristics:

Rules for choosing the branches in a state space that are most likely to lead to an acceptable problem solution. Used when:

  • Information has inherent ambiguity
  • computational costs are high
slide-2
SLIDE 2

Algorithms for Heuristic Search

Heuristic Search Hill Climbing Best first search A* Algo

slide-3
SLIDE 3

Hill Climbing:

If the Node is better, only then you proceed to that Node

Algorithm:

  • 1. Start with current-state (cs) = initial state
  • 2. Until cs = goal-state or there is no change in the cs do:

(a) Get the successor of cs and use the EVALUATION FUNCTION to assign a score to each successor (b) If one of the successor has a better score than cs then set the new state to be the successor with the best score.

slide-4
SLIDE 4

Examples of all climbing algorithms

Tic - Tac - Toe

which one to choose?

Heuristic:

calculate lines and more to that place with most wining lines. X X X

slide-5
SLIDE 5

Calculating winning lines

X X 3 winning lines 4 winning lines 3 winning lines Most winning lines

slide-6
SLIDE 6
slide-7
SLIDE 7

Example 2

Devise any heuristic to reach goal Start : Library Goal : University

slide-8
SLIDE 8

Evaluation function: Distance between two place Adopt the one with minimum distance from goal

Probable route will be

Library Hospital Newsagent University

slide-9
SLIDE 9

Suppose S2 < S1 Then what will happen?

The algorithm will always go to park from hospital instead of going to newsagent. The algo will get stuck here.

slide-10
SLIDE 10

Hill Climbing is Good for:

  • A limited class of problems where we have an evaluation

function that fairly accurately predicts the actual distance to a solution

local maximum/minimum

Hill climbing cannot distinguish between local maximum and global maximum

slide-11
SLIDE 11

Local Minima

for any continous function, gradient search is similar to hill climbing d Ø(x) dx The algo gets stuck in the local minima considering in to be the global minimum.

slide-12
SLIDE 12

Simulated Annealing

(reading Assignment) (The method to get rid of the local minima problem.) It is an optimization method that employ certain techniques to take small steps in the direction indicated by the gradient, but occasionally large steps in the gradient direction / same other directional taken.

slide-13
SLIDE 13

Best First Search Method

Algo:

  • 1. Start with agenda = [initial-state]
  • 2. While agenda not empty do:

(a) remove the best node from the agenda (b) if it is the goal node then return with success. Otherwise find its successors. ( c) Assign the successor nodes a score using the evaluation function and add the scored nodes to agenda

slide-14
SLIDE 14

Breadth - First Depth First Hill Climbing F:6 B:5 D:4 E:2 G:0 Solution C:3 A:10

slide-15
SLIDE 15

1. Open [A:10] : closed [] 2. Evaluate A:10; open [C:3,B:5]; closed [A:10] 3. Evaluate C:3; open [B:5,F:6]; closed [C:3,A:10] 4. Evaluate B:5; open [E:2,D:4,F:6]; closed [C:3,B:5,A:10]. 5. Evaluate E:2; open [G:0,D:4,F:6]; closed [E:2,C:3,B:5,A:10] 6. Evaluate G:0; the solution / goal is reached

slide-16
SLIDE 16
slide-17
SLIDE 17
  • If the evaluation function is good best first search

may drastically cut the amount of search requested

  • therwise.
  • The first move may not be the best one.
  • If the evaluation function is heavy / very

expensive the benefits may be overweighed by the cost of assigning a score

slide-18
SLIDE 18

Evaluation Function

1. Count the no. of tiles out of place in each state when compared with the goal. Out of place tiles 2, 8, 1, 6 in place tiles 3, 4, 5, 7 2 8 3 1 6 4 7 5 1 2 3 8 4 7 6 5 Initial state Goal

slide-19
SLIDE 19
slide-20
SLIDE 20

Heuristic Function f(n) = h(n)

Drawback:

The heuristic defined does not take into account the distance each tile has to be moved to bring it to the correct place.

slide-21
SLIDE 21

Sum the no. of boxes the tile has to be moved to reach the goal

for example: 4 1 1 Total places to be moved = ‘2’ 2 1 1 1

  • No. of places to

be moved = ‘3’

slide-22
SLIDE 22

2 8 3 1 6 4 7 5 Total tiles out of place = 5 Sum of distances out of place = 6 Tiles Distance 1 1 2 1 8 2 6 1 7 1 total: 6

slide-23
SLIDE 23

3 5 6 1 4 2 8 7 Total tiles out of place = 7 Sum of distances Tiles Distance 3 2 1 1 2 2 8 2 7 2 6 3 5 3 total: 15

slide-24
SLIDE 24
slide-25
SLIDE 25

Complete Heuristic function (sum of two functions) f(n) = g(n) + h(n) where h(n) = Sum of the distances g(n) = tiles out of places Anther Heuristic Could be: g(n) = level of search h(n) =

  • No. of tiles out of place
slide-26
SLIDE 26
slide-27
SLIDE 27

A* Alogorithm

  • Problems with Best First Search

– It reduces the costs to the goal but

  • It is not optimal nor complete

– Uniform cost

slide-28
SLIDE 28

Some Definitions Admissibility Heuristics that find shortest path to the goal, whenever it exists are said “ADMISSIBLE”. e.g. Breadth - First - Search is ADMISSIBLE but is too inefficient.

slide-29
SLIDE 29

Condition for Admissible Search

h(n) <= h*(n) Estimated Heuristic Cost Actual Heuristic Cost This Condition Ensures Shortest Path

slide-30
SLIDE 30

Example: Estimated Heuristic Cost = 7 (2+3+2) Path for best - fist search (only choose best node) not the path ABDEF is it optimal / shortest pat. (N0) A:10 2 2 B:8 C:9 4 3 D:6 G:3 3 2 E:4 F:0 4 F:0

slide-31
SLIDE 31

In order to make the search Admissible Algo.has to be changed.

Need to define heuristic function as f(n) = g(n) + h(n) where h(n) <= h*(n) (under estimation) & g(n) >= g*(n) (over estimation)

slide-32
SLIDE 32

Example for g(n) >= g*(n)

g(n) g*(n) Goal will never be reached

slide-33
SLIDE 33

Some Observations

g =

  • Choose the Node

closest to goal g = 1

  • Path with fewest steps
slide-34
SLIDE 34

Observations

h g Remarks h* Immediate convergence, A* converges to goal (No Search) Random Search 1 Breath - First Search >=h* No Convergence <=h* Admissible Search <=g* No Convergence

slide-35
SLIDE 35

Example of h*

Path: A B D E F Total cost h = 13 Estimated cost = 7 13 > 7 (here not admissible) For A* algorithm Path: A B C G F as path cost B D = 6, and C G = 5, hence second choice will be followed A:10 2 2 B:8 C:9 4 3 D:6 G:3 3 2 E:4 F*:0 4 F:0

slide-36
SLIDE 36

Heuristic Search & Expert Systems

Expert Systems: Human Extract Heuristic Develop Rules Expert Knowledge No certainties are involved Knowledge Base Manipulates the knowledge to run the system

slide-37
SLIDE 37

Problem: How to handle Uncertainty? Solve: To Heuristics apply level of confidence e.g. 1. Saving – a/c (adequate) income (adequate) investment (stack) (Level of Confidence (LOC) = 0.7) 2. Headache vomiting fever food poisoning (LOC = 0.8)

slide-38
SLIDE 38
slide-39
SLIDE 39
slide-40
SLIDE 40
slide-41
SLIDE 41