Week 3 - Forward chaining, RPG

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Given a domain, how do we solve a problem?

With forward-chain planning or RPG

2
New cards

What is forward-chain planning?

A method of automated planning where we choose some state s and expand on it until we reach the goal state

3
New cards

What state do we always start from in forward-chain planning?

From the initial state

4
New cards

When we expand on a state in forward-chain planning, what do we do?

Choose from the set of applicable actions in that state

5
New cards

How do we get the set of applicable actions in a state?

We find all actions whose preconditions are satisfied in the given state

6
New cards

How do we generate the successor state s’ after applying an action α in state s?

s’ = s - {delete effects of α} + {add effects of α}

7
New cards

How do we create a plan for successor state s’ after applying action α in state s?

Chain action α onto the end of the plan for state s

8
New cards

What is the plan generated by forward-chain planning?

A sequence of actions from the set of all domain actions A that transform the initial state to the goal state

9
New cards

What is domain-independent planning?

Planning where the defined heuristics work for any PDDL domain

10
New cards

How can domain-independent planning be achieved?

Through RPG

11
New cards

What does RPG stand for?

Relaxed Planning Graph

12
New cards

What is RPG?

A planner that finds a plan from the current state S that achieves goals G while ignoring the delete effects of each action

13
New cards

What is the structure of an RPG?

Alternating fact and action layers

14
New cards

What is a fact layer in an RPG?

  • Defines the state at time n

  • Determines which actions’ preconditions are satisfied in f(n) and can appear in the action layer a(n+1)

15
New cards

For a fact layer f(n) and action layer a(n+1), how can we define the next fact layer f(n+1)?

f(n+1) = f(n) + all add effects of actions in a(n+1)

16
New cards

What is the plan generated by RPG called?

Relaxed solution plan

17
New cards

What is defined in a relaxed solution plan?

A collection where each element at index i is the set of actions selected in parallel at time step i

18
New cards

What is the heuristic function of an RPG?

The sum of the magnitude of all elements in a relaxed solution plan

19
New cards

How can we extract a solution from an RPG?

  1. Work backwards through the RPG

  2. Start with g(n) which contains the problem’s goal

  3. For each fact in g(n),

    1. If it was in f(n-1), add it to g(n-1)

    2. Else choose an action from a(n) and add its' preconditions to g(n-1)

  4. Stop when we reach g(0)