Artificial Intelligence and Searching

Slides:



Advertisements
Similar presentations
Chapter 09 AI techniques in different game genres (Puzzle/Card/Shooting)
Advertisements

Presentation on Artificial Intelligence
Introduction to Artificial Intelligence
CS 4700: Foundations of Artificial Intelligence Bart Selman Reinforcement Learning R&N – Chapter 21 Note: in the next two parts of RL, some of the figure/section.
Adversarial Search CSE 473 University of Washington.
ECE457 Applied Artificial Intelligence R. Khoury (2007)Page 1 Please pick up a copy of the course syllabus from the front desk.
An Introduction to Artificial Intelligence. Introduction Getting machines to “think”. Imitation game and the Turing test. Chinese room test. Key processes.
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.
Introduction to Artificial Intelligence Ruth Bergman Fall 2004.
Games with Chance Other Search Algorithms CPSC 315 – Programming Studio Spring 2008 Project 2, Lecture 3 Adapted from slides of Yoonsuck Choe.
Game Playing CSC361 AI CSC361: Game Playing.
1 Lecture 33 Introduction to Artificial Intelligence (AI) Overview  Lecture Objectives.  Introduction to AI.  The Turing Test for Intelligence.  Main.
Introduction to Artificial Intelligence CSE 473 Winter 1999.
Artificial Intelligence and Searching CPSC 315 – Programming Studio Spring 2009 Project 2, Lecture 1 Adapted from slides of Yoonsuck Choe.
How computers play games with you CS161, Spring ‘03 Nathan Sturtevant.
Games of Chance Introduction to Artificial Intelligence COS302 Michael L. Littman Fall 2001.
Random Administrivia In CMC 306 on Monday for LISP lab.
CPSC 171 Artificial Intelligence Read Chapter 14.
Game Trees: MiniMax strategy, Tree Evaluation, Pruning, Utility evaluation Adapted from slides of Yoonsuck Choe.
ARTIFICIAL INTELLIGENCE Introduction: Chapter 1. Outline Course overview What is AI? A brief history The state of the art.
Ch1 AI: History and Applications Dr. Bernard Chen Ph.D. University of Central Arkansas Spring 2011.
Minimax Trees: Utility Evaluation, Tree Evaluation, Pruning CPSC 315 – Programming Studio Spring 2008 Project 2, Lecture 2 Adapted from slides of Yoonsuck.
Artificial Intelligence Introduction (2). What is Artificial Intelligence ?  making computers that think?  the automation of activities we associate.
Introduction: Chapter 1
Lecture 1 Note: Some slides and/or pictures are adapted from Lecture slides / Books of Dr Zafar Alvi. Text Book - Aritificial Intelligence Illuminated.
Artificial Intelligence Introductory Lecture Jennifer J. Burg Department of Mathematics and Computer Science.
Artificial Intelligence
Game-playing AIs Part 1 CIS 391 Fall CSE Intro to AI 2 Games: Outline of Unit Part I (this set of slides)  Motivation  Game Trees  Evaluation.
Introduction to Artificial Intelligence CS 438 Spring 2008 Today –AIMA, Ch. 6 –Adversarial Search Thursday –AIMA, Ch. 6 –More Adversarial Search The “Luke.
Computing & Information Sciences Kansas State University Lecture 9 of 42 CIS 530 / 730 Artificial Intelligence Lecture 9 of 42 William H. Hsu Department.
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: Can Machines Think? Juntae Kim Department of Computer Engineering Dongguk University.
Artificial Intelligence and Searching CPSC 315 – Programming Studio Spring 2013 Project 2, Lecture 1 Adapted from slides of Yoonsuck Choe.
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.
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?
KNOWLEDGE BASED SYSTEMS
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.
A Brief History of AI Fall 2013 COMP3710 Artificial Intelligence Computing Science Thompson Rivers University.
Understanding AI of 2 Player Games. Motivation Not much experience in AI (first AI project) and no specific interests/passion that I wanted to explore.
Artificial Intelligence
ECE457 Applied Artificial Intelligence R. Khoury (2007)Page 1 Please pick up a copy of the course syllabus from the front desk.
Artificial Intelligence AIMA §5: Adversarial Search
Artificial Intelligence for Engineers
Instructor: Vincent Conitzer
Done Done Course Overview What is AI? What are the Major Challenges?
Done Done Course Overview What is AI? What are the Major Challenges?
CS 4700: Foundations of Artificial Intelligence
Games with Chance Other Search Algorithms
Games with Chance Other Search Algorithms
Artificial Intelligence for Engineers
Artificial Intelligence
Artificial Intelligence
Introduction Artificial Intelligent.
Artificial Intelligence introduction(2)
Artificial Intelligence
Instructor: Vincent Conitzer
Pruned Search Strategies
EA C461 – Artificial Intelligence Introduction
Instructor: Vincent Conitzer
Mini-Max search Alpha-Beta pruning General concerns on games
COMP3710 Artificial Intelligence Thompson Rivers University
Artificial Intelligence
Search.
Search.
Games with Chance Other Search Algorithms
Adversarial Search CMPT 420 / CMPG 720.
Artificial Intelligence and Searching
Artificial Intelligence and Searching
Minimax Trees: Utility Evaluation, Tree Evaluation, Pruning
Presentation transcript:

Artificial Intelligence and Searching CSCE 315 – Programming Studio Fall 2017 Project 2, Lecture 1 Adapted from slides of Yoonsuck Choe, John Keyser

Artificial Intelligence Long-standing computational goal Turing test Field of AI very diverse “Strong” AI – trying to simulate thought itself “Weak” AI – trying to make things that behave intelligently Several different approaches used, topics studied Sometimes grouped with other fields Robotics Computer Vision

Topics in Artificial Intelligence Problem solving Reasoning Theorem Proving Planning Learning Knowledge Representation Perception Agent Behavior Understanding Brain Function and Development Optimizing etc.

AI History AI has gone through “high” and “low” points Like many other areas… Cycle of inflated expectations, promising early results, tough problems leading to collapse in confidence, long-term productivity Early stages: 1950s through mid-1970s Early work on reasoning, language (conversation – Turing-test oriented), games Late 1970s – early 1980s Hit limitations/roadblocks

AI History (continued) Mid-1980s Japan: 5th Generation Project – giant push for AI Expert systems and neural networks grew Late 1980-1990s Another “gap” as earlier work did not pan out 2000s onward : Growth in interest in AI again over time AI topics applied to big data are especially popular Machine Learning, Natural Language Processing, etc.

Game Playing and Search Game playing a long-studied topic in AI Seen as a proxy for how more complex reasoning can be developed Search Understanding the set of possible states, and finding the “best” state or the best path to a goal state, or some path to the goal state, etc. “State” is the condition of the environment e.g. in theorem proving, can be the state of things known By applying known theorems, can expand the state, until reaching the goal theorem Should be stored concisely

Really Basic State Search Example Given a=b, b=c, c=d, prove a=d. Knowledge: a=b,b=c,c=d Knowledge:a=b,b=c,c=d Infer: a=c Knowledge: a=b,b=c,c=d Infer: b=d Knowledge:a=b,b=c,c=d,a=c,b=d Infer:a=d

Operators Transition from one state to another Fly from one city to another Apply a theorem Move a piece in a game Add person to a meeting schedule Operators and states are both usually limited by various rules Can only fly certain routes Only certain theorems can be applied Only valid moves in game Meetings can have capacity, requirements for/against grouping people, etc.

Search Examine possible states, transitions to find goal state Interesting problems are those too large to explore exhaustively Uninformed search Systematic strategy to explore options Informed search Use domain knowledge to limit search

Game Playing Abstract AI problem Nice and challenging properties Usually states can be clearly and concisely represented Limited number of operations (but can still be large) Unknown factor – account for opponent Search space can be huge Limit response based on time – forces making good “decisions” e.g. Chess averages about 35 possible moves per turn, about 50 moves per player per game, or 35100 possible games. But, “only” 1040 possible board states.

Types of games Examples Deterministic vs. random factor Known state vs. hidden information Examples Deterministic Chance Perfect Info Chess, Checkers, Othello, Go, Mancala Monopoly, Backgammon Imperfect Info Stratego, Bridge? Poker, Scrabble

Game Playing In upcoming lectures, we will discuss some of the basic methods for performing search Project will focus on a deterministic game with perfect information