Top Banner
1 Logistics 1 Handout Copies of my slides Reading Recent Advances in AI Planning, sections 1-2
26

1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

Dec 21, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

1

Logistics

1 Handout Copies of my slides

Reading Recent Advances in AI Planning, sections 1-2

Page 2: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

2

2 Approaches to Agent Control

Reactive Control Set of situation-action rules E.g.

1) if dog-is-behind-methen run-forward

2) if food-is-nearthen eat

Planning Reason about effect of combinations of actions “Planning ahead” Avoiding “painting oneself into a corner”

Page 3: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

3

Different Planning Approaches

Generative Planning Reason from first principles (knowledge of actions) to

generate plan Requires formal model of actions

Case-Based Planning Retrieve old plan which worked for similar problem Revise retrieved plan for this problem

See also Policy Iteration / Markov-Decision Processes Reinforcement Learning

Page 4: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

4

Generative Planning

Input Description of initial state of world (in some

KR) Description of goal (in some KR) Description of available actions (in some KR)

Output Sequence of actions

Page 5: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

5

Input Representation

Description of initial state of world Set of propositions: ((block a) (block b) (block c) (on-table a) (on-

table b) (clear a) (clear b) (clear c) (arm-empty))Description of goal (i.e. set of desired worlds)

Logical conjunction Any world that satisfies the conjunction is a goal (and (on a b) (on b c)))

Description of available actions

Page 6: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

6

Representing Actions

STRIPS

UWLADL

SADL

Tra

ctab

leE

xpre

ssiv

e

Situation Calculus

Page 7: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

7

How Represent Actions?Simplifying assumptions

Atomic time Agent is omniscient (no sensing necessary). Agent is sole cause of change Actions have deterministic effects

STRIPS representation World = set of true propositions Actions:

Precondition: (conjunction of literals)Effects (conjunction of literals)

a

aa

north11 north12

W0 W2W1

Page 8: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

8

STRIPS ActionsAction =function from world-stateworld-statePrecondition says where function definedEffects say how to change set of propositions

aa

north11

W0 W1

north11precond: (and (agent-at 1 1)

(agent-facing north))

effect: (and (agent-at 1 2)

(not (agent-at 1 1)))

Note: str

ips doesn

’t

allow deri

ved effec

ts;

you must b

e complet

e!

Page 9: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

9

Action Schemata

(:operator pick-up :parameters ((block ?ob1)) :precondition (and (clear ?ob1)

(on-table ?ob1) (arm-empty))

:effect (and (not (clear ?ob1)) (not (on-table ?ob1))

(not (arm-empty)) (holding ?ob1)))

Instead of defining: pickup-A and pickup-B and …

Define a schema:Note: strips doesn’t

allow derived effects;

you must be complete!}

Page 10: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

10

Planning as Search

Nodes

Arcs

Initial State

Goal State

World states

Actions

The state satisfying the complete description of the initial conds

Any state satisfying the goal propositions

Page 11: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

11

Forward-Chaining World-Space Search

AC

BCBA

InitialState Goal

State

Page 12: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

12

Backward-Chaining Search Thru Space of Partial World-States

DCBA

E

D

CBA

E

DCBA

E

* * *

Problem: Many possible goal states are equally acceptable.

From which one does one search?

AC

B

Initial State is completely defined

DE

Page 13: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

13

“Causal Link” Planning

Nodes

Arcs

Initial State

Goal State

Partially specified plans

Adding + deleting actions or constraints (e.g. <) to plan

The empty plan(Actually two dummy actions…)

A plan which when simulated achieves the goalNeed efficient way to evaluate quality (percentage ofpreconditions satisfied) of partial plan …Hence causal link datastructures

Page 14: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

14

Plan-Space Search

pick-from-table(C)

pick-from-table(B)

pick-from-table(C)put-on(C,B)

How represent plans?How test if plan is a solution?

Page 15: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

15

Planning as Search 3Graphplan

Phase 1 - Graph Expansion Necessary (insufficient) conditions for plan

existence Local consistency of plan-as-CSP

Phase 2 - Solution Extraction Variables

action execution at a time point

Constraints goals, subgoals achievedno side-effects between actions

Page 16: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

16

Planning Graph

PropositionInit State

ActionTime 1

PropositionTime 1

ActionTime 2

Page 17: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

17

Constructing the planning graph…

Initial proposition layer Just the initial conditions

Action layer i If all of an action’s preconds are in i-1 Then add action to layer I

Proposition layer i+1 For each action at layer i Add all its effects at layer i+1

Page 18: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

18

Mutual Exclusion

Actions A,B exclusive (at a level) if A deletes B’s precond, or B deletes A’s precond, or A & B have inconsistent preconds

Propositions P,Q inconsistent (at a level) if all ways to achieve P exclude all ways to

achieve Q

Page 19: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

19

Graphplan

Create level 0 in planning graphLoop

If goal contents of highest level (nonmutex)

Then search graph for solutionIf find a solution then return and

terminate

Else Extend graph one more level

A kind of double search: forward direction checks necessary

(but insufficient) conditions for a solution, ...

Backward search verifies...

Page 20: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

20

Searching for a Solution

For each goal G at time t For each action A making G true @t

If A isn’t mutex with a previously chosen action, select it

If no actions work, backup to last G (breadth first search)

Recurse on preconditions of actions selected, t-1

PropositionInit State

ActionTime 1

PropositionTime 1

ActionTime 2

Page 21: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

21

Dinner Date

Initial Conditions: (:and (cleanHands) (quiet))

Goal: (:and (noGarbage) (dinner) (present))

Actions:(:operator carry :precondition

:effect (:and (noGarbage) (:not (cleanHands)))(:operator dolly :precondition

:effect (:and (noGarbage) (:not (quiet)))(:operator cook :precondition (cleanHands)

:effect (dinner))(:operator wrap :precondition (quiet)

:effect (present))

Page 22: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

22

Planning Graph noGarb

cleanH

quiet

dinner

present

carry

dolly

cook

wrap

cleanH

quiet

0 Prop 1 Action 2 Prop 3 Action 4 Prop

Page 23: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

23

Are there any exclusions? noGarb

cleanH

quiet

dinner

present

carry

dolly

cook

wrap

cleanH

quiet

0 Prop 1 Action 2 Prop 3 Action 4 Prop

Page 24: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

24

Do we have a solution? noGarb

cleanH

quiet

dinner

present

carry

dolly

cook

wrap

cleanH

quiet

0 Prop 1 Action 2 Prop 3 Action 4 Prop

Page 25: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

25

Extend the Planning Graph noGarb

cleanH

quiet

dinner

present

carry

dolly

cook

wrap

carry

dolly

cook

wrap

cleanH

quiet

noGarb

cleanH

quiet

dinner

present

0 Prop 1 Action 2 Prop 3 Action 4 Prop

Page 26: 1 Logistics z1 Handout yCopies of my slides zReading yRecent Advances in AI Planning, sections 1-2.

26

One (of 4) possibilities noGarb

cleanH

quiet

dinner

present

carry

dolly

cook

wrap

carry

dolly

cook

wrap

cleanH

quiet

noGarb

cleanH

quiet

dinner

present

0 Prop 1 Action 2 Prop 3 Action 4 Prop