uninformed search 2
play

Uninformed Search 2 Informed Search Rest of blind search An - PDF document

Todays Class Uninformed Search 2 Informed Search Rest of blind search An informed search strategyone that uses AI Class 5 (Ch. 3.5-3.7) Heuristic search problem specific Best-first search knowledge can find Greedy


  1. Today’s Class Uninformed Search 2 Informed Search • Rest of blind search “An informed search strategy—one that uses AI Class 5 (Ch. 3.5-3.7) • Heuristic search problem specific • Best-first search knowledge… can find • Greedy search solutions more efficiently • Beam search then an uninformed • A, A* strategy.” • Examples – R&N pg. 92 • Memory-conserving variations of A* • Heuristic functions Based on slides by Dr. Marie desJardin. Some material also adapted from slides by Dr. Matuszek @ Villanova University, which are based on Hwee Tou Ng at Berkeley, which Dr. Cynthia Matuszek – CMSC 671 are based on Russell at Berkeley. Some diagrams are based on AIMA. 2 Things to Differentiate Questions? • Goal testing • Expanding • Generating 3 4 Blind Search (Redux) “Satisficing” • Wikipedia: “ Satisficing is … searching until • Last time: • This time: an acceptability threshold is met” • Bread-first • Iterative Another piece of • Contrast with optimality problem deepening • Satisficable problems do not get more • Depth-first benefit from finding an optimal solution definition • Bidirectional • Uniform-cost • Ex: You have an A in the class. Studying for four hours will get you a 95 on the final. Studying for four more (eight • Holy Grail hours) will get you a 99 on the final. What to do? Search • A combination of satisfy and suffice • Introduced by Herbert A. Simon in 1956 5 6 1

  2. Depth-First Iterative Deepening (DFID) Depth-First Iterative Deepening (DFID) 1. DFS to depth 0 (i.e., treat start node as 1. DFS to depth 0 (i.e., treat start node as until solution found do: until solution found do: having no successors) having no successors) DFS with depth cutoff c; DFS with depth cutoff c; 2. Iff no solution found, do DFS to depth 1 2. Iff no solution found, do DFS to depth 1 c = c+1 c = c+1 • Complete • Complete • Optimal/Admissible if all operators have the same cost • Optimal/Admissible if all operators have the same cost The key: at every stage, • Otherwise, not optimal, but guarantees finding solution of shortest length • Otherwise, not optimal, but guarantees finding solution of shortest length throw away work from • Time complexity is a little worse than BFS or DFS because nodes near • Time complexity is a little worse than BFS or DFS because nodes near the top of the search tree are generated multiple times the top of the search tree are generated multiple times previous stages (or you • Because most nodes are near the bottom of a tree, worst case time • Because most nodes are near the bottom of a tree, worst case time don’t save anything!) complexity is still exponential, O(bd) complexity is still exponential, O(bd) 7 8 Iterative deepening search (c=1) Iterative deepening search (c=2) Depth-First Iterative Deepening Iterative deepening search (c=3) • If branching factor is b and solution is at depth d , then nodes at depth d are generated once, nodes at depth d -1 are generated twice, etc. • Hence b d + 2b (d-1) + ... + db ≤ b d / (1 - 1/b) 2 = O(b d ). • If b=4, then worst case is 1.78 * 4 d , i.e., 78% more nodes searched than exist at depth d (in the worst case). • Linear space complexity , O(bd), like DFS • Has advantage of both BFS (completeness) and DFS (limited space, finds longer paths more quickly) • Generally preferred for large state spaces where solution depth is unknown 12 2

  3. S S Depth-First Search 8 8 3 3 Example for Illustrating Search Strategies 1 1 A A B B C C 3 3 15 15 7 7 20 20 5 5 D D E E G G S Nodes list Expanded node 8 { S 0 } 3 1 S 0 { A 3 B 1 C 8 } A 3 { D 6 E 10 G 18 B 1 C 8 } A B C D 6 { E 10 G 18 B 1 C 8 } 3 15 7 20 E 10 { G 18 B 1 C 8 } 5 G 18 { B 1 C 8 } D E G Solution path found is S A G, cost 18 Number of nodes expanded (including goal node) = 5 13 14 S S S S Depth-First Search Breadth-First Search 8 8 8 8 3 3 3 3 1 1 1 1 A A B B C C A A B B C C 3 3 3 3 15 15 15 15 7 7 7 7 20 20 20 20 5 5 5 5 Nodes list D D E E Expanded node D D E E G G G G Nodes list Expanded node { S 0 } { S 0 } S 0 { A 3 B 1 C 8 } S 0 { A 3 B 1 C 8 } A 3 { B 1 C 8 D 6 E 10 G 18 } We won’t go through these in A 3 { D 6 E 10 G 18 B 1 C 8 } B 1 { C 8 D 6 E 10 G 18 G 21 } C 8 { D 6 E 10 G 18 G 21 G 13 } D 6 { E 10 G 18 B 1 C 8 } detail, but please make sure D 6 { E 10 G 18 G 21 G 13 } E 10 { G 18 B 1 C 8 } you understand them. E 10 { G 18 G 21 G 13 } G 18 { B 1 C 8 } G 18 { G 21 G 13 } Solution path found is S A G, cost 18 Solution path found is S A G , cost 18 Number of nodes expanded (including goal node) = 5 Number of nodes expanded (including goal node) = 7 15 16 S S Uniform-Cost Search 8 8 How they Perform 3 3 1 1 A A B B C C 3 3 15 15 7 7 20 20 5 5 Nodes list Expanded node • Depth-First Search: D D E E G G S { S 0 } • Expanded nodes: S A D E G 8 3 • Solution found: S A G (cost 18) 1 S 0 { B 1 A 3 C 8 } • Breadth-First Search : B 1 { A 3 C 8 G 21 } A B C 3 7 • Expanded nodes: S A B C D E G A 3 { D 6 C 8 E 10 G 18 G 21 } 15 20 • Solution found: S A G (cost 18) 5 D 6 { C 8 E 10 G 18 G 1 } D E G • Uniform-Cost Search : C 8 { E 10 G 13 G 18 G 21 } • Expanded nodes: S A D B C E G E 10 { G 13 G 18 G 21 } • Solution found: S C G (cost 13) G 13 { G 18 G 21 } This is the only uninformed search that worries about costs. Solution path found is S C G, cost 13 • Iterative-Deepening Search : Number of nodes expanded (including goal node) = 7 • nodes expanded: S S A B C S A D E G • Solution found: S A G (cost 18) 17 3

  4. Bi-directional Search Bi-directional Search • Alternate searching from • Alternate searching from • start state à goal • start state à goal • goal state à start • goal state à start • Stop when the frontiers intersect. • Stop when the frontiers intersect. Thought problems: What’s a real- • Works well only when there are • Works well only when there are world problem where you can’t unique start and goal states unique start and goal states generate predecessors? • Requires ability to generate • Requires ability to generate “predecessor” states. “predecessor” states. • Can (sometimes) find a solution fast • Can (sometimes) find a solution fast 19 20 Comparing Search Strategies Avoiding Repeated States • Ways to reduce size of state space (with increasing computational costs) • In increasing order of effectiveness: 1. Do not return to the state you just came from. 2. Do not create paths with cycles in them. 3. Do not generate any state that was ever created before. • Effect depends on frequency of loops in state space. 21 22 S S A State Space that Generates an Holy Grail Search 8 8 3 3 1 1 Exponentially Growing Search Space A A B B C C 3 3 15 15 7 7 20 20 5 5 Nodes list Expanded node D D E E G G { S 0 } S 0 {C 8 A 3 B 1 } C 8 { G 13 A 3 B 1 } G 13 { A 3 B 1 } Solution path found is S C G, cost 13 (optimal) Number of nodes expanded (including goal node) = 3 (minimum possible!) 23 24 4

  5. Holy Grail Search Informed Search Why not go straight to the solution, without any wasted detours off to the side? “An informed search strategy—one that <foreshadowing> If only we knew where uses problem specific knowledge… can </foreshadowing> we were headed… find solutions more efficiently then an uninformed strategy.” – R&N pg. 92 27 25 Weak vs. Strong Methods Heuristic • Weak methods : Free On-line Dictionary of Computing* • Extremely general, not tailored to a specific situation 1. A rule of thumb, simplification, or educated guess 2. Reduces, limits, or guides search in particular domains • Examples • Subgoaling : split a large problem into several smaller ones that can 3. Does not guarantee feasible solutions; often used with no be solved one at a time. theoretical guarantee • Space splitting: try to list possible solutions to a problem, then try to rule out classes of these possibilities WordNet (r) 1.6* • Means-ends analysis: consider current situation and goal, then 1. Commonsense rule (or set of rules) intended to increase look for ways to shrink the differences between the two the probability of solving some problem • Called “weak” methods because they do not take advantage of more powerful domain-specific heuristics 28 29 *Heavily edited for clarity Heuristic Search Heuristic Search • Uninformed search is generic • Romania: Arad à Bucharest (for example) • Node selection depends only on shape of tree and node expansion strategy. • Sometimes domain knowledge à Better decision • Knowledge about the specific problem 30 31 5

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend