Announcements. Project 0: Python Tutorial Due last night

Similar documents
CSC 2114: Artificial Intelligence Search

CS 4100 // artificial intelligence

CS 188: Ar)ficial Intelligence

CSE 473: Ar+ficial Intelligence

CS 5522: Artificial Intelligence II

521495A: Artificial Intelligence

PEAS: Medical diagnosis system

Warm- up. IteraAve version, not recursive. class TreeNode TreeNode[] children() boolean isgoal() DFS(TreeNode start)

Graph Search. Chris Amato Northeastern University. Some images and slides are used from: Rob Platt, CS188 UC Berkeley, AIMA

Graphs vs trees up front; use grid too; discuss for BFS, DFS, IDS, UCS Cut back on A* optimality detail; a bit more on importance of heuristics,

CSCI 446: Artificial Intelligence

Today. Search Problems. Uninformed Search Methods. Depth-First Search Breadth-First Search Uniform-Cost Search

521495A: Artificial Intelligence

CS 188 Introduction to Artificial Intelligence Fall 2018 Note 1

CS 343: Artificial Intelligence

CS 188: Artificial Intelligence. Recap Search I

Uninformed search strategies (Section 3.4) Source: Fotolia

CS 771 Artificial Intelligence. Problem Solving by Searching Uninformed search

Uninformed Search. Reading: Chapter 4 (Tuesday, 2/5) HW#1 due next Tuesday

ARTIFICIAL INTELLIGENCE. Pathfinding and search

CS 4700: Foundations of Artificial Intelligence. Bart Selman. Search Techniques R&N: Chapter 3

ARTIFICIAL INTELLIGENCE (CSC9YE ) LECTURES 2 AND 3: PROBLEM SOLVING

HW#1 due today. HW#2 due Monday, 9/09/13, in class Continue reading Chapter 3

Uninformed Search Strategies AIMA 3.4

Basic Search. Fall Xin Yao. Artificial Intelligence: Basic Search

Artificial Intelligence

Solving Problems by Searching

ARTIFICIAL INTELLIGENCE SOLVING PROBLEMS BY SEARCHING. Chapter 3

CSCI 446: Artificial Intelligence

Problem Solving and Search

CS486/686 Lecture Slides (c) 2015 P.Poupart

KI-Programmierung. Basic Search Algorithms

Solving problems by searching

EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS

CS486/686 Lecture Slides (c) 2014 P.Poupart

CS510 \ Lecture Ariel Stolerman

Search EECS 395/495 Intro to Artificial Intelligence

Search EECS 348 Intro to Artificial Intelligence

Uninformed Search Strategies

CS 380: Artificial Intelligence Lecture #3

CAP 4630 Artificial Intelligence

Lecture 3. Uninformed Search

CS 8520: Artificial Intelligence

CMU-Q Lecture 2: Search problems Uninformed search. Teacher: Gianni A. Di Caro

CS 188: Artificial Intelligence

Uninformed Search. (Textbook Chpt 3.5) Computer Science cpsc322, Lecture 5. May 18, CPSC 322, Lecture 5 Slide 1

UNINFORMED SEARCH. What to do if teammates drop? Still have 3 or more? No problem keep going. Have two or fewer and want to be merged?

Artificial Intelligence

S A E RC R H C I H NG N G IN N S T S A T T A E E G R G A R PH P S

AI: problem solving and search

Artificial Intelligence Informed Search

Uninformed search strategies

Solving problems by searching

Search I. slides from: Padhraic Smyth, Bryan Low, S. Russell and P. Norvig

AGENTS AND ENVIRONMENTS. What is AI in reality?

Solving Problem by Searching. Chapter 3

Chapter 3 Solving problems by searching

Chapter 4. Uninformed Search Strategies

Problem solving and search

CS 188: Artificial Intelligence Fall Search Gone Wrong?

Artificial Intelligence

Informed search strategies (Section ) Source: Fotolia

Announcements. CS 188: Artificial Intelligence

Artificial Intelligence

Solving problems by searching

Uninformed (also called blind) search algorithms

Chapter 2. Blind Search 8/19/2017

CS242 Uninformed Search

Solving problems by searching

CSEP 573 Artificial Intelligence Winter 2016

PAC-MAN is one of the most popular game

Solving Problems: Blind Search

Ar#ficial)Intelligence!!

Solving Problems by Searching

Chapter3. Problem-Solving Agents. Problem Solving Agents (cont.) Well-defined Problems and Solutions. Example Problems.

Uninformed Search. Problem-solving agents. Tree search algorithms. Single-State Problems

COMP219: Artificial Intelligence. Lecture 7: Search Strategies

COMP3702/7702 Artificial Intelligence Week2: Search (Russell & Norvig ch. 3)" Hanna Kurniawati"

CS540 Uninformed Search

Why Search. Things to consider. Example, a holiday in Jamaica. CSE 3401: Intro to Artificial Intelligence Uninformed Search

Artificial Intelligence Uninformed search

CS 343: Artificial Intelligence

