Pertemuan 2 Kecerdasan Buatan

Slides:



Advertisements
Similar presentations
Chapter 2: Intelligent Agents
Advertisements

Additional Topics ARTIFICIAL INTELLIGENCE
Artificial Intelligent
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
Artificial Intelligence CS482, CS682, MW 1 – 2:15, SEM 201, MS 227 Prerequisites: 302, 365 Instructor: Sushil Louis,
Intelligent Agents Chapter 2. Outline Agents and environments Agents and environments Rationality Rationality PEAS (Performance measure, Environment,
Intelligent Agents Russell and Norvig: Chapter 2 CMSC421 – Fall 2005.
January 11, 2006AI: Chapter 2: Intelligent Agents1 Artificial Intelligence Chapter 2: Intelligent Agents Michael Scherger Department of Computer Science.
AI CSC361: Intelligent Agents1 Intelligent Agents -1 CSC361.
Intelligent Agents Chapter 2 ICS 171, Fall 2005.
Intelligent Agents Chapter 2.
Rutgers CS440, Fall 2003 Lecture 2: Intelligent Agents Reading: AIMA, Ch. 2.
Russell and Norvig: Chapter 2 CMSC421 – Fall 2006
Rational Agents (Chapter 2)
Rational Agents (Chapter 2)
Intelligent Agents Chapter 2. Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types.
CPSC 7373: Artificial Intelligence Jiang Bian, Fall 2012 University of Arkansas at Little Rock.
Intelligent Agents. Software agents O Monday: O Overview video (Introduction to software agents) O Agents and environments O Rationality O Wednesday:
Artificial Intelligence
CHAPTER 2 Intelligent Agents. Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types.
How R&N define AI Systems that think like humans Systems that think rationally Systems that act like humans Systems that act rationally humanly vs. rationally.
Chapter 2 Intelligent Agents. Chapter 2 Intelligent Agents What is an agent ? An agent is anything that perceiving its environment through sensors and.
Intelligent Agents Chapter 2 Some slide credits to Hwee Tou Ng (Singapore)
Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types Agent types Artificial Intelligence.
Intelligent Agents Chapter 2. CIS Intro to AI - Fall Outline  Brief Review  Agents and environments  Rationality  PEAS (Performance measure,
Chapter 2 Agents & Environments. © D. Weld, D. Fox 2 Outline Agents and environments Rationality PEAS specification Environment types Agent types.
Intelligent Agents Chapter 2. Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types.
Intelligent Agents Chapter 2. Agents An agent is anything that can be viewed as perceiving its environment through sensors and acting upon that environment.
Agents CPSC 386 Artificial Intelligence Ellen Walker Hiram College.
Chapter 2 Hande AKA. Outline Agents and Environments Rationality The Nature of Environments Agent Types.
CE An introduction to Artificial Intelligence CE Lecture 2: Intelligent Agents Ramin Halavati In which we discuss.
Intelligent Agents อาจารย์อุทัย เซี่ยงเจ็น สำนักเทคโนโลยีสารสนเทศและการ สื่อสาร มหาวิทยาลัยนเรศวร วิทยาเขต สารสนเทศพะเยา.
Intelligent Agents Chapter 2. Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types.
Intelligent Agents Chapter 2. Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types.
Chapter 2 Agents. Intelligent Agents An agent is anything that can be viewed as perceiving its environment through sensors and acting upon that environment.
Chapter 2 Agents & Environments
CSC 9010 Spring Paula Matuszek Intelligent Agents Overview Slides based in part on Hwee Tou Ng, aima.eecs.berkeley.edu/slides-ppt, which are in turn.
CPSC 420 – Artificial Intelligence Texas A & M University Lecture 2 Lecturer: Laurie webster II, M.S.S.E., M.S.E.e., M.S.BME, Ph.D., P.E.
Intelligent Agents. Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types Agent types.
Artificial Intelligence
How R&N define AI humanly vs. rationally thinking vs. acting
EA C461 – Artificial Intelligence Intelligent Agents
Intelligent Agents Chapter 2.
Chapter 2 – AIMA Dr. Aarij Mahmood Hussaan
Intelligent Agents.
Class #2 – Tuesday, September 6
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
Hong Cheng SEG4560 Computational Intelligence for Decision Making Chapter 2: Intelligent Agents Hong Cheng
Intelligent Agents Chapter 2.
Introduction to Artificial Intelligence
Class #2 – Tuesday, September 7
Intelligent Agents Chapter 2.
Artificial Intelligence I : Intelligent Agents
CSE 4705 Artificial Intelligence
Intelligent Agents Chapter 2.
Artificial Intelligence Lecture 3: Intelligent Agent
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
Artificial Intelligence
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
EA C461 – Artificial Intelligence Intelligent Agents
Intelligent Agents Chapter 2.
Artificial Intelligence
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
Presentation transcript:

Pertemuan 2 Kecerdasan Buatan Agen Cerdas

Outline PAGE (Percepts, Actions, Goals, Environment) Environment types Kecerdasan Buatan - CI1420 Outline PAGE (Percepts, Actions, Goals, Environment) Environment types Agent functions and programs Agent types Vacuum world

PAGE Must first specify the setting for intelligent agent design Consider, e.g., the task of designing an automated taxi: Percepts?? Actions?? Goals?? Environment??

PAGE Must first specify the setting for intelligent agent design Consider, e.g., the task of designing an automated taxi: Percepts?? Video, accelerometers, gauges, engine sensors, keyboard, GPS,… Actions?? Steer, accelerate, brake, horn, speak/display,… Goals?? Safety, reach destination, maximize profits, obey laws, passenger comfort,… Environment?? US urban streets, freeways, traffic, pedestrians, weather, customers,…

Internet shopping agent Percepts?? Actions?? Goals?? Environment??

Rational agents Without loss of generality, “goals” specifiable by performance measure defining a numerical value for any environment history Rational action: whichever action maximizes the expected value of the performance measure given the percept sequence to date Rational ≠ omniscient Rational ≠ clairvoyant Rational ≠ successful

Environment types Solitaire Backgammon Internet shopping Taxi Accessible?? Deterministic?? Episodic?? Static?? Discrete??

Environment types Solitaire Backgammon Internet shopping Taxi Accessible?? Deterministic?? Episodic?? Static?? Discrete?? Yes No Semi Partly

Agent functions and programs An agent is completely specified by the agent function mapping percept sequences to actions (In principle, one can supply each possible sequence to see what it does. Obviously, a lookup table would usually be immense.) One agent function (or a small equivalence class) is rational Aim: find a way to implement the rational agent function concisely An agent program 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

AIMA code The code for each topic is divided into four directories: Agents: code defining agent types and programs Algorithms: code for the methods used by the agent programs Environments: code defining environment types, simulations Domains: problem types and instances for input to algorithms

Agent types Four basic types in order of increasing generality: Simple reflex with state Reflex agents with state Goal-based agents Utility-based agents