Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS...

42
Introduction to Artificial Intelligence Intelligent Agents Bernhard Beckert U NIVERSITÄT KOBLENZ -L ANDAU Winter Term 2004/2005 B. Beckert: KI für IM – p.1

Transcript of Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS...

Page 1: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Introduction to Artificial Intelligence

Intelligent Agents

Bernhard Beckert

UNIVERSITÄT KOBLENZ-LANDAU

Winter Term 2004/2005

B. Beckert: KI für IM – p.1

Page 2: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Outline

Agents and environments

PEAS (Performance, Environment, Actuators, Sensors)

Environment types

Agent types

Example: Vacuum world

B. Beckert: KI für IM – p.2

Page 3: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Agents and environments

?

agent

percepts

sensors

actions

environment

actuators

Agents include

– humans– robots– software robots (softbots)– thermostats– etc.

B. Beckert: KI für IM – p.3

Page 4: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Agent functions and programs

Agent function

An agent is completely specified by the agent function

f : P ∗→ A

mapping percept sequences to actions

B. Beckert: KI für IM – p.4

Page 5: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Agent functions and programs

Agent program

runs on the physical architecture to produce f

takes a single percept as input

keeps internal state

function SKELETON-AGENT(percept) returns action

static: memory /* the agent’s memory of the world */

memory← UPDATE-MEMORY(memory, percept)

action← CHOOSE-BEST-ACTION(memory)

memory← UPDATE-MEMORY(memory,action)

return action

B. Beckert: KI für IM – p.5

Page 6: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Rationality

Goal

Specified by performance measure,defining a numerical value for any environment history

Rational action

Whichever action maximizes the expected valueof the performance measure given the percept sequence to date

Noterational 6= omniscient

rational 6= clairvoyant

rational 6= successful

Agents need to: gather information, explore, learn, . . .

B. Beckert: KI für IM – p.6

Page 7: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Rationality

Goal

Specified by performance measure,defining a numerical value for any environment history

Rational action

Whichever action maximizes the expected valueof the performance measure given the percept sequence to date

Noterational 6= omniscient

rational 6= clairvoyant

rational 6= successful

Agents need to: gather information, explore, learn, . . .

B. Beckert: KI für IM – p.6

Page 8: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Rationality

Goal

Specified by performance measure,defining a numerical value for any environment history

Rational action

Whichever action maximizes the expected valueof the performance measure given the percept sequence to date

Noterational 6= omniscient

rational 6= clairvoyant

rational 6= successful

Agents need to: gather information, explore, learn, . . .

B. Beckert: KI für IM – p.6

Page 9: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Designing an automated taxi

Performance

safety, reach destination, maximize profits,obey laws, passenger comfort, . . .

Environment

streets, traffic, pedestrians, weather, customers, . . .

Actuators

steer, accelerate, brake, horn, speak/display, . . .

Sensors

video, accelerometers, gauges, engine sensors,keyboard, GPS, . . .

B. Beckert: KI für IM – p.7

Page 10: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Designing an automated taxi

Performance safety, reach destination, maximize profits,obey laws, passenger comfort, . . .

Environment

streets, traffic, pedestrians, weather, customers, . . .

Actuators

steer, accelerate, brake, horn, speak/display, . . .

Sensors

video, accelerometers, gauges, engine sensors,keyboard, GPS, . . .

B. Beckert: KI für IM – p.7

Page 11: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Designing an automated taxi

Performance safety, reach destination, maximize profits,obey laws, passenger comfort, . . .

Environment streets, traffic, pedestrians, weather, customers, . . .

Actuators

steer, accelerate, brake, horn, speak/display, . . .

Sensors

video, accelerometers, gauges, engine sensors,keyboard, GPS, . . .

B. Beckert: KI für IM – p.7

Page 12: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Designing an automated taxi

Performance safety, reach destination, maximize profits,obey laws, passenger comfort, . . .

Environment streets, traffic, pedestrians, weather, customers, . . .

Actuators steer, accelerate, brake, horn, speak/display, . . .

Sensors

video, accelerometers, gauges, engine sensors,keyboard, GPS, . . .

B. Beckert: KI für IM – p.7

Page 13: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Designing an automated taxi

Performance safety, reach destination, maximize profits,obey laws, passenger comfort, . . .

Environment streets, traffic, pedestrians, weather, customers, . . .

Actuators steer, accelerate, brake, horn, speak/display, . . .