Uninformed Search. CS171, Winter 2018 Introduction to Artificial Intelligence Prof. Richard Lathrop. Reading: R&N

AGENTS AND ENVIRONMENTS. What is AI in reality?

Chapter 3: Solving Problems by Searching

Uninformed Search Methods

Problem solving and search

Computer Science and Software Engineering University of Wisconsin - Platteville. 3. Search (Part 1) CS 3030 Lecture Notes Yan Shi UW-Platteville

Artificial Intelligence Problem Solving and Uninformed Search

CS 188: Artificial Intelligence

Solving problems by searching

CSE 40171: Artificial Intelligence. Informed Search: A* Search

Solving problems by searching

Set 2: State-spaces and Uninformed Search. ICS 271 Fall 2015 Kalev Kask

Uniformed Search (cont.)

CPS 170: Artificial Intelligence Search

Week 3: Path Search. COMP9414/ 9814/ 3411: Artificial Intelligence. Motivation. Example: Romania. Romania Street Map. Russell & Norvig, Chapter 3.

Today. Informed Search. Graph Search. Heuristics Greedy Search A* Search

A.I.: Informed Search Algorithms. Chapter III: Part Deux

Outline. Solving problems by searching. Problem-solving agents. Example: Romania

Transcription:

Announcements Project 0: Python Tutorial Due last night HW1 officially released today, but a few people have already started on it Due Monday 2/6 at 11:59 pm P1: Search not officially out, but some have started Pair work allowed Please sign up for edx with your real names. Is it possible to change?

CS 343: Artificial Intelligence Search Prof. Scott Niekum University of Texas at Austin [These slides were created by Dan Klein and Pieter Abbeel for CS188 Intro to AI at UC Berkeley. All CS188 materials are available at http://ai.berkeley.edu.]

Today Agents that Plan Ahead Search Problems Uninformed Search Methods Depth-First Search Breadth-First Search Uniform-Cost Search

Agents that Plan

Reflex Agents Reflex agents: Choose action based on current percept (and maybe memory) May have memory or a model of the world s current state Do not consider the future consequences of their actions Consider how the world IS Can a reflex agent be rational?

Video of Demo Reflex Success

Video of Demo Reflex Stuck

Planning Agents Planning agents: Ask what if Decisions based on (hypothesized) consequences of actions Must have a model of how the world evolves in response to actions Must formulate a goal (test) Consider how the world WOULD BE Optimal vs. complete planning Planning vs. replanning

Video of Demo Suboptimal local replanning

Video of Demo Globally optimal planning

Search Problems

Search Problems A search problem consists of: A state space A successor function (with actions, costs) A start state and a goal test N, 1.0 E, 1.0 A solution is a sequence of actions (a plan) which transforms the start state to a goal state

Search Problems Are Models

Example: Traveling in Romania State space: Cities Successor function: Roads: Go to adjacent city with cost = distance Start state: Arad Goal test: Is state == Bucharest? Solution?

What s in a State Space? The world state includes every last detail of the environment A search state keeps only the details needed for planning (abstraction) Problem: Pathing States: (x,y) location Actions: NSEW Successor: update location only Goal test: is (x,y)=end Problem: Eat-All-Dots States: {(x,y), dot booleans} Actions: NSEW Successor: update location and possibly a dot boolean Goal test: dots all false

State Space Sizes? World state: Agent positions: 120 Food count: 30 Ghost positions: 12 Agent facing: NSEW How many World states? 120x(2 30 )x(12 2 )x4 (> 74 trillion!) States for pathing? 120 States for eat-all-dots? 120x(2 30 ) (> 128 billion)

Quiz: Safe Passage Problem: eat all dots while keeping the ghosts perma-scared What does the state space have to specify? (agent position, dot booleans, power pellet booleans, remaining scared time)

State Space Graphs and Search Trees

State Space Graphs State space graph: A mathematical representation of a search problem Nodes are (abstracted) world configurations Arcs represent successors (action results) The goal test is a set of goal nodes (maybe only one) In a state space graph, each state occurs only once! We can rarely build this full graph in memory (it s too big), but it s a useful idea

State Space Graphs State space graph: A mathematical representation of a search problem Nodes are (abstracted) world configurations Arcs represent successors (action results) The goal test is a set of goal nodes (maybe only one) b a d c e f G S h In a state space graph, each state occurs only once! p q r We can rarely build this full graph in memory (it s too big), but it s a useful idea Tiny search graph for a tiny search problem

Search Trees This is now / start N, 1.0 E, 1.0 Possible futures A search tree: A what if tree of plans and their outcomes The start state is the root node Children correspond to successors Nodes show states, but correspond to PLANS that achieve those states For most problems, we can never actually build the whole tree

State Space Graphs vs. Search Trees S State Space Graph a b c e d f h p q r G Each NODE in in the search tree is an entire PATH in the state space graph. We construct both on demand and we construct as little as possible. b a d c a Search Tree S e e h r h r p q f p q f q c G q c G a a p q

Quiz: State Space Graphs vs. Search Trees Consider this 4-state graph: How big is its search tree (from S)? a S G b Important: Lots of repeated structure in the search tree! So why would we ever use a search tree? 1) Cannot store closed list (previously visited nodes) 2) Graph happens to be a tree, so no reason to store closed list

