• Keine Ergebnisse gefunden

A2. What is Planning?

N/A
N/A
Protected

Academic year: 2022

Aktie "A2. What is Planning?"

Copied!
9
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Planning and Optimization

A2. What is Planning?

Gabriele R¨ oger and Thomas Keller

Universit¨ at Basel

September 19, 2018

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 1 / 34

Planning and Optimization

September 19, 2018 — A2. What is Planning?

A2.1 Planning

A2.2 Planning Task Examples A2.3 How Hard is Planning?

A2.4 Getting to Know a Classical Planner A2.5 Summary

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 2 / 34

Content of this Course

Planning

Classical

Tasks Progression/

Regression Complexity Heuristics

Probabilistic

MDPs Uninformed Search

Heuristic Search Monte-Carlo

Before We Start. . .

today: a very high-level introduction to planning

I our goal: give you a little feeling what planning is about

I preface to the actual course

“actual” content (beginning on October 1) will be mathematically formal and rigorous

I You can ignore this chapter when preparing for the exam.

(2)

A2. What is Planning? Planning

A2.1 Planning

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 5 / 34

A2. What is Planning? Planning

General Problem Solving

Wikipedia: General Problem Solver

General Problem Solver (GPS) was a computer program created in 1959 by Herbert Simon, J.C. Shaw, and Allen Newell

intended to work as a universal problem solver machine.

Any formalized symbolic problem can be solved, in principle, by GPS. [. . . ]

GPS was the first computer program which separated its

knowledge of problems (rules represented as input data) from its strategy of how to solve problems (a generic solver engine).

these days called “domain-independent automated planning”

this is what the course is about

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 6 / 34

A2. What is Planning? Planning

So What is Domain-Independent Automated Planning?

Automated Planning (Pithy Definition)

“Planning is the art and practice of thinking before acting.”

— Patrik Haslum Automated Planning (More Technical Definition)

“Selecting a goal-leading course of action based on a high-level description of the world.”

— J¨ org Hoffmann Domain-Independence of Automated Planning

Create one planning algorithm that performs sufficiently well on many application domains (including future ones).

A2. What is Planning? Planning

General Perspective on Planning

(3)

Example: Earth Observation

I satellite takes images of patches on Earth

I use weather forecast to optimize probability of high-quality images

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 9 / 34

Example: Termes

Harvard TERMES robots, based on termites.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 10 / 34

A2. What is Planning? Planning

Example: Cybersecurity

CALDERA automated adversary emulation system

A2. What is Planning? Planning

Example: Intelligent Greenhouse

photo cLemnaTec GmbH

(4)

A2. What is Planning? Planning

Example: Red-finned Blue-eye