Sensors video, accelerometers, gauges, engine sensors,keyboard, GPS, . . .

B. Beckert: KI für IM – p.7

Page 14: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Medical diagnosis system

Performance

Healthy patient, minimize costs, avoid lawsuits, . . .

Environment

patient, hospital, staff, . . .

Actuators

questions, tests, diagnoses, treatments, referrals, . . .

Sensors

keyboard (symptoms, test results, answers), . . .

B. Beckert: KI für IM – p.8

Page 15: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Medical diagnosis system

Performance Healthy patient, minimize costs, avoid lawsuits, . . .

Environment

patient, hospital, staff, . . .

Actuators

questions, tests, diagnoses, treatments, referrals, . . .

Sensors

keyboard (symptoms, test results, answers), . . .

B. Beckert: KI für IM – p.8

Page 16: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Medical diagnosis system

Performance Healthy patient, minimize costs, avoid lawsuits, . . .

Environment patient, hospital, staff, . . .

Actuators

questions, tests, diagnoses, treatments, referrals, . . .

Sensors

keyboard (symptoms, test results, answers), . . .

B. Beckert: KI für IM – p.8

Page 17: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Medical diagnosis system

Performance Healthy patient, minimize costs, avoid lawsuits, . . .

Environment patient, hospital, staff, . . .

Actuators questions, tests, diagnoses, treatments, referrals, . . .

Sensors

keyboard (symptoms, test results, answers), . . .

B. Beckert: KI für IM – p.8

Page 18: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

PEAS: The setting for intelligent agent design

Example: Medical diagnosis system

Performance Healthy patient, minimize costs, avoid lawsuits, . . .

Environment patient, hospital, staff, . . .

Actuators questions, tests, diagnoses, treatments, referrals, . . .

Sensors keyboard (symptoms, test results, answers), . . .

B. Beckert: KI für IM – p.8

Page 19: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Fully observable (otherwise: partially observable)

Agent’s sensors give it access to the complete state of the environmentat each point in time

Deterministic (otherwise: stochastic)

The next state of the environment is completely determined bythe current state and the action executed by the agent(strategic: deterministic except for behavior of other agents)

Episodic (otherwise: sequential)

The agent’s experience is divided atomic, independent episodes(in each episode the agent perceives and then performs a single action)

B. Beckert: KI für IM – p.9

Page 20: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Fully observable (otherwise: partially observable)

Agent’s sensors give it access to the complete state of the environmentat each point in time

Deterministic (otherwise: stochastic)

The next state of the environment is completely determined bythe current state and the action executed by the agent(strategic: deterministic except for behavior of other agents)

Episodic (otherwise: sequential)

The agent’s experience is divided atomic, independent episodes(in each episode the agent perceives and then performs a single action)

B. Beckert: KI für IM – p.9

Page 21: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Fully observable (otherwise: partially observable)

Agent’s sensors give it access to the complete state of the environmentat each point in time

Deterministic (otherwise: stochastic)

The next state of the environment is completely determined bythe current state and the action executed by the agent(strategic: deterministic except for behavior of other agents)

Episodic (otherwise: sequential)

The agent’s experience is divided atomic, independent episodes(in each episode the agent perceives and then performs a single action)

B. Beckert: KI für IM – p.9

Page 22: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Static (otherwise: dynamic)

Environment can change while the agent is deliberating(semidynamic: not the state but the performance measure can change)

Discrete (otherwise: continuous)

The environment’s state, time, and the agent’s percepts and actionshave discrete values

Single agent (otherwise: multi-agent)

Only one agent acts in the environment

B. Beckert: KI für IM – p.10

Page 23: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Static (otherwise: dynamic)

Environment can change while the agent is deliberating(semidynamic: not the state but the performance measure can change)

Discrete (otherwise: continuous)

The environment’s state, time, and the agent’s percepts and actionshave discrete values

Single agent (otherwise: multi-agent)

Only one agent acts in the environment

B. Beckert: KI für IM – p.10

Page 24: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Static (otherwise: dynamic)

Environment can change while the agent is deliberating(semidynamic: not the state but the performance measure can change)

Discrete (otherwise: continuous)

The environment’s state, time, and the agent’s percepts and actionshave discrete values

Single agent (otherwise: multi-agent)

Only one agent acts in the environment

B. Beckert: KI für IM – p.10

Page 25: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable

yes yes yes no no no

Deterministic

yes strat. no (yes) no no

Episodic

no no no no no yes

