CS 188: Ar)ficial Intelligence

Similar documents
CSE 473: Ar+ficial Intelligence

CSC 2114: Artificial Intelligence Search

Announcements. Project 0: Python Tutorial Due last night

CS 5522: Artificial Intelligence II

CS 4100 // artificial intelligence

PEAS: Medical diagnosis system

521495A: Artificial Intelligence

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

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

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

Uninformed search strategies

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

521495A: Artificial Intelligence

BIL 682 Ar+ficial Intelligence Week #2: Solving problems by searching. Asst. Prof. Aykut Erdem Dept. of Computer Engineering HaceDepe University

Uninformed search strategies (Section 3.4) Source: Fotolia

CS 188 Introduction to Artificial Intelligence Fall 2018 Note 1

CS 188: Artificial Intelligence. Recap Search I

ARTIFICIAL INTELLIGENCE. Pathfinding and search

CS 188: Artificial Intelligence

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

CSCI 446: Artificial Intelligence

CS 771 Artificial Intelligence. Problem Solving by Searching Uninformed search

Uninformed Search Strategies AIMA 3.4

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

Uninformed Search Strategies

CS 343: Artificial Intelligence

CSCI 360 Introduc/on to Ar/ficial Intelligence Week 2: Problem Solving and Op/miza/on. Instructor: Wei-Min Shen

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

Solving Problems by Searching

Artificial Intelligence Informed Search

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

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

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

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

KI-Programmierung. Basic Search Algorithms

State- space search algorithm

CSEP 573 Artificial Intelligence Winter 2016

Search EECS 395/495 Intro to Artificial Intelligence

Solving Problem by Searching. Chapter 3

Search EECS 348 Intro to Artificial Intelligence

CS510 \ Lecture Ariel Stolerman

Solving problems by searching

Solving problems by searching

ARTIFICIAL INTELLIGENCE SOLVING PROBLEMS BY SEARCHING. Chapter 3

CS 380: Artificial Intelligence Lecture #3

EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS

Artificial Intelligence

CS 8520: Artificial Intelligence

Problem Solving and Search

What is Search For? CS 188: Ar)ficial Intelligence. Constraint Sa)sfac)on Problems Sep 14, 2015

Solving problems by searching

Problem solving and search

Ar#ficial)Intelligence!!

Chapter 4. Uninformed Search Strategies

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

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?

AI: problem solving and search

Solving problems by searching

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

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

CS242 Uninformed Search

Solving Problems: Blind Search

Lecture 3. Uninformed Search

Chapter 3 Solving problems by searching

CAP 4630 Artificial Intelligence

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

State Space Representa,on and Search

PAC-MAN is one of the most popular game

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

CS540 Uninformed Search

Chapter 2. Blind Search 8/19/2017

AGENTS AND ENVIRONMENTS. What is AI in reality?

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

Chapter 3. A problem-solving agent is a kind of goal-based agent. It decide what to do by finding sequences of actions that lead to desirable states.

Informed search strategies (Section ) Source: Fotolia

Uninformed Search. CPSC 322 Lecture 5. September 14, 2007 Textbook 2.4. Graph Search Searching Depth-First Search

Problem Solving and Searching

Artificial Intelligence

Artificial Intelligence

Solving Problems by Searching

Uninformed (also called blind) search algorithms

COMP219: Artificial Intelligence. Lecture 7: Search Strategies

Announcements. CS 188: Artificial Intelligence

Uniformed Search (cont.)

Uninformed Search. CPSC 322 Lecture 5. January 17, 2007 Textbook 2.4. Uninformed Search CPSC 322 Lecture 5, Slide 1

Uninformed Search Strategies AIMA

Uninformed Search Methods

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

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

ITCS 6150 Intelligent Systems. Lecture 3 Uninformed Searches

Artificial Intelligence Problem Solving and Uninformed Search

CS 188: Artificial Intelligence Fall Search Gone Wrong?

Solving Problems by Searching (Blindly)

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

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

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

CPS 170: Artificial Intelligence Search

Chapter 3: Solving Problems by Searching

AGENTS AND ENVIRONMENTS. What is AI in reality?

Transcription:

CS 188: Ar)ficial Intelligence Search Instructors: Pieter Abbeel & Anca Dragan University of California, Berkeley [These slides were created by Dan Klein and Pieter Abbeel for CS188 Intro to AI at UC Berkeley (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 ac)on 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 ac)ons Consider how the world IS Can a reflex agent be ra)onal? [Demo: reflex op)mal (L2D1)] [Demo: reflex op)mal (L2D2)]

Video of Demo Reflex Op)mal

Video of Demo Reflex Odd

Planning Agents Planning agents: Ask what if Decisions based on (hypothesized) consequences of ac)ons Must have a model of how the world evolves in response to ac)ons Must formulate a goal (test) Consider how the world WOULD BE Op)mal vs. complete planning Planning vs. replanning [Demo: re-planning (L2D3)] [Demo: mastermind (L2D4)]

Video of Demo Mastermind

Video of Demo Replanning

Search Problems

Search Problems A search problem consists of: A state space A successor func)on (with ac)ons, costs) A start state and a goal test N, 1.0 E, 1.0 A solu)on is a sequence of ac)ons (a plan) which transforms the start state to a goal state

Search Problems Are Models

Example: Traveling in Romania State space: Ci)es Successor func)on: Roads: Go to adjacent city with cost = distance Start state: Arad Goal test: Is state == Bucharest? Solu)on?

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 (abstrac)on) Problem: Pathing States: (x,y) loca)on Ac)ons: NSEW Successor: update loca)on only Goal test: is (x,y)=end Problem: Eat-All-Dots States: {(x,y), dot booleans} Ac)ons: NSEW Successor: update loca)on and possibly a dot boolean Goal test: dots all false

State Space Sizes? World state: Agent posi)ons: 120 Food count: 30 Ghost posi)ons: 12 Agent facing: NSEW How many World states? 120x(2 30 )x(12 2 )x4 States for pathing? 120 States for eat-all-dots? 120x(2 30 )

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

State Space Graphs and Search Trees

State Space Graphs State space graph: A mathema)cal representa)on of a search problem Nodes are (abstracted) world configura)ons Arcs represent successors (ac)on 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 mathema)cal representa)on of a search problem Nodes are (abstracted) world configura)ons Arcs represent successors (ac)on results) The goal test is a set of goal nodes (maybe only one) b a d c e f G S h In a search 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 0ny 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 en0re PATH in the state space graph. We construct both on demand and we construct as li:le 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!

Tree Search

Search Example: Romania

Searching with a Search Tree Search: Expand out poten)al plans (tree nodes) Maintain a fringe of par)al plans under considera)on Try to expand as few tree nodes as possible

General Tree Search Important ideas: Fringe Expansion Explora)on strategy Main ques)on: which fringe nodes to explore?

Example: Tree Search b a c G S d h e f p q r

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 Implementa0on: Fringe is a LIFO stack

Search Algorithm Proper)es

Search Algorithm Proper)es Complete: Guaranteed to find a solu)on if one exists? Op)mal: 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 tiers b 2 nodes m is the maximum depth solu)ons at various depths b m nodes Number of nodes in en)re tree? 1 + b + b 2 +. b m = O(b m )

Depth-First Search (DFS) Proper)es What nodes DFS expand? Some leo prefix of the tree. Could process the whole tree! b 1 node b nodes If m is finite, takes )me O(b m ) 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 op)mal? No, it finds the leomost solu)on, regardless of depth or cost

Breadth-First Search

Breadth-First Search Strategy: expand a shallowest node first Implementa0on: Fringe is a FIFO queue S b p a d q c h e r f G 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) Proper)es What nodes does BFS expand? Processes all nodes above shallowest solu)on Let depth of shallowest solu)on be s Search takes )me O(b s ) s tiers b 1 node b nodes b 2 nodes How much space does the fringe take? b s nodes Has roughly the last )er, so O(b s ) Is it complete? s must be finite if a solu)on exists, so yes! b m nodes Is it op)mal? 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? [Demo: dfs/bfs maze water (L2D6)]

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

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

Itera)ve Deepening Idea: get DFS s space advantage with BFS s )me / shallow-solu)on advantages Run a DFS with depth limit 1. If no solu)on Run a DFS with depth limit 2. If no solu)on 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-Sensi)ve Search START 2 b 3 1 p 1 a d 2 c 3 8 2 e 9 8 2 h 4 4 15 q r GOAL 2 f 2 BFS finds the shortest path in terms of number of ac)ons. 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) b 3 S 1 2 p 1 a d 15 8 9 q 2 c h e 8 2 f r G 2 1 S 0 d 3 e 9 p 1 b 4 c 11 e 5 h 17 r 11 q 16 Cost contours a 6 a h 13 r 7 p q f p q f 8 q c G q 11 c G a 10 a

Uniform Cost Search (UCS) Proper)es What nodes does UCS expand? Processes all nodes with cost less than cheapest solu)on! If that solu)on costs C* and arcs cost at least ε, then the effec)ve depth is roughly C*/ε Takes )me O(b C*/ε ) (exponen)al in effec)ve depth) C*/ε tiers b c 1 c 2 c 3 How much space does the fringe take? Has roughly the last )er, so O(b C*/ε ) Is it complete? Assuming best solu)on has a finite cost and minimum arc cost is posi)ve, yes! Is it op)mal? Yes! (Proof next lecture via A*)

Uniform Cost Issues Remember: UCS explores increasing cost contours The good: UCS is complete and op)mal! c 1 c 2 c 3 The bad: Explores op)ons in every direc)on No informa)on about goal loca)on Start Goal We ll fix that soon! [Demo: empty grid UCS (L2D5)] [Demo: maze with deep/shallow water DFS/BFS/UCS (L2D7)]

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. collec)ons of nodes with asached priori)es) Prac)cally, 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 implementa)on 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 simula)on Your search is only as good as your models

Search Gone Wrong?