Progressive Deepening

Slides:



Advertisements
Similar presentations
Artificial Intelligence
Advertisements

Informed Search CS 171/271 (Chapter 4)
Heuristic Searches. Feedback: Tutorial 1 Describing a state. Entire state space vs. incremental development. Elimination of children. Closed and the solution.
An Introduction to Artificial Intelligence
Heuristic Search Methods Methods that use a heuristic function to provide specific knowledge about the problem: Heuristic Functions Hill climbing Beam.
Local Search Algorithms Chapter 4. Outline Hill-climbing search Simulated annealing search Local beam search Genetic algorithms Ant Colony Optimization.
Search I: Chapter 3 Aim: achieving generality Q: how to formulate a problem as a search problem?
Traveling Salesperson Problem
Informed Search Methods Copyright, 1996 © Dale Carnegie & Associates, Inc. Chapter 4 Spring 2004.
STRATEGI PENCARIAN DENGAN INFORMASI (INFORMED SEARCH STRATEGY)
Strategi Pencarian dengan Informasi (Informed Search Strategy)
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Artificial Intelligence Lecture
Dave Lattanzi’s RRT Algorithm. General Concept Use dictionaries for trees Create a randomized stack of nodes Iterate through stack “Extend” each tree.
MAE 552 – Heuristic Optimization Lecture 27 April 3, 2002
Find a Path s A D B E C F G Heuristically Informed Methods  Which node do I expand next?  What information can I use to guide this.
Pathfinding Algorithms Josh Palmer Rachael Beers.
Problem Solving and Search in AI Heuristic Search
Using Search in Problem Solving
CSC344: AI for Games Lecture 4: Informed search
Magnet rotated by 5.9 degree Distance from entrance point to magnet right bottom corner m.
Search  Exhaustive/Blind Search Methods Depth First Search Breadth First Search  Heuristic Methods Hill Climbing Beam Search Best First Search…
Degree A F H G B E D C. Adjacent A F H G B E D C.
State-Space Searches. 2 State spaces A state space consists of –A (possibly infinite) set of states The start state represents the initial problem Each.
Vilalta&Eick: Informed Search Informed Search and Exploration Search Strategies Heuristic Functions Local Search Algorithms Vilalta&Eick: Informed Search.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Introduction to search Chapter 3. Why study search? §Search is a basis for all AI l search proposed as the basis of intelligence l inference l all learning.
Artificial Intelligence LECTURE 4 ARTIFICIAL INTELLIGENCE LECTURES BY ENGR. QAZI ZIA.
For Friday Finish chapter 6 Program 1, Milestone 1 due.
For Wednesday Read chapter 6, sections 1-3 Homework: –Chapter 4, exercise 1.
For Wednesday Read chapter 5, sections 1-4 Homework: –Chapter 3, exercise 23. Then do the exercise again, but use greedy heuristic search instead of A*
Artificial Intelligence for Games Informed Search (2) Patrick Olivier
Informed Search I (Beginning of AIMA Chapter 4.1)
1 CSE 4705 Artificial Intelligence Jinbo Bi Department of Computer Science & Engineering
Informed Search II CIS 391 Fall CIS Intro to AI 2 Outline PART I  Informed = use problem-specific knowledge  Best-first search and its variants.
Search Techniques CS480/580 Fall Introduction Trees: – Root, parent, child, sibling, leaf node, node, edge – Single path from root to any node Graphs:
CHAPTER 2 SEARCH HEURISTIC. QUESTION ???? What is Artificial Intelligence? The study of systems that act rationally What does rational mean? Given its.
Source Page US:official&tbm=isch&tbnid=Mli6kxZ3HfiCRM:&imgrefurl=
3.5 Informed (Heuristic) Searches This section show how an informed search strategy can find solution more efficiently than uninformed strategy. Best-first.
Ch. 4 – Informed Search Supplemental slides for CSE 327 Prof. Jeff Heflin.
By J. Hoffmann and B. Nebel
For Monday Read chapter 4 exercise 1 No homework.
CMPT 463. What will be covered A* search Local search Game tree Constraint satisfaction problems (CSP)
Путешествуй со мной и узнаешь, где я сегодня побывал.
Pengantar Kecerdasan Buatan
Traveling Salesperson Problem
For Monday Chapter 6 Homework: Chapter 3, exercise 7.
Page 1. Page 2 Page 3 Page 4 Page 5 Page 6 Page 7.
HW #1 Due 29/9/2008 Write Java Applet to solve Goats and Cabbage “Missionaries and cannibals” problem with the following search algorithms: Breadth first.
CSE 4705 Artificial Intelligence
CS Fall 2016 (Shavlik©), Lecture 8, Week 5
HW2 EE 562.
CSE 4705 Artificial Intelligence
Graphs Some Algorithms Copyright © Curt Hill
Informed search algorithms
BEST FIRST SEARCH -OR Graph -A* Search -Agenda Search CSE 402
Heuristic Search Methods
Approaches to search Simple search Heuristic search Genetic search
Artificial Intelligence
CS 188: Artificial Intelligence Fall 2006
Introducing Underestimates
Network Optimization Flow Decomposition.
State-Space Searches.
Heuristic Search Generate and Test Hill Climbing Best First Search
State-Space Searches.
Search.
Search.
CMSC 471 Fall 2011 Class #4 Tue 9/13/11 Uninformed Search
Midterm Review.
State-Space Searches.
Presentation transcript:

Progressive Deepening A B C D E F G H I J K L M N

Heuristically Informed Heuristic Example Here you see the distances between each city and the goal If you wish to reach the goal, it is usually better to be in a city that is close, but not necessarily; city C is closer than, but city C is not a good place to be A B 3 C 2 5 6 S G 4 3 D E 3 F 3 3 A B C Page 43 of Elaine Rich 2 4 4 S G 3 2 D E F 1 3

Hill Climbing Hill Climbing is DFS with a heuristic measurement 11 9 A B 7.3 8.5 9 9 C D E F 7 5 6 G H I J 6 4 4 2 K L M N Hill Climbing is DFS with a heuristic measurement that orders choices. The numbers beside the nodes are straight-line distances from the path- terminating city to the goal city.

Beam Search Degree = 2 At every level use only 2 best nodes S 11 9 A B 7.3 8.5 7.1 9 C D E F 7 5 5.3 G H I J 6 2 4 2.5 K L M N