CS4341 Introduction to Artificial Intelligence

Slides:



Advertisements
Similar presentations
Additional Topics ARTIFICIAL INTELLIGENCE
Advertisements

Intelligent Agents Chapter 2.
Intelligent Agents Russell and Norvig: 2
Artificial Intelligence: Chapter 2
ECE457 Applied Artificial Intelligence R. Khoury (2007)Page 1 Please pick up a copy of the course syllabus from the front desk.
Agents and Intelligent Agents  An agent is anything that can be viewed as  perceiving its environment through sensors and  acting upon that environment.
Cooperating Intelligent Systems Intelligent Agents Chapter 2, AIMA.
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.
CSE 471/598, CBS 598 Intelligent Agents TIP We’re intelligent agents, aren’t we? Fall 2004.
AI CSC361: Intelligent Agents1 Intelligent Agents -1 CSC361.
ICS 101 Fall 2011 Introduction to Artificial Intelligence Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa.
Plans for Today Chapter 2: Intelligent Agents (until break) Lisp: Some questions that came up in lab Resume intelligent agents after Lisp issues.
CSE 471/598 Intelligent Agents TIP We’re intelligent agents, aren’t we? Spring 2004.
Rutgers CS440, Fall 2003 Lecture 2: Intelligent Agents Reading: AIMA, Ch. 2.
Russell and Norvig: Chapter 2 CMSC421 – Fall 2006
Agents & Environments. © Daniel S. Weld Topics Agents & Environments Problem Spaces Search & Constraint Satisfaction Knowledge Repr’n & Logical.
CSCI 5582 Fall 2006 CSCI 5582 Artificial Intelligence Lecture 2 Jim Martin.
Intelligent Agents: an Overview. 2 Definitions Rational behavior: to achieve a goal minimizing the cost and maximizing the satisfaction. Rational agent:
Rational Agents (Chapter 2)
For Wednesday Read chapter 3, sections 1-4 Homework: –Chapter 2, exercise 4 –Explain your answers (Identify any assumptions you make. Where you think there’s.
CSE 573 Artificial Intelligence Dan Weld Peng Dai
Intelligent Agents. Software agents O Monday: O Overview video (Introduction to software agents) O Agents and environments O Rationality O Wednesday:
INTRODUCTION TO ARTIFICIAL INTELLIGENCE Massimo Poesio Intelligent agents.
1 AI and Agents CS 171/271 (Chapters 1 and 2) Some text and images in these slides were drawn from Russel & Norvig’s published material.
Artificial Intelligence
ARTIFICIAL INTELLIGENCE [INTELLIGENT AGENTS PARADIGM] Professor Janis Grundspenkis Riga Technical University Faculty of Computer Science and Information.
Kansas State University Department of Computing and Information Sciences CIS 730: Introduction to Artificial Intelligence Lecture 1 Friday 22 August 2003.
COMP 4640 Intelligent & Interactive Systems Cheryl Seals, Ph.D. Computer Science & Software Engineering Auburn University Lecture 2: Intelligent Agents.
Lection 3. Part 1 Chapter 2 of Russel S., Norvig P. Artificial Intelligence: Modern Approach.
Outline Agents and environments Rationality PEAS (Performance measure, Environment, Actuators, Sensors) Environment types Agent types Artificial Intelligence.
Kansas State University Department of Computing and Information Sciences CIS 730: Introduction to Artificial Intelligence Lecture 2 Tuesday, August 29,
Lecture on Introduction to Artificial Intelligence Chapter#10 Sec 10.1 and 10.3 (before Heuristics)
Agents CPSC 386 Artificial Intelligence Ellen Walker Hiram College.
CE An introduction to Artificial Intelligence CE Lecture 2: Intelligent Agents Ramin Halavati In which we discuss.
1 CO Games Development 1 Week 2 Game Agents Gareth Bellaby.
Intelligent Agents อาจารย์อุทัย เซี่ยงเจ็น สำนักเทคโนโลยีสารสนเทศและการ สื่อสาร มหาวิทยาลัยนเรศวร วิทยาเขต สารสนเทศพะเยา.
Learning Agents MSE 2400 EaLiCaRA Spring 2015 Dr. Tom Way.
For Friday No reading (other than handout) Homework: –Chapter 2, exercises 5 and 6 –Lisp handout 1.
Lecture 2: 11/4/1435 Problem Solving Agents Lecturer/ Kawther Abas 363CS – Artificial Intelligence.
Introduction of Intelligent Agents
Instructional Objective  Define an agent  Define an Intelligent agent  Define a Rational agent  Discuss different types of environment  Explain classes.
Rational Agency CSMC Introduction to Artificial Intelligence January 8, 2007.
Rational Agency CSMC Introduction to Artificial Intelligence January 8, 2004.
Artificial Intelligence
Intelligent Agents Introduction Rationality Nature of the Environment Structure of Agents Summary.
Chapter 2 Agents. Intelligent Agents An agent is anything that can be viewed as perceiving its environment through sensors and acting upon that environment.
CSE 471/598 Intelligent Agents TIP We’re intelligent agents, aren’t we?
CS382 Introduction to Artificial Intelligence Lecture 1: The Foundations of AI and Intelligent Agents 24 January 2012 Instructor: Kostas Bekris Computer.
Lecture 2: Intelligent Agents Heshaam Faili University of Tehran What is an intelligent agent? Structure of intelligent agents Environments.
Intelligent Agents Chapter 2. How do you design an intelligent agent? Definition: An intelligent agent perceives its environment via sensors and acts.
The Agent and Environment Presented By:sadaf Gulfam Roll No:15156 Section: E.
ECE457 Applied Artificial Intelligence R. Khoury (2007)Page 1 Please pick up a copy of the course syllabus from the front desk.
Brief Intro to Machine Learning CS539
Artificial Intelligence Programming Spring 2016
Artificial Intelligence
Intelligent Agents By, JITHIN M J.
Introduction to Artificial Intelligence
Ch. 2 – Intelligent Agents
Intelligent Agents Chapter 2.
Intelligent Agents Chapter 2.
Web-Mining Agents Cooperating Agents for Information Retrieval
هوش مصنوعي فصل دوم عاملهاي هوشمند.
هوش مصنوعي فصل دوم عاملهاي هوشمند.
Artificial Intelligence Lecture 3: Intelligent Agent
EA C461 – Artificial Intelligence Problem Solving Agents
AI and Agents CS 171/271 (Chapters 1 and 2)
Structure of intelligent agents and environments
Artificial Intelligence
Ch. 2 – Intelligent Agents
Presentation transcript:

CS4341 Introduction to Artificial Intelligence Chapter 2: Agents Based on Russell & Norvig’s textbook Prof. Carolina Ruiz

Agents: As a black box environment A goal Input Stimulus Percept Output Response Action (through sensors) (through actuators) Given: A goal A performance measure: Criteria to determine how successful an agent is

Agents: Properties An agent may be: Rational: does the right thing Omniscient: does the perfect thing Ideal: does the optimal thing given its state of knowledge Autonomous: Initial knowledge + ability to learn

Agents: Types of Agents Simple reflex agents Model–based reflex agents: keep track of the world Goal-based agents: keep track of the world and their own goal Utility-based agents: keep track of the world, their own goal, and the utility function Learning agents

Agents: Expectations Agents are expected to: Achieve goals: search and planning Sense environment: machine vision, NLP Be autonomous: machine learning Store knowledge: knowledge representation

Agents: Inside the black box environment Input Stimulus Percept Output Response Action Mapping / Function (through sensors) (through actuators) This mapping / function is implemented using a program that runs on an architecture