Tree Search

Search Example: Romania

Searching with a Search Tree Search: Expand out potential plans (tree nodes) Maintain a fringe of partial plans under consideration Try to expand as few tree nodes as possible

General Tree Search Important ideas: Fringe Expansion Exploration strategy Main question: which fringe nodes to explore?

Depth-First Search

Depth-First Search S a b d p a c e p h f r q q c G a q e p h f r q q c G a S G d b p q c e h a f r q p h f d b a c e r Strategy: expand a deepest node first Implementation: Fringe is a LIFO stack

Search Algorithm Properties

Search Algorithm Properties Complete: Guaranteed to find a solution if one exists? Optimal: Guaranteed to find the least cost path? Time complexity? Space complexity? b 1 node b nodes Cartoon of search tree: b is the branching factor m is the maximum depth solutions at various depths m tiers b 2 nodes Number of nodes in entire tree? 1 + b + b 2 +. b m = O(b m ) b m nodes

Depth-First Search (DFS) Properties What nodes DFS expand? Some left prefix of the tree. Could process the whole tree! If m is finite, takes time O(b m ) b 1 node b nodes b 2 nodes How much space does the fringe take? Only has siblings on path to root, so O(bm) m tiers Is it complete? m could be infinite, so only if we prevent cycles (more later) b m nodes Is it optimal? No, it finds the leftmost solution, regardless of depth or cost

Breadth-First Search

Breadth-First Search Strategy: expand a shallowest node first Implementation: Fringe is a FIFO queue S b p a d q c h e r G f S Search Tiers b a d c a h e r p h q e r f p q p q f q c G q c G a a

Breadth-First Search (BFS) Properties What nodes does BFS expand? Processes all nodes above shallowest solution Let depth of shallowest solution be s s tiers Search takes time O(b s ) b 1 node b nodes b 2 nodes How much space does the fringe take? Has roughly the last tier, so O(b s ) b s nodes Is it complete? s must be finite if a solution exists, so yes! b m nodes Is it optimal? Only if costs are all 1 (more on costs later)

Quiz: DFS vs BFS

Quiz: DFS vs BFS When will BFS outperform DFS? When will DFS outperform BFS? What is the worst case for each?

Video of Demo Maze Water DFS/BFS (part 1)

Video of Demo Maze Water DFS/BFS (part 2)

Iterative Deepening Idea: get DFS s space advantage with BFS s time / shallow-solution advantages Run a DFS with depth limit 1. If no solution Run a DFS with depth limit 2. If no solution Run a DFS with depth limit 3... b Isn t that wastefully redundant? Generally most work happens in the lowest level searched, so not so bad!

Cost-Sensitive Search 2 b 3 1 a d 2 c 3 8 2 e 9 8 2 GOAL 2 f START 1 p 4 15 q 4 h r 2 BFS finds the shortest path in terms of number of actions. It does not find the least-cost path. We will now cover a similar algorithm which does find the least-cost path.

Uniform Cost Search

Uniform Cost Search Strategy: expand a cheapest node first: Fringe is a priority queue (priority: cumulative cost) 2 b 1 3 S 1 p a d 15 8 9 q 2 c h e 8 2 r G 2 f 1 S 0 d 3 e 9 p 1 Cost contours b a 4 6 c 11 a p h e 13 q 5 r f 7 8 h p 17 r 11 q f q c G q 16 q 11 c G 10 a a

Uniform Cost Search (UCS) Properties What nodes does UCS expand? Processes all nodes with cost less than cheapest solution! If that solution costs C* and arcs cost at least ε, then the effective depth is roughly C*/ε Takes time O(b C*/ ε ) (exponential in effective depth) C*/ε tiers b c 1 c 2 c 3 How much space does the fringe take? Has roughly the last tier, so O(b C*/ ε ) Is it complete? Assuming best solution has a finite cost and minimum arc cost is positive, yes! Is it optimal? Yes! (Proof next lecture via A*)

Uniform Cost Issues Remember: UCS explores increasing cost contours The good: UCS is complete and optimal! c 1 c 2 c 3 The bad: Explores options in every direction No information about goal location We ll fix that soon! Start Goal

Video of Demo Empty UCS

Video of Demo Maze with Deep/Shallow Water --- DFS, BFS, or UCS? (part 1)

Video of Demo Maze with Deep/Shallow Water --- DFS, BFS, or UCS? (part 2)

Video of Demo Maze with Deep/Shallow Water --- DFS, BFS, or UCS? (part 3)

The One Queue All these search algorithms are the same except for fringe strategies Conceptually, all fringes are priority queues (i.e. collections of nodes with attached priorities) Practically, for DFS and BFS, you can avoid the log(n) overhead from an actual priority queue, by using stacks and queues Can even code one implementation that takes a variable queuing object

Search and Models Search operates over models of the world The agent doesn t actually try all the plans out in the real world! Planning is all in simulation Your search is only as good as your models