1 / 108

Artificial Intelligence Chapter 02

Artificial Intelligence Chapter 02. Intelligent Agents. Outline. Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types Agent types. Components of an AI System. Sensors. Actuators. Agents.

jarboe
Download Presentation

Artificial Intelligence Chapter 02

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Artificial Intelligence Chapter 02 Intelligent Agents

  2. Outline • Agents and environments • Rationality • PEAS (Performance measure, Environment, Actuators, Sensors) • Environment types • Agent types

  3. Components of an AI System Sensors Actuators

  4. Agents • An agent is anything (entity) that can • perceive (observe) its environment through sensors and • act on the environment through actuators • Human agent: sensors are eyes, ears, and other organs; actuators (effectors) are hands, legs, mouth, and other body parts • Robotic agent: sensors are cameras, sonar, lasers, radar and infrared range finders; actuators are grippers, manipulators, motors • The agent’s behavior is described by its function that maps percept to action.

  5. Agents and environments An agent interacts with environment through sensors and actuators. • The agentfunction maps from percept histories to actions: [f: P* A] An agent program can be defined as an agent function which maps every possible percepts sequence to a possible action the agent can perform • The agentprogram runs on the physical system/architecture (a computer device with physical sensors and actuators) to produce f • agent = architecture + program

  6. Summary: • What is an Intelligent Agent? • One definition: An (intelligent) agent is an autonomous entity which: • perceives (observes) it environment through sensors and • acts rationally upon that environment using its actuators/effectors; • Hence, an agent gets percepts one at a time, and maps this percept sequence to actions. • It is rational (as defined in economics) for the agent directs its activity towards achieving goals • Intelligent agents may also learn or use knowledge to achieve their goals. • Another definition: An agent is a computer software system whose main • characteristics are situatedness, autonomy, adaptivity, and sociability.

  7. Vacuum-cleaner world • The vacuum agent: • Percepts: location and contents, e.g., [A,Dirty] • e.g., two locations: square A and B. • e.g., contents: There is dirt in the square • Actions: move Left or Right, Suck up the dirt, NoOp-do nothing

  8. A vacuum-cleaner agent A simple agent function is: • If the current square is dirty, then suck; otherwise, move to the other square. A simple reflex agent is: (in an two-state vacuum environments. Dirty or Clean) • an agent that selects actions on the basis of the current percept, ignoring the rest of the percept history. • It is a simple reflex agent because its decision is based only on the current location and whether that location contains dirt. Simple reflex agent

  9. A vacuum-cleaner agent An agent program for this simple reflex vacuum agent is: function REFLEX_VACUUM_AGENT(location, status) returns an action if status = Dirty then return Suck else if location = A then return Right else if location = B then return Left Problem: Suppose that a simple reflex vacuum agent is deprived of its location sensor and has only a dirt sensor. This agent has only two percepts: [Dirty] and [Clean]. It can Suck in response to [Dirty]. Moving Left fails (forever) if it happens to start in square A. Moving Right fails(forever) if it happens to start in square B. Infinite loops are often unavoidable for simple reflex agents operating in partially observable environments.

  10. Imagine a drive of the automated car, if the car in front brakes and its brake lights come on, then he should notice this and initiate braking. Some processing is done on the visual input to establish the condition “The car in front is braking.” This condition triggers some established connection in the agent program to the action “initiate braking,” We call such a connection a condition-action rule, written as ifcar_in_front_is_brakingtheninitiate_braking. The previous simple reflex agent program is specific to one particular vacuum environment. We can write a general-purpose interpreter in schematic form for condition-action rules and then to create rule sets for specific task environments.

  11. Schematic diagram of a simple reflex agent. Use simple “if then” rules Can be short sighted Agent Sensors What the world is like now Environment What action I should do now Condition-action rules Actuators

  12. This is a simple reflex agent. It acts according to a rule whose condition matches the current state, as defined by the percept. • function SIMPLE_REFLEX_AGENT(percept) returns an action • persistent: rules, a set of condition-action rules • state INTERPRET_INPUT(percept) • rule RULE_MATCH(state, rules) • action rule.ACTION • return action • The INTERPRET_INPUT(percept) function generates an abstracted description of the current state from the percept. • The RULE_MATCH(state, rules) function returns the first rule in the set of rules that matches the given state description.

  13. function SIMPLE_REFLEX_AGENT(percept) returns an action • persistent: rules, a set of condition-action rules • state INTERPRET_INPUT(percept) • rule RULE_MATCH(state, rules) • action rule.ACTION • return action This will work only if the correct decision can be made on the basis of only the current percept – that is, only if the environment is fully observable. Even a little bit of unobservability can cause serious trouble.

  14. Rationality An agent acts rationally, namely, "do the right thing", ? • What is rational at any give time depends on the following PEAS: • Performance measure – defines the criterion of success – (goals?) • Environment – the agent’s prior knowledge of the environment • Actuators – the actions that the agent can perform • Sensors – the agent’s percept sequence to date. • Must first specify the setting for intelligent agent design

  15. Rational agents • A rational agent should strive to "do the right thing", based on • what it can perceive and • the actions it can perform. • The right action is the one that will cause the agent to be most successful • Performance measure: • An objective criterion for success of an agent's behavior. • A fixed performance measure evaluates the sequence of observed action effects on the environment • E.g., performance measure of a vacuum-cleaner agent could be amount of dirt cleaned up, amount of time taken, amount of electricity consumed, amount of noise generated, etc.

  16. Rational agents Definition of RationalAgent: (with respect to PEAS) • For each possible percept sequence, a rational agent should select an action that is expected to maximize its performance measure, given the evidence provided by the percept sequence and whatever built-in knowledge the agent has.

  17. Rational agents • Rationality is distinct from omniscience (all-knowing with infinite knowledge. • An omniscient agent knows the actual outcome of its actions and can act accordingly. It is impossible in reality.) • Agents can perform actions in order to modify future percepts so as to obtain useful information (information gathering, exploration) • An agent is autonomous if its behavior is determined by its own experience (with ability to learn and adapt)

  18. PEAS : Applications • Consider, e.g., the task of designing an automated taxi driver: • Performance measure • Environment • Actuators • Sensors

  19. PEAS : Applications Example: Taxi Driver • Consider the task of designing agent type, an automated taxi driver: • Agent: Automated Taxi Driver • Performance measure: Safe, fast, legal, comfortable trip, maximize profits • Environment: Roads, other traffic, pedestrians, customers • Actuators: Steering wheel, accelerator, brake, signal, horn, display • Sensors: Cameras, sonar, speedometer, GPS, odometer, engine sensors, accelerometer

  20. PEAS : Applications • Agent: Medical diagnosis system • Performance measure: Healthy patient, minimize costs, lawsuits • Environment: Patient, hospital, staff • Actuators: Screen display (questions, tests, diagnoses, treatments, referrals) • Sensors: Keyboard (entry of symptoms, findings, patient's answers)

  21. PEAS : Applications • Agent: Part-picking robot • Performance measure: Percentage of parts in correct bins • Environment: Conveyor belt with parts, bins • Actuators: Jointed arm and hand • Sensors: Camera, joint angle sensors

  22. PEAS : Applications • Agent: Interactive English tutor • Performance measure: Maximize student's score on test • Environment: Set of students • Actuators: Screen display (exercises, suggestions, corrections) • Sensors: Keyboard

  23. Environment types Fully observable(vs. partially observable): • The task environment is fully observable if an agent's sensors give it access to the complete state of the environment at each point in time. • If the agent has no sensors at all then the environment is unobservable. Deterministic (vs. stochastic): • The environment is deterministic if the next state of the environment is completely determined by the current state and the action executed by the agent. Otherwise the environment is stochastic i.e., randomly determined). • (If the environment is deterministic except for the actions of other agents, then the environment is strategic). Uncertain (vs. nondeterministic): • An environment is uncertain if it is not fully observable or not deterministic • A nondeterministic environment is one in which actions are characterized by possible outcomes without any attached probabilities. • …

  24. Environment types Episodic (vs. sequential): • The agent's experience is divided into atomic "episodes" • (each episode consists of the agent perceiving (receives a percept) and then performing a single action), and the choice of action in each episode depends only on the episode itself. • Example: an agent that has to spot defective parts on an assembly line bases each decision on the current part, regardless of previous decisions. The current decision doesn’t affect whether the next part is defective. • In sequential task environment, the current decision could affect all future decision. • Example: Chess and Taxi Driver are sequential. The short-term actions can have long-term consequences. • Episodic environments are much simpler than sequential environments because the agent does not need to think ahead.

  25. Environment types Static (vs. dynamic): • The environment is static for an agent, if the environment is unchanged while the agent is deliberating. Otherwise it is dynamic. • The environment is semidynamic if the environment itself does not change with the passage of time but the agent's performance score does) Example: • Taxi driving is dynamic: the other cars and the taxi itself keep moving while the driving algorithm dithers about what to do next. • Chess, when played with a clock is semidynamic. • Crossword puzzles are static.

  26. Environment types Discrete (vs. continuous): • A limited number of distinct, clearly defined percepts and actions. • The discrete/continuous distinction applies to the state of the environment, to the way time is handled, and to the percepts and actions of the agent. Example: • The chess environment has a finite number of distinct states (excluding the clock). Chess has a discrete set of percepts and actions. • Taxi driving is a continuous-state and continuous-time problem: the speed and location of the taxi and of the other vehicles sweep through a range of continuous values and do so smoothly over time. Taxi-driving actions are continuous (steering angles, etc.). • Input from digital cameras is discrete. Could be treated as representing continuously varying intensities and location.

  27. Environment types Single agent(vs. multiagent): • An agent operating by itself in an environment. Example • An agent solving a crossword puzzle by itself is clearly in a single-environment, whereas an agent playing chess is in a two agent environment. • Does an agent A (the taxi driver for example) have to treat an object B (another vehicle) as an agent or can it be treated merely as an object behaving according to the laws of physics, analogous to waves at the beach or leaves blowing in the wind? • The key distinction is whether B’s behavior is best described as maximizing a performance measure whose value depends on agent A’s behavior.

  28. Environment types Single agent(vs. multiagent): Competitive (vs. cooperative) • Example • In chess, the opponent entity B is trying to maximize its performance measure, which, by the rules of chess, minimize agent A’s performance measure. Thus, chess is a competitive multiagent environment. • In taxi-driving environment, avoiding collisions maximizes the performance measure of all agents, so it is a partially cooperative multiagent environment. It is also partially competitive because, for example, only one car can occupy a parking space.

  29. Environment types Known (vs. unknown): • The distinction refers not to the environments itself but to the agent’s (or designer’s) state of knowledge about the “law of physics” of the environment. • In a known environment, the outcomes (or outcome probabilities if the environment is stochastic) for all actions are given. • If the environment is unknown, the agent will have to learn how it works in order to make good decisions. Distinction Know and unknow environments from fully and partially observable environments: • It is quite possible for a know environment to be partially observable: for example, in solitaire card games, I know the rules but am still unable to see the cards that have not yet been turned over. • An unknown environment can be fully observable: for example, in a new video game, the screen may show the entire game state but I still don’t know what the buttons do until I try them.

  30. Environment Examples Given Environment Properties: Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  31. Environment Examples Given Environment Properties: Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  32. Environment types Chess with Chess without Taxi driving a clock a clock Fully observable Yes Yes Yes Deterministic Strategic Strategic No Episodic No No No Static Semi Yes No Discrete Yes Yes No Single agent No No No • The environment type largely determines the agent design • The real world is (of course) partially observable, stochastic, sequential, dynamic, continuous, multi-agent

  33. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  34. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  35. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  36. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  37. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  38. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  39. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  40. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  41. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  42. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  43. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  44. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  45. Environment Examples Fully observable vs. partially observable Deterministic vs. stochastic / strategic Episodic vs. sequential Static vs. dynamic Discrete vs. continuous Single agent vs. multiagent

  46. Agent functions and programs - recalled • An agent is something that perceives and acts in an environment. • The agent function for an agent specifies the action taken by the agent in response to any percept sequence. (Or, an agent is completely specified by the agent function mapping percept sequences to actions) • The agent program implements the agent function. • One agent function (or a small equivalence class) is rational • Aim: find a way to implement the rational agent function concisely

  47. Agent functions and programs - recalled • A task environment specification includes • the performance measure, • the external environment, • the actuators, and • the sensors. • In designing an agent, the first step must always be to specify the task environment as fully as possible. • The performance measure evaluates the behavior of the agent in an environment. • A rational agent acts so to maximize the expected value of the performance measure, given the percept sequence it has seen so far.

  48. Agent functions and programs - recalled • Task environment vary along several significant dimensions. They can be: • fully or partially observable, • single-agent or multiagent, • deterministic or stochastic, • episodic or sequential, • static or dynamic, • discrete or continuous, and • known or unknown.

More Related