Picture by Iadine Chad`es

I Red-finned Blue-eye population threatened by Gambusia

I springs connected probabilistically during rain season

I find strategy to save Red-finned Blue-eye from extinction

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 13 / 34

A2. What is Planning? Planning

Classical Planning

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 14 / 34

A2. What is Planning? Planning

Probabilistic Planning

A2. What is Planning? Planning

Model-based vs. Data-driven Approaches

Model-based approaches know the

“inner-workings” of the world

→ reasoning

Data-driven approaches rely only on collected data from a black-box world

→ learning

We concentrate on model-based approaches.

(5)

Planning Tasks

input to a planning algorithm: planning task

I initial state of the world

I actions that change the state

I goal to be achieved output of a planning algorithm:

I plan (classical setting)

I

sequence of actions that takes initial state to a goal state

I policy (probabilistic setting)

I

function that returns for each state the action to take

I Why different concepts?

formal definitions later in the course

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 17 / 34

A2.2 Planning Task Examples

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 18 / 34

A2. What is Planning? Planning Task Examples

Example: Intelligent Greenhouse

photo cLemnaTec GmbH

Demo

A2. What is Planning? Planning Task Examples

Example: FreeCell

image credits: GNOME Project (GNU General Public License)

Demo Material

$ ls classical/demo/ipc/freecell

(6)

A2. What is Planning? Planning Task Examples

Many More Examples

Demo

$ ls classical/demo/ipc agricola-opt18-strips agricola-sat18-strips airport

airport-adl assembly

barman-mco14-strips barman-opt11-strips barman-opt14-strips barman-sat11-strips barman-sat14-strips blocks

caldera-opt18-adl . . .

(most) benchmarks of planning competitions IPC 1998–2018

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 21 / 34

A2. What is Planning? How Hard is Planning?

A2.3 How Hard is Planning?

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 22 / 34

A2. What is Planning? How Hard is Planning?

Classical Planning as State-Space Search

much more on this later in the course

A2. What is Planning? How Hard is Planning?

Is Planning Difficult?

Classical planning is computationally challenging:

I number of states grows exponentially with description size when using (propositional) logic-based representations

I provably hard (PSPACE-complete) we prove this later in the course Problem sizes:

I Seven Bridges of K¨ onigsberg: 64 reachable states

I Rubik’s Cube: 4.325 · 10 19 reachable states consider 2 billion/second 1 billion years

I standard benchmarks: some with > 10 200 reachable states

(7)

A2.4 Getting to Know a Classical Planner

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 25 / 34

Getting to Know a Planner

We now play around a bit with a planner and its input:

I look at problem formulation

I run a planner (= planning system/planning algorithm)

I validate plans found by the planner

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 26 / 34

A2. What is Planning? Getting to Know a Classical Planner

Planner: Fast Downward

Fast Downward

We use the Fast Downward planner in this course

I because we know it well (developed by our research group)

I because it implements many search algorithms and heuristics

I because it is the classical planner most commonly used as a basis for other planners these days

I http://www.fast-downward.org

A2. What is Planning? Getting to Know a Classical Planner

Validator: VAL

VAL

We use the VAL plan validation tool (Fox, Howey & Long) to independently verify that the plans we generate are correct.

I very useful debugging tool

I https://github.com/KCL-Planning/VAL

Because of bugs/limitations of VAL, we will also occasionally use

another validator called INVAL (by Patrik Haslum).

(8)

A2. What is Planning? Getting to Know a Classical Planner

Illustrating Example: The Seven Bridges of K¨ onigsberg

image credits: GNOME Project (GNU General Public License)

Demo

$ ls classical/demo/koenigsberg

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 29 / 34

A2. What is Planning? Getting to Know a Classical Planner

Trying to Solve the Problem

Demo

$ cd classical/demo

$ less koenigsberg/bridges.pddl

$ less koenigsberg/euler-koenigsberg.pddl

$ ./fast-downward.py \

koenigsberg/bridges.pddl \

koenigsberg/euler-koenigsberg.pddl \ --heuristic "h=ff()" \

--search "eager_greedy([h],preferred=[h])"

Famous unsolvable problem

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 30 / 34

A2. What is Planning? Getting to Know a Classical Planner

Variation: Allow Reusing Bridges

Demo

$ meld koenigsberg/bridges.pddl \

koenigsberg/bridges-modified.pddl

$ ./fast-downward.py \

koenigsberg/bridges-modified.pddl \ koenigsberg/euler-koenigsberg.pddl \ --heuristic "h=ff()" \

--search "eager_greedy([h],preferred=[h])"

. . .

$ validate koenigsberg/bridges-modified.pddl \ koenigsberg/eukler-koenigsberg.pddl \ sas_plan

. . .

A2. What is Planning? Getting to Know a Classical Planner

Variation: Modern Koenigsberg

Demo

$ meld koenigsberg/euler-koenigsberg.pddl \ koenigsberg/modern-koenigsberg.pddl . . .

solvable with original problem definition?

(9)

A2.5 Summary

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 33 / 34

Summary

I planning = thinking before acting

I major subarea of Artificial Intelligence

I domain-independent planning = general problem solving

I classical planning = the “easy case”

(deterministic, fully observable etc.)

I still hard enough!

PSPACE-complete because of huge number of states

I probabilistic planning considers stochastic action outcomes and exogenous events.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization September 19, 2018 34 / 34

Referenzen

ÄHNLICHE DOKUMENTE

in terms of different state variables (Boolean or finite domain) individual state variables induce atomic propositions.. a state is a valuation of state variables n Boolean

FF (Hoffmann & Nebel, 2001) problem class: satisficing algorithm class: explicit search search direction: forward search. search algorithm: enforced hill-climbing heuristic:

domain-independent planning = general problem solving classical planning = the “easy case”. (deterministic, fully observable etc.) still

Propositional planning tasks compactly represent transition systems and are suitable as inputs for planning algorithms. They are based on concepts from propositional logic, enhanced

C2.1 The Domination Lemma C2.2 The Relaxation Lemma C2.3 Further Properties C2.4 Greedy Algorithm C2.5 SummaryG. Keller (Universit¨ at Basel) Planning and Optimization October 17,

I The merge steps combine two abstract transition systems by replacing them with their synchronized product. I The shrink steps make an abstract system smaller by abstracting

Keller (Universit¨ at Basel) Planning and Optimization November 21, 2018 2 / 25G. Content of

Keller (Universit¨ at Basel) Planning and Optimization December 3, 2018 2 / 32. Content of