제 2 주 강의 지능적 프로그램의 특징. 인공지능 연구에 대한 접근 1 A branch of computer science to automate intelligent behavior Study on computational techniques to perform tasks.

Slides:



Advertisements
Similar presentations
Artificial Intelligence
Advertisements

Presentation on Artificial Intelligence
Artificial Intelligence An Introductory Course. Outline 1.Introduction 2.Problems and Search 3.Knowledge Representation 4.Advanced Topics.
An Introduction to Artificial Intelligence Presented by : M. Eftekhari.
Artificial Intelligence
AI 授課教師:顏士淨 2013/09/12 1. Part I & Part II 2  Part I Artificial Intelligence 1 Introduction 2 Intelligent Agents Part II Problem Solving 3 Solving Problems.
4 Intelligent Systems.
WHAT IS ARTIFICIAL INTELLIGENCE?
CPSC 322 Introduction to Artificial Intelligence October 6, 2004.
CPSC 322 Introduction to Artificial Intelligence October 29, 2004.
What is Artificial Intelligence? –Depends on your perspective... Philosophical: a method for modeling intelligence Psychological: a method for studying.
Introduction to Artificial Intelligence Ruth Bergman Fall 2004.
Artificial Intelligence
CS 357 – Intro to Artificial Intelligence  Learn about AI, search techniques, planning, optimization of choice, logic, Bayesian probability theory, learning,
1 Lecture 33 Introduction to Artificial Intelligence (AI) Overview  Lecture Objectives.  Introduction to AI.  The Turing Test for Intelligence.  Main.
Overview and History of Cognitive Science. How do minds work? What would an answer to this question look like? What is a mind? What is intelligence? How.
1 Pertemuan 1 WHAT IS ARTIFICIAL INTELLIGENCE ? Matakuliah: T0264/Inteligensia Semu Tahun: 2005 Versi: 1/0.
Introduction to Artificial Intelligence Prof. Kathleen McKeown 722 CEPSR, TAs: Kapil Thadani 724 CEPSR, Phong Pham TA Room.
Random Administrivia In CMC 306 on Monday for LISP lab.
1 4 questions (Revisited) What are our underlying assumptions about intelligence? What kinds of techniques will be useful for solving AI problems? At what.
What is Artificial Intelligence? –not programming in LISP or Prolog (!) –depends on your perspective... a method for modeling intelligence a method for.
Artificial Intelligence
Introduction to Artificial Intelligence ITK 340, Spring 2010.
Introduction to AI, H. Feili 1 Introduction to Artificial Intelligence LECTURE 1: Introduction What is AI? Foundations of AI The.
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 CIS 479/579 Bruce R. Maxim UM-Dearborn.
CISC4/681 Introduction to Artificial Intelligence1 Introduction – Artificial Intelligence a Modern Approach Russell and Norvig: 1.
Chapter 14: Artificial Intelligence Invitation to Computer Science, C++ Version, Third Edition.
19/13/2015CS360 AI & Robotics CS360: AI & Robotics TTh 9:25 am - 10:40 am Shereen Khoja
intelligence study and design of intelligent agentsis the intelligence of machines and the branch of computer science that aims to create it. AI textbooks.
CS62S: Expert Systems Based on: The Engineering of Knowledge-based Systems: Theory and Practice A. J. Gonzalez and D. D. Dankel.
Knowledge representation
11 C H A P T E R Artificial Intelligence and Expert Systems.
Artificial Intelligence Introductory Lecture Jennifer J. Burg Department of Mathematics and Computer Science.
1 Artificial Intelligence GholamReza GhassemSani Fall 1383.
Fundamentals of Information Systems, Third Edition2 Principles and Learning Objectives Artificial intelligence systems form a broad and diverse set of.
1 Artificial Intelligence Introduction. 2 What is AI? Various definitions: Building intelligent entities. Getting computers to do tasks which require.
1 CS 2710, ISSP 2610 Foundations of Artificial Intelligence introduction.
Introduction to Artificial Intelligence Mitch Marcus CIS391 Fall, 2008.
I Robot.
Lecture 1: Introduction Heshaam Faili University of Tehran What is AI? Foundations of AI The History of AI State of the Art.
1 The main topics in AI Artificial intelligence can be considered under a number of headings: –Search (includes Game Playing). –Representing Knowledge.
So what is AI?.
AI ● Dr. Ahmad aljaafreh. What is AI? “AI” can be defined as the simulation of human intelligence on a machine, so as to make the machine efficient to.
Introduction to Artificial Intelligence CS 438 Spring 2008 Today –AIMA, Chapter 1 –Defining AI Next Tuesday –Intelligent Agents –AIMA, Chapter 2 –HW: Problem.
Definitions of AI There are as many definitions as there are practitioners. How would you define it? What is important for a system to be intelligent?
Course Overview  What is AI?  What are the Major Challenges?  What are the Main Techniques?  Where are we failing, and why?  Step back and look at.
University of Kurdistan Artificial Intelligence Methods (AIM) Lecturer: Kaveh Mollazade, Ph.D. Department of Biosystems Engineering, Faculty of Agriculture,
Artificial Intelligence: Research and Collaborative Possibilities a presentation by: Dr. Ernest L. McDuffie, Assistant Professor Department of Computer.
Princess Nora University Artificial Intelligence CS 461 Level 8 1.
ARTIFICIAL INTELLIGENCE include people, procedures, hardware, software, data and knowledge needed to develop computer systems and machines that demonstrated.
1 Artificial Intelligence & Prolog Programming CSL 302.
Artificial Intelligence
Introduction to Artificial Intelligence
Overview of Artificial Intelligence (1) Artificial intelligence (AI) Computers with the ability to mimic or duplicate the functions of the human brain.
CS440/ECE448: Artificial Intelligence Lecture 1: What is AI?
CHAPTER 1 Introduction BIC 3337 EXPERT SYSTEM.
Introduction to Artificial Intelligence
Done Done Course Overview What is AI? What are the Major Challenges?
Course Instructor: knza ch
Introduction Artificial Intelligent.
Artificial Intelligence introduction(2)
Artificial Intelligence (Lecture 1)
TA : Mubarakah Otbi, Duaa al Ofi , Huda al Hakami
AI and Agents CS 171/271 (Chapters 1 and 2)
COMP3710 Artificial Intelligence Thompson Rivers University
Introduction to Artificial Intelligence Instructor: Dr. Eduardo Urbina
Artificial Intelligence
Artificial Intelligence
Presentation transcript:

제 2 주 강의 지능적 프로그램의 특징

인공지능 연구에 대한 접근 1 A branch of computer science to automate intelligent behavior Study on computational techniques to perform tasks requiring intelligence Generating representations and procedures that automatically and autonomously

인공지능 연구에 대한 접근 2 Study on explaining and emulating intelligent behavior in terms of computational processes Designing intelligent computer systems that can understand languages, learn, reason and solve problems

Problems to be solved GPS (general problem slover) Commonsense reasoning Vision and image processing Expert system Language understanding and speaking Learning

Questions about AI What are the underlying assumptions about intelligence? What kinds of techniques will be useful for solving AI problems? At what level if at all can human intelligence be modelled When will it be realized ?

Underlying Assumption Symbolic approach *** 이전 시간에 일부 설명

Knowledge Capture generalizations rather than separate representation Be understood by people providing it Be easily modified to correct errors and changes in real conditions Be widely used even if it is incomplete and inaccurate

예 Tic-Tac-Toe  단순한 접근 ::: elements  규칙화 … blank: 2, X:3, O:5; 순서를 1,2 3, … ; Win 검증 3*3*2 (X win), 5*5*2 (O win)  board position 을 이용하면서 규칙화, 가능성을 검증하여 움직임을 결정

AI Techniques Search Problem characteristics 예 missionary carnival problems, simple question-answering system water jug problem constraint satisfaction

Problem Characteristics Can solution steps be ignored or at least undone if they prove unwise? Is the problem ’ s universe predictable? Is a good solution obvious? A large amount of knowledge is required or important to constraint the search? Is the problem decomposable to independent easier sub-problems? Does the solution of the problem require interaction?

Question Answering TEXT Many went shopping for a new coat. She found a red one she really liked. When she got home, she discovered that it went perfectly with her favorite dress.

Questions What did Mary go shopping for? What did Mary find that she liked? Did Mary buy anything? Eliza : Template matching : Slot filling

Agents Acting humanly ?  Turing test Thinking Humanly : The cognitive modeling approach Thinking rationally : The laws of thought approach :: correct inference Acting rationally :: The rational agent approach  not thinking rationally but acting rationally : stove 에서 손을 뗄 때  evolution, neural network

숙제 교재 1.2, 1.3, 1.4, 1.7, 1.8, 1.9, 1.10 Turing test 가 지능을 측정하는 방법이 될 수 있는가 ? 있다면 그 입장에서 논리를 전개하고, 그렇지 않다면 그 입장에서 논리를 전개하라. 음식점에 들어가서 나오는 과정을 행위의 단 위를 나누어서 기술하라. 자신이 기술한 과정 에서 사용된 기본 연산 (operation) 을 기술하라. 연산이 다른 음식점에서도 사용될 수 있는지 보여라. 그 연산을 일반화하라. 마지막으로 음 식점에서 일어나는 과정을 일반화해보라.