Static

yes semi yes semi no no

Discrete

yes yes yes yes no no

Single agent

yes no no no no yes

B. Beckert: KI für IM – p.11

Page 26: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable yes

yes yes no no no

Deterministic yes

strat. no (yes) no no

Episodic no

no no no no yes

Static yes

semi yes semi no no

Discrete yes

yes yes yes no no

Single agent yes

no no no no yes

B. Beckert: KI für IM – p.11

Page 27: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable yes yes

yes no no no

Deterministic yes strat.

no (yes) no no

Episodic no no

no no no yes

Static yes semi

yes semi no no

Discrete yes yes

yes yes no no

Single agent yes no

no no no yes

B. Beckert: KI für IM – p.11

Page 28: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable yes yes yes

no no no

Deterministic yes strat. no

(yes) no no

Episodic no no no

no no yes

Static yes semi yes

semi no no

Discrete yes yes yes

yes no no

Single agent yes no no

no no yes

B. Beckert: KI für IM – p.11

Page 29: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable yes yes yes no

no no

Deterministic yes strat. no (yes)

no no

Episodic no no no no

no yes

Static yes semi yes semi

no no

Discrete yes yes yes yes

no no

Single agent yes no no no

no yes

B. Beckert: KI für IM – p.11

Page 30: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable yes yes yes no no

no

Deterministic yes strat. no (yes) no

no

Episodic no no no no no

yes

Static yes semi yes semi no

no

Discrete yes yes yes yes no

no

Single agent yes no no no no

yes

B. Beckert: KI für IM – p.11

Page 31: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

Cro

ssw

ord

puzz

le

Che

ss

Bac

k-ga

mm

on

Inte

rnet

shop

ping

Taxi

Par

t-pi

ckin

gro

bot

Fully observable yes yes yes no no no

Deterministic yes strat. no (yes) no no

Episodic no no no no no yes

Static yes semi yes semi no no

Discrete yes yes yes yes no no

Single agent yes no no no no yes

B. Beckert: KI für IM – p.11

Page 32: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Environment types

The real world is

partially observable

stochastic

sequential

dynamic

continuous

multi-agent

B. Beckert: KI für IM – p.12

Page 33: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Agent types

Four basic types

(in order of increasing generality)

simple reflex agents

reflex agents with state

goal-based agents

utility-based agents

All these can be turned into learning agents

B. Beckert: KI für IM – p.13

Page 34: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Simple reflex agents

Agent

Environm

ent

Sensors

Actuators

What the worldis like now

What action Ishould do nowCondition/action rules

B. Beckert: KI für IM – p.14

Page 35: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Model-based reflex agents

Agent

Environm

ent

Sensors

Actuators

What the worldis like now

What action Ishould do now

State

How the world evolves

What my actions do

Condition/action rules

B. Beckert: KI für IM – p.15

Page 36: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Goal-based agents

Agent

Environm

ent

Sensors

Actuators

What it will be like if I do action A

What the worldis like now

What action Ishould do now

State

How the world evolves

What my actions do

Goals

B. Beckert: KI für IM – p.16

Page 37: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

Utility-based agents

Agent

Environm

ent

Sensors

Actuators

What it will be like if I do action A

What the worldis like now

How happy I will be in such a state

What action Ishould do now

State

How the world evolves

What my actions do

Utility

B. Beckert: KI für IM – p.17

Page 38: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

The vacuum-cleaner world

Percepts

– location– dirty / not dirtyActions

– left– right– suck– noOp

B. Beckert: KI für IM – p.18

Page 39: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

The vacuum-cleaner world

Percepts

– location– dirty / not dirty

Actions

– left– right– suck– noOp

B. Beckert: KI für IM – p.18

Page 40: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

The vacuum-cleaner world

Percepts

– location– dirty / not dirty

Actions

– left– right– suck– noOp

B. Beckert: KI für IM – p.18

Page 41: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

The vacuum-cleaner world

Performance measure+100 for each piece of dirt cleaned up−1 for each action

−1000 for shutting off away from home

Environment

– grid– dirt distribution and creation

B. Beckert: KI für IM – p.19

Page 42: Introduction to Articial Intelligence Intelligent AgentsOutline Agents and environments PEAS (Performance, Environment, Actuators, Sensors) Environment types Agent types Example: Vacuum

The vacuum-cleaner world

Observable? Deterministic? Episodic? Static? Discrete?

B. Beckert: KI für IM – p.20