SlideShare a Scribd company logo
1 of 9
Download to read offline
Module
     9
Planning
Version 2 CSE IIT, Kharagpur
9.1 Instructional Objective
•   The students should understand the formulation of planning problems
•   The student should understand the difference between problem solving and planning
    and the need for knowledge representation in large scale problem solving
•   Students should understand the STRIPS planning language
•   Students should be able to represent a real life planning problem using STRIPS
    operators
•   Students should understand planning using situation calculus and the related frame
    problems
•   Students should understand the formulation of planning as a search problem
•   Students should learn the following planning algorithms
       o Situation space planning
       o Plan space planning
       o Progression planning
       o Regression planning
•   The student should understand the difficulties of full commitment planning
•   Students should understand the necessity of least commitment
•   Students should learn partial order planning algorithms

At the end of this lesson the student should be able to do the following:
    • Represent a planning problem in STRIPS language
    • Use a suitable planning algorithm to solve the problem.




                                                            Version 2 CSE IIT, Kharagpur
Lesson
               22
Logic based planning
            Version 2 CSE IIT, Kharagpur
9. 1 Introduction to Planning
The purpose of planning is to find a sequence of actions that achieves a given goal when
performed starting in a given state. In other words, given a set of operator instances
(defining the possible primitive actions by the agent), an initial state description, and a
goal state description or predicate, the planning agent computes a plan.




What is a plan? A sequence of operator instances, such that "executing" them in the
initial state will change the world to a state satisfying the goal state description. Goals
are usually specified as a conjunction of goals to be achieved.

9.1.1 A Simple Planning Agent:
Earlier we saw that problem-solving agents are able to plan ahead - to consider the
consequences of sequences of actions - before acting. We also saw that a knowledge-
based agents can select actions based on explicit, logical representations of the current
state and the effects of actions. This allows the agent to succeed in complex, inaccessible
environments that are too difficult for a problem-solving agent

Problem Solving Agents + Knowledge-based Agents = Planning Agents
In this module, we put these two ideas together to build planning agents. At the most
abstract level, the task of planning is the same as problem solving. Planning can be
viewed as a type of problem solving in which the agent uses beliefs about actions and
their consequences to search for a solution over the more abstract space of plans, rather
than over the space of situations

6.1.2 Algorithm of a simple planning agent:

   1.   Generate a goal to achieve
   2.   Construct a plan to achieve goal from current state
   3.   Execute plan until finished
   4.   Begin again with new goal

                                                              Version 2 CSE IIT, Kharagpur
The agent first generates a goal to achieve, and then constructs a plan to achieve it from
the current state. Once it has a plan, it keeps executing it until the plan is finished, then
begins again with a new goal.

This is illustrated in the following pseudocode:

function SIMPLE-PLANNING-AGENT (percept) returns an action
  static: KB, a knowledge base(includes action descriptions)
           p , a plan, initially NoPlan
           t, a counter, initially 0, indicating time
   local variables: G, a goal
                      current, a current state description

 TELL(KB, MAKE-PERCEPT-SENTENCE (percept,t))
 current <- STATE-DESCRIPTION(KB, t)
  if p = NoPlan then
      G <- ASK (KB, MAKE-GOAL-QUERY(t))
      p <- IDEAL-PLANNER(current, G, KB)
  if p = NoPlan or p is empty then action <- NoOp
  else
      action <- FIRST(p)
      p <- REST(p)
  TELL(KB, MAKE-ACTION-SENTENCE(action,t))
  t <- t+ 1
  return action

Functions:
STATE-DESCRIPTION: uses a percept as input and returns the description of the initial
state      in   a        format        required      for        the         planner.
IDEAL-PLANNER: is the planning algorithm and can be any planner described in these
notes                   or                      chapter                          11.
MAKE-GOAL-QUERY: asks the knowledge base what the next goal will be.

    The agent in the above algorithm has to check if the goal is feasible or if the complete
plan is empty. If the goal is not feasible, it ignores it and tries another goal. If the
complete plan was empty then the initial state was also the goal state.

Assumptions:
A simple planning agent create and use plans based on the following assumptions:

   •   Atomic time: each action is indivisible
   •   No concurrent actions allowed
   •   Deterministic actions: result of each actions is completely determined by the
       definition of the action, and there is no uncertainty in performing it in the world.
   •   Agent is the sole cause of change in the world.
   •   Agent is omniscient: has complete knowledge of the state of the world

                                                             Version 2 CSE IIT, Kharagpur
•   Closed world assumption: everything known to be true in the world is included
       in a state description. Anything not listed is false

9.1.3 Problem Solving vs. Planning
A simple planning agent is very similar to problem-solving agents in that it constructs
plans that achieve its goals, and then executes them. The limitations of the problem-
solving approach motivates the design of planning systems.
To solve a planning problem using a state-space search approach we would let the:
    • initial state = initial situation
    • goal-test predicate = goal state description
    • successor function computed from the set of operators
    • once a goal is found, solution plan is the sequence of operators in the path from
       the start node to the goal node

In searches, operators are used simply to generate successor states and we can not look
"inside" an operator to see how it’s defined. The goal-test predicate also is used as a
"black box" to test if a state is a goal or not. The search cannot use properties of how a
goal is defined in order to reason about finding path to that goal. Hence this approach is
all algorithm and representation weak.

Planning is considered different from problem solving because of the difference in the
way they represent states, goals, actions, and the differences in the way they construct
action sequences.

Remember the search-based problem solver had four basic elements:

   • Representations of actions: programs that develop successor state descriptions which
represent actions.

   • Representation of state: every state description is complete. This is because a
complete description of the initial state is given, and actions are represented by a program
that creates complete state descriptions.

   • Representation of goals: a problem solving agent has only information about it's
goal, which is in terms of a goal test and the heuristic function.

   • Representation of plans: in problem solving, the solution is a sequence of actions.

In a simple problem: "Get a quart of milk and a bunch of bananas and a variable speed
cordless drill" for a problem solving exercise we need to specify:

   Initial State: the agent is at home without any objects that he is wanting.

   Operator Set: everything the agent can do.


                                                             Version 2 CSE IIT, Kharagpur
Heuristic function: the # of things that have not yet been acquired.




Problems with Problem solving agent:

   •   It is evident from the above figure that the actual branching factor would be in the
       thousands or millions. The heuristic evaluation function can only choose states to
       determine which one is closer to the goal. It cannot eliminate actions from
       consideration. The agent makes guesses by considering actions and the evaluation
       function ranks those guesses. The agent picks the best guess, but then has no idea
       what to try next and therefore starts guessing again.

   •   It considers sequences of actions beginning from the initial state. The agent is
       forced to decide what to do in the initial state first, where possible choices are to
       go to any of the next places. Until the agent decides how to acquire the objects, it
       can't decide where to go.

Planning emphasizes what is in operator and goal representations. There are three key
ideas behind planning:
    • to "open up" the representations of state, goals, and operators so that a reasoner
       can more intelligently select actions when they are needed
    • the planner is free to add actions to the plan wherever they are needed, rather
       than in an incremental sequence starting at the initial state
    • most parts of the world are independent of most other parts which makes it
       feasible to take a conjunctive goal and solve it with a divide-and-conquer strategy



                                                            Version 2 CSE IIT, Kharagpur
9.2 Logic Based Planning
9.2.1 Situation Calculus
Situation calculus is a version of first-order-logic (FOL) that is augmented so that it can
reason about actions in time.

   •   Add situation variables to specify time. A situation is a snapshot of the world at
       an interval of time when nothing changes
   •   Add a special predicate holds(f,s) that means "f is true in situation s"
   •   Add a function result(a,s) that maps the current situation s into a new situation as
       a result of performing action a.

Example:
The action "agent-walks-to-location-y" could be represented by:
(Ax)(Ay)(As)(at(Agent,x,s) -> at(Agent,y,result(walk(y),s))

9.2.1.1 Frame Problem
Actions in Situation Calculus describe what they change, not what they don’t change. So,
how do we know what’s still true in the new situation? To fix this problem we add a set
of frame axioms that explicitly state what doesn’t change.

Example:
When the agent walks to a location, the locations of most other objects in the world do
not change. So for each object (i.e. a bunch of bananas), add an axiom like:
(Ax)(Ay)(As)(at(Bananas,x,s) -> at(Bananas,x,result(walk(y),s))

9.2.2 Solving planning problems using situation calculus
Using situation calculus a planning algorithm is represented by logical sentences that
describe the three main parts of a problem. This is illustrated using the problem described
in AI: A Modern Approach by Russell & Norvig.

   1. Initial State: a logical sentence of a situation So.

                For the shopping problem it could be:
          At(Home,So) / -Have(Milk,So) / -Have(Bananas,So) / -Have(Drill,So)

   2. Goal State: a logical query asking for a suitable situation.

                  For the shopping problem, a query is:
           $ s At(Home,s) / Have(Milk,s) / Have(Bananas,s) / Have(Drill,s)

   3. Operators: a set of descriptions of actions.
                 Ex. A successor-state action with the Buy(Milk) action


                                                             Version 2 CSE IIT, Kharagpur
" a,s Have(Milk,Result(a,s)) <=> [(a = Buy(milk) / At(supermarket,s)
/ (Have(Milk,s) / a NOT= Drop(Milk))]

Result(a,s) names the situation resulting from being in s while executing action a.
It will be useful to handle action sequences than just a single action. We can use Result'
(l,s) to mean the situation resulting from executing l (the sequence of actions) beginning
in s. Result' is described by saying that an empty sequence of actions will not effect the
situation, and a non-empty sequence of actions is the same as doing the first action and
then finishing the rest of the actions from the resulting situation.

Empty sequence of actions is represented as:
     " s Result' ([],s) = s

Non-empty sequence of actions is represented as:
     " a,p,s Result' ([a|p],s) = Result' (p, Result(a,s))

p is a plan and when applied to start state So, develops a situation which satisfies the goal
query.

p could be:
       At(home, Result' (p,So)) / Have(Milk, Result' (p,So)) / Have(Bananas, Result'
(p,So)) / Have(Drill,Result' (p,So))

The goal query could be:

          G = [Go(Supermarket), Buy(Milk), Buy(Banana), Go(Hardware Store),
Buy(Drill), Go(Home)]

In theory, there isn't much more to say. Doing planning this way doesn't guarantee a
practical solution. Plan p guarantees to achieve the goal but not necessarily efficiently.
This approach is representation strong, but reasoning weak because of the poor efficiency
of resolution.

Practical Planning:

To make planning practical we need to do 2 things:
   1. Restrict the language with which we define problems. With a restrictive language,
       there are fewer possible solutions to search through.
Use a special-purpose algorithm called a planner rather than a general-purpose theorem
prover to search for a solution.




                                                             Version 2 CSE IIT, Kharagpur

More Related Content

Viewers also liked (7)

Lesson 20
Lesson 20Lesson 20
Lesson 20
 
Lesson 23
Lesson 23Lesson 23
Lesson 23
 
Lesson 21
Lesson 21Lesson 21
Lesson 21
 
Lesson 25
Lesson 25Lesson 25
Lesson 25
 
Lesson 24
Lesson 24Lesson 24
Lesson 24
 
Lesson 18
Lesson 18Lesson 18
Lesson 18
 
Lesson 19
Lesson 19Lesson 19
Lesson 19
 

Similar to Lesson 22

Automatic Problem Solving
Automatic Problem SolvingAutomatic Problem Solving
Automatic Problem SolvingHannah Baker
 
An efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningAn efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningPrabhu Kumar
 
AI-03 Problems State Space.pptx
AI-03 Problems State Space.pptxAI-03 Problems State Space.pptx
AI-03 Problems State Space.pptxPankaj Debbarma
 
Introduction Construction Planning and Management
Introduction Construction Planning and Management Introduction Construction Planning and Management
Introduction Construction Planning and Management Akhil Shetty
 
chapterThree.pptx
chapterThree.pptxchapterThree.pptx
chapterThree.pptxchalachew5
 
Structure of agents
Structure of agentsStructure of agents
Structure of agentsMANJULA_AP
 
Overview of a Self-Adaptive Workflow System
Overview of a Self-Adaptive Workflow SystemOverview of a Self-Adaptive Workflow System
Overview of a Self-Adaptive Workflow SystemLuca Sabatucci
 
AI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptxAI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptxYousef Aburawi
 
automatedplannning_PirevaKefalasCowling.pdf
automatedplannning_PirevaKefalasCowling.pdfautomatedplannning_PirevaKefalasCowling.pdf
automatedplannning_PirevaKefalasCowling.pdfPedro Luis Moraes
 

Similar to Lesson 22 (20)

CH4_AI_Lecture.ppt
CH4_AI_Lecture.pptCH4_AI_Lecture.ppt
CH4_AI_Lecture.ppt
 
AI_unit IV Full Notes.pdf
AI_unit IV Full Notes.pdfAI_unit IV Full Notes.pdf
AI_unit IV Full Notes.pdf
 
Week 3.pdf
Week 3.pdfWeek 3.pdf
Week 3.pdf
 
Automatic Problem Solving
Automatic Problem SolvingAutomatic Problem Solving
Automatic Problem Solving
 
AI: Logic in AI 2
AI: Logic in AI 2AI: Logic in AI 2
AI: Logic in AI 2
 
AI: Logic in AI 2
AI: Logic in AI 2AI: Logic in AI 2
AI: Logic in AI 2
 
AI Lesson 03
AI Lesson 03AI Lesson 03
AI Lesson 03
 
Planning
Planning Planning
Planning
 
RPT_AI-06_A_Planning Intro.ppt
RPT_AI-06_A_Planning Intro.pptRPT_AI-06_A_Planning Intro.ppt
RPT_AI-06_A_Planning Intro.ppt
 
An efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningAn efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game Learning
 
AI-03 Problems State Space.pptx
AI-03 Problems State Space.pptxAI-03 Problems State Space.pptx
AI-03 Problems State Space.pptx
 
aiNew.pptx
aiNew.pptxaiNew.pptx
aiNew.pptx
 
AI_Planning.pdf
AI_Planning.pdfAI_Planning.pdf
AI_Planning.pdf
 
CH2_AI_Lecture1.ppt
CH2_AI_Lecture1.pptCH2_AI_Lecture1.ppt
CH2_AI_Lecture1.ppt
 
Introduction Construction Planning and Management
Introduction Construction Planning and Management Introduction Construction Planning and Management
Introduction Construction Planning and Management
 
chapterThree.pptx
chapterThree.pptxchapterThree.pptx
chapterThree.pptx
 
Structure of agents
Structure of agentsStructure of agents
Structure of agents
 
Overview of a Self-Adaptive Workflow System
Overview of a Self-Adaptive Workflow SystemOverview of a Self-Adaptive Workflow System
Overview of a Self-Adaptive Workflow System
 
AI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptxAI_02_Intelligent Agents.pptx
AI_02_Intelligent Agents.pptx
 
automatedplannning_PirevaKefalasCowling.pdf
automatedplannning_PirevaKefalasCowling.pdfautomatedplannning_PirevaKefalasCowling.pdf
automatedplannning_PirevaKefalasCowling.pdf
 

More from Avijit Kumar (14)

Lesson 26
Lesson 26Lesson 26
Lesson 26
 
Lesson 27
Lesson 27Lesson 27
Lesson 27
 
Lesson 29
Lesson 29Lesson 29
Lesson 29
 
Lesson 30
Lesson 30Lesson 30
Lesson 30
 
Lesson 31
Lesson 31Lesson 31
Lesson 31
 
Lesson 32
Lesson 32Lesson 32
Lesson 32
 
Lesson 33
Lesson 33Lesson 33
Lesson 33
 
Lesson 36
Lesson 36Lesson 36
Lesson 36
 
Lesson 35
Lesson 35Lesson 35
Lesson 35
 
Lesson 37
Lesson 37Lesson 37
Lesson 37
 
Lesson 39
Lesson 39Lesson 39
Lesson 39
 
Lesson 38
Lesson 38Lesson 38
Lesson 38
 
Lesson 41
Lesson 41Lesson 41
Lesson 41
 
Lesson 40
Lesson 40Lesson 40
Lesson 40
 

Recently uploaded

“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 

Recently uploaded (20)

“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 

Lesson 22

  • 1. Module 9 Planning Version 2 CSE IIT, Kharagpur
  • 2. 9.1 Instructional Objective • The students should understand the formulation of planning problems • The student should understand the difference between problem solving and planning and the need for knowledge representation in large scale problem solving • Students should understand the STRIPS planning language • Students should be able to represent a real life planning problem using STRIPS operators • Students should understand planning using situation calculus and the related frame problems • Students should understand the formulation of planning as a search problem • Students should learn the following planning algorithms o Situation space planning o Plan space planning o Progression planning o Regression planning • The student should understand the difficulties of full commitment planning • Students should understand the necessity of least commitment • Students should learn partial order planning algorithms At the end of this lesson the student should be able to do the following: • Represent a planning problem in STRIPS language • Use a suitable planning algorithm to solve the problem. Version 2 CSE IIT, Kharagpur
  • 3. Lesson 22 Logic based planning Version 2 CSE IIT, Kharagpur
  • 4. 9. 1 Introduction to Planning The purpose of planning is to find a sequence of actions that achieves a given goal when performed starting in a given state. In other words, given a set of operator instances (defining the possible primitive actions by the agent), an initial state description, and a goal state description or predicate, the planning agent computes a plan. What is a plan? A sequence of operator instances, such that "executing" them in the initial state will change the world to a state satisfying the goal state description. Goals are usually specified as a conjunction of goals to be achieved. 9.1.1 A Simple Planning Agent: Earlier we saw that problem-solving agents are able to plan ahead - to consider the consequences of sequences of actions - before acting. We also saw that a knowledge- based agents can select actions based on explicit, logical representations of the current state and the effects of actions. This allows the agent to succeed in complex, inaccessible environments that are too difficult for a problem-solving agent Problem Solving Agents + Knowledge-based Agents = Planning Agents In this module, we put these two ideas together to build planning agents. At the most abstract level, the task of planning is the same as problem solving. Planning can be viewed as a type of problem solving in which the agent uses beliefs about actions and their consequences to search for a solution over the more abstract space of plans, rather than over the space of situations 6.1.2 Algorithm of a simple planning agent: 1. Generate a goal to achieve 2. Construct a plan to achieve goal from current state 3. Execute plan until finished 4. Begin again with new goal Version 2 CSE IIT, Kharagpur
  • 5. The agent first generates a goal to achieve, and then constructs a plan to achieve it from the current state. Once it has a plan, it keeps executing it until the plan is finished, then begins again with a new goal. This is illustrated in the following pseudocode: function SIMPLE-PLANNING-AGENT (percept) returns an action static: KB, a knowledge base(includes action descriptions) p , a plan, initially NoPlan t, a counter, initially 0, indicating time local variables: G, a goal current, a current state description TELL(KB, MAKE-PERCEPT-SENTENCE (percept,t)) current <- STATE-DESCRIPTION(KB, t) if p = NoPlan then G <- ASK (KB, MAKE-GOAL-QUERY(t)) p <- IDEAL-PLANNER(current, G, KB) if p = NoPlan or p is empty then action <- NoOp else action <- FIRST(p) p <- REST(p) TELL(KB, MAKE-ACTION-SENTENCE(action,t)) t <- t+ 1 return action Functions: STATE-DESCRIPTION: uses a percept as input and returns the description of the initial state in a format required for the planner. IDEAL-PLANNER: is the planning algorithm and can be any planner described in these notes or chapter 11. MAKE-GOAL-QUERY: asks the knowledge base what the next goal will be. The agent in the above algorithm has to check if the goal is feasible or if the complete plan is empty. If the goal is not feasible, it ignores it and tries another goal. If the complete plan was empty then the initial state was also the goal state. Assumptions: A simple planning agent create and use plans based on the following assumptions: • Atomic time: each action is indivisible • No concurrent actions allowed • Deterministic actions: result of each actions is completely determined by the definition of the action, and there is no uncertainty in performing it in the world. • Agent is the sole cause of change in the world. • Agent is omniscient: has complete knowledge of the state of the world Version 2 CSE IIT, Kharagpur
  • 6. Closed world assumption: everything known to be true in the world is included in a state description. Anything not listed is false 9.1.3 Problem Solving vs. Planning A simple planning agent is very similar to problem-solving agents in that it constructs plans that achieve its goals, and then executes them. The limitations of the problem- solving approach motivates the design of planning systems. To solve a planning problem using a state-space search approach we would let the: • initial state = initial situation • goal-test predicate = goal state description • successor function computed from the set of operators • once a goal is found, solution plan is the sequence of operators in the path from the start node to the goal node In searches, operators are used simply to generate successor states and we can not look "inside" an operator to see how it’s defined. The goal-test predicate also is used as a "black box" to test if a state is a goal or not. The search cannot use properties of how a goal is defined in order to reason about finding path to that goal. Hence this approach is all algorithm and representation weak. Planning is considered different from problem solving because of the difference in the way they represent states, goals, actions, and the differences in the way they construct action sequences. Remember the search-based problem solver had four basic elements: • Representations of actions: programs that develop successor state descriptions which represent actions. • Representation of state: every state description is complete. This is because a complete description of the initial state is given, and actions are represented by a program that creates complete state descriptions. • Representation of goals: a problem solving agent has only information about it's goal, which is in terms of a goal test and the heuristic function. • Representation of plans: in problem solving, the solution is a sequence of actions. In a simple problem: "Get a quart of milk and a bunch of bananas and a variable speed cordless drill" for a problem solving exercise we need to specify: Initial State: the agent is at home without any objects that he is wanting. Operator Set: everything the agent can do. Version 2 CSE IIT, Kharagpur
  • 7. Heuristic function: the # of things that have not yet been acquired. Problems with Problem solving agent: • It is evident from the above figure that the actual branching factor would be in the thousands or millions. The heuristic evaluation function can only choose states to determine which one is closer to the goal. It cannot eliminate actions from consideration. The agent makes guesses by considering actions and the evaluation function ranks those guesses. The agent picks the best guess, but then has no idea what to try next and therefore starts guessing again. • It considers sequences of actions beginning from the initial state. The agent is forced to decide what to do in the initial state first, where possible choices are to go to any of the next places. Until the agent decides how to acquire the objects, it can't decide where to go. Planning emphasizes what is in operator and goal representations. There are three key ideas behind planning: • to "open up" the representations of state, goals, and operators so that a reasoner can more intelligently select actions when they are needed • the planner is free to add actions to the plan wherever they are needed, rather than in an incremental sequence starting at the initial state • most parts of the world are independent of most other parts which makes it feasible to take a conjunctive goal and solve it with a divide-and-conquer strategy Version 2 CSE IIT, Kharagpur
  • 8. 9.2 Logic Based Planning 9.2.1 Situation Calculus Situation calculus is a version of first-order-logic (FOL) that is augmented so that it can reason about actions in time. • Add situation variables to specify time. A situation is a snapshot of the world at an interval of time when nothing changes • Add a special predicate holds(f,s) that means "f is true in situation s" • Add a function result(a,s) that maps the current situation s into a new situation as a result of performing action a. Example: The action "agent-walks-to-location-y" could be represented by: (Ax)(Ay)(As)(at(Agent,x,s) -> at(Agent,y,result(walk(y),s)) 9.2.1.1 Frame Problem Actions in Situation Calculus describe what they change, not what they don’t change. So, how do we know what’s still true in the new situation? To fix this problem we add a set of frame axioms that explicitly state what doesn’t change. Example: When the agent walks to a location, the locations of most other objects in the world do not change. So for each object (i.e. a bunch of bananas), add an axiom like: (Ax)(Ay)(As)(at(Bananas,x,s) -> at(Bananas,x,result(walk(y),s)) 9.2.2 Solving planning problems using situation calculus Using situation calculus a planning algorithm is represented by logical sentences that describe the three main parts of a problem. This is illustrated using the problem described in AI: A Modern Approach by Russell & Norvig. 1. Initial State: a logical sentence of a situation So. For the shopping problem it could be: At(Home,So) / -Have(Milk,So) / -Have(Bananas,So) / -Have(Drill,So) 2. Goal State: a logical query asking for a suitable situation. For the shopping problem, a query is: $ s At(Home,s) / Have(Milk,s) / Have(Bananas,s) / Have(Drill,s) 3. Operators: a set of descriptions of actions. Ex. A successor-state action with the Buy(Milk) action Version 2 CSE IIT, Kharagpur
  • 9. " a,s Have(Milk,Result(a,s)) <=> [(a = Buy(milk) / At(supermarket,s) / (Have(Milk,s) / a NOT= Drop(Milk))] Result(a,s) names the situation resulting from being in s while executing action a. It will be useful to handle action sequences than just a single action. We can use Result' (l,s) to mean the situation resulting from executing l (the sequence of actions) beginning in s. Result' is described by saying that an empty sequence of actions will not effect the situation, and a non-empty sequence of actions is the same as doing the first action and then finishing the rest of the actions from the resulting situation. Empty sequence of actions is represented as: " s Result' ([],s) = s Non-empty sequence of actions is represented as: " a,p,s Result' ([a|p],s) = Result' (p, Result(a,s)) p is a plan and when applied to start state So, develops a situation which satisfies the goal query. p could be: At(home, Result' (p,So)) / Have(Milk, Result' (p,So)) / Have(Bananas, Result' (p,So)) / Have(Drill,Result' (p,So)) The goal query could be: G = [Go(Supermarket), Buy(Milk), Buy(Banana), Go(Hardware Store), Buy(Drill), Go(Home)] In theory, there isn't much more to say. Doing planning this way doesn't guarantee a practical solution. Plan p guarantees to achieve the goal but not necessarily efficiently. This approach is representation strong, but reasoning weak because of the poor efficiency of resolution. Practical Planning: To make planning practical we need to do 2 things: 1. Restrict the language with which we define problems. With a restrictive language, there are fewer possible solutions to search through. Use a special-purpose algorithm called a planner rather than a general-purpose theorem prover to search for a solution. Version 2 CSE IIT, Kharagpur