SlideShare ist ein Scribd-Unternehmen logo
1 von 38
CS 480 ARTIFICIAL INTELLIGENCE
Instructor:
B. Ravikumar
Computer Science Department
116 I Darwin Hall
Class meets:
Fridays 9 to 12
Course details
•
Catalog Description:
A survey of techniques that simulate human intelligence.
Topics may include: pattern recognition, general problem
solving, adversarial game-tree search, decision-making, expert
systems, neural networks, fuzzy logic, and genetic algorithms.
Prerequisite: CS 315 or consent of instructor.
Background Expected:
•Programming and data structures (CS 315)
• Discrete mathematics (CS 242)
•Linear algebra
Some background in logic and probability will be helpful, but not
necessary. 
Course details
•
Course Goals:
AI covers wide range of topics:
• understanding language
• vision and speech processing
• problem solving, planning
• common sense reasoning.
AI techniques:
• combinatorial (searching, A* algorithm etc.)
• logical (prove assertion in formal framework)
• probabilistic (decision tree, Bayesian network)
• machine learning (neural network, evolutionary technique)
Course details
•
Other references:
• N. Nillsson, AI: A new synthesis.
• Winston, Artificial Intelligence.
Course details
•
Course details
•
Short Quizzes (5 – 10%)
Two Mid-Term tests (20%) – Both tests will be in class and will be about 75
miutes long. The tests will be open book/open notes.
Home Work and Projects (40 - 50%) – There will be some common
programming projects and a final project.
The final project will be done individually. You can choose a problem from a
list that will be provided early in the semester. The project is due the last
week of the semester. You are to write a report summarizing your
contributions to the chosen problem. Some selected project work will be
presented in the department colloquium.
Final Examination (25 - 30%) – The final examination will be comprehensive
and will take place at the scheduled time posted in the web page http://
www.sonoma.edu/university /classsched/ finals_sched.pdf (not updated for
Fall 09 as of August 15, 2009.)
Lecture 1 Outline
• Course overview
• What is AI?
• A brief history
• The state of the art
Slides adapted from Russell and Norvig, AIAMA
Course overview
• Introduction (chapters 1,2)
Techniques
• Combinatorial (search) approach to AI (chapters
3,4,5,6)
• Symbolic (logical) approach to AI (chapters 7,8,9)
• Probabilistic approach to AI (chapters 13,14)
• Learning approach to AI (chapters 18,20)
Applications
• Natural Language Processing (chapter 22,23)
• Computer vision (Chapter 24)
What is AI?
Authors think AI falls into four categories:
Thinking humanly Thinking rationally
Acting humanly Acting rationally
The textbook advocates "acting rationally"
•
•
What is AI?
Before attempting a definition, we will state some
major contemporary applications of AI:
• business: advertising, financial decision making
• web: identifying objects in images, social network
models etc.
• medical: image classification (belign vs. malignant
tumor), image analysis using functional MRI
• multiple field: language translation, semantic analysis,
speech synthesis, speech to text conversion.
• industrial: vision, robotics
Acting humanly: Turing Test
• Turing (1950) "Computing machinery and intelligence":
• "Can machines think?"  "Can machines behave
intelligently?"
• Operational test for intelligent behavior: the Imitation Game
• Predicted that by 2000, a machine might have a 30% chance
of fooling a lay person for 5 minutes
• Anticipated all major arguments against AI in following 50
years
• Suggested major components of AI: knowledge, reasoning,
language understanding, learning
Thinking humanly: cognitive modeling
• 1960s "cognitive revolution": information-
processing psychology
• Requires scientific theories of internal activities of
the brain
• How to validate? Requires
1) Predicting and testing behavior of human subjects (top-
down) or
2) Direct identification from neurological data (bottom-
up)
• Both approaches (roughly, Cognitive Science and
Cognitive Neuroscience)
• now distinct from AI
•
Thinking rationally: "laws of thought"
• What are correct arguments/thought processes?
• Several Greek schools developed various forms of logic:
notation and rules of derivation for thoughts; may or may
not have proceeded to the idea of mechanization
• Direct line through mathematics and philosophy to
modern AI
• Problems:
1. Not all intelligent behavior is mediated by logical
deliberation
2. What is the purpose of thinking? What thoughts should
I have?
Acting rationally: rational agent
• Rational behavior: doing the right thing
• The right thing: that which is expected to maximize
goal achievement, given the available information
• Doesn't necessarily involve thinking – e.g., blinking
reflex – but thinking should be in the service of
rational action
•
•
•
AI techniques
• Combinatorial search problems
– state space (over which search is performed)
– finite state space (discrete)
– how to move from one state to another (transition
rules)
• Applications
– Games (one player or two players)
– Navigation (robotics)
• Solution
– Search tree exploration
techniques
• Combinatorial search approach
Sliding piece puzzle:
1 2 3
4
8
6
7 5
Start: goal:
1 2 3
4 5 6
7 8
Legal moves: slide a piece next to empty slot.
Many AI problems can be modeled as search problems.
A portion of a search tree for the 8-puzzle.
Combinatorial search
•Uninformed search
• depth-first
• breadth-first
• iterative deepening
• breadth-depth
• informed search
• best-first
Combinatorial search
•Depth-first search
What are the ways to speed-up DFS?
Combinatorial search
• Breadth-first search
Combinatorial search
• heuristic search
• for each node, a heuristic provides an estimate of its
distance from the goal.
• for sliding-piece puzzle, Manhattan distance is one
such estimate.
• estimate for other search problems? (e.g. queen
placement)
Combinatorial search
Consider
placement in the
5th
row.
techniques
• Symbolic (logical) approach to AI
intelligent problem solving requires reasoning and
deduction.
Knowledge is represented as a set of logical
assertions A1, …, An, and a conclusion to be drawn is
also expressed as an assertion.
Can we deduce F from A1, …, An?
Knowledge bases
• Knowledge base = set of sentences in a formal language
• Declarative approach to building an agent (or other
system):
– Tell it what it needs to know
• Then it can Ask itself what to do - answers should follow
from the KB
• Agents can be viewed at the knowledge level
i.e., what they know, regardless of how implemented
• Or at the implementation level
– i.e., data structures in KB and algorithms that manipulate
them
The party example
• If Alex goes, then Beki goes: A → B
• If Chris goes, then Alex goes: C → A
• Beki does not go: not B
• Chris goes: C
Query: Is it possible to satisfy all these conditions?
This is called satisfiability problem.
Example of languages
• Programming languages:
– Formal languages, not ambiguous, but cannot express
partial information. Not expressive enough.
• Natural languages:
– Very expressive but ambiguous: ex: small dogs and cats.
• Good representation language:
– Both formal and can express partial information, can
accommodate inference
• Main approach used in AI: Logic-based languages.
• Predicate-logic with Horn clauses
Deduction algorithms
Example:
Given P  R, and Q  ~R
Can we deduce ~(P & Q)?
Applications
• expert systems (Mycin, dendral are
early examples)
• logic programming
• automatic theorem proving
(software validation)
Resolution strategy
Example:
∀X (∀Y ((mother(X) ∧ child_of(Y,X)) → loves(X,Y)))
mother(mary)
child_of(tom,mary)
Can we deduce?
loves(tom, mary)
Logical deduction in predicate logic
techniques
• Probabilistic approach to AI
Knowledge representation models uncertainties.
Example:
• H = “Have a headache”
• F = “Coming down with Flu”
• P(H) = 1/10
• P(F) = 1/40
• P(H|F) = ½
Given that you have a headache, what is the probability that you have flu?
This kind of modeling is widely used in various prediction
problems, e.g., in determining the insurance premium for car
etc.
Probabilistic approach to AI
Some games are inherently probabilistic.
•Financial markets
• backgammon
techniques
Training set
New applicant: (young, has job, does not own house, good
credit).
Will (s)he default? We can build a probabilistic model to answer.
techniques
Machine learning approach to AI:
• self-improving algorithms
• solution obtained without explicit programming
• Closer to modeling human intelligence or natural
intelligence (we learn many things by observing even if step
by step procedure absent)
Prominent examples:
• Neural networks
• Genetic algorithms, evolutionary method
techniques
Neuron (very roughly modeled by neurons in human
brains.
techniques
An algorithm called back propagation algorithm is used to
adjust the weights of neurons based on the discrepancy
between correct output and computed output.
techniques
Evolutionary algorithms:
• encoding of the collection of solutions as strings.
• goal is to evolve the “best” solution.
• use cross-over and mutation and iterate.
Example of cross-over and
mutation
AI prehistory
• Philosophy Logic, methods of reasoning, mind as physical
system foundations of learning, language,
rationality
• Mathematics Formal representation and proof algorithms,
computation, (un)decidability, (in)tractability,
probability
• Economics utility, decision theory
• Neuroscience physical substrate for mental activity
• Psychology phenomena of perception and motor control,
experimental techniques
• Computer building fast computers
engineering
• Control theory design systems that maximize an objective
function over time
• Linguistics knowledge representation, grammar
Abridged history of AI
• 1943 McCulloch & Pitts: Boolean circuit model of brain
• 1950 Turing's "Computing Machinery and Intelligence"
• 1956 Dartmouth meeting: "Artificial Intelligence" adopted
• 1950s Early AI programs, including Samuel's checkers
program, Newell & Simon's Logic Theorist,
Gelernter's Geometry Engine
• 1965 Robinson's complete algorithm for logical reasoning
• 1966—73 AI discovers computational complexity
Neural network research almost disappears
• 1969—79 Early development of knowledge-based systems
• 1980-- AI becomes an industry
• 1986-- Neural networks return to popularity
• 1987-- AI becomes a science, probabilistic techniques
dominate
• 1995-- The emergence of intelligent agents
State of the art
• Deep Blue defeated the reigning world chess champion
Garry Kasparov in 1997
• Proved a mathematical conjecture (Robbins conjecture)
unsolved for decades
• No hands across America (driving autonomously 98% of the
time from Pittsburgh to San Diego)
• During the 1991 Gulf War, US forces deployed an AI logistics
planning and scheduling program that involved up to
50,000 vehicles, cargo, and people
• NASA's on-board autonomous planning program controlled
the scheduling of operations for a spacecraft
• Proverb solves crossword puzzles better than most humans

Weitere ähnliche Inhalte

Was ist angesagt?

Explainable AI in Industry (KDD 2019 Tutorial)
Explainable AI in Industry (KDD 2019 Tutorial)Explainable AI in Industry (KDD 2019 Tutorial)
Explainable AI in Industry (KDD 2019 Tutorial)
Krishnaram Kenthapadi
 

Was ist angesagt? (20)

Deep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural NetworksDeep Learning - Convolutional Neural Networks
Deep Learning - Convolutional Neural Networks
 
AI, Machine Learning, and Data Science Concepts
AI, Machine Learning, and Data Science ConceptsAI, Machine Learning, and Data Science Concepts
AI, Machine Learning, and Data Science Concepts
 
Role of artificial intelligence in health care
Role of artificial intelligence in health careRole of artificial intelligence in health care
Role of artificial intelligence in health care
 
Medical Imaging (D3L3 2017 UPC Deep Learning for Computer Vision)
Medical Imaging (D3L3 2017 UPC Deep Learning for Computer Vision)Medical Imaging (D3L3 2017 UPC Deep Learning for Computer Vision)
Medical Imaging (D3L3 2017 UPC Deep Learning for Computer Vision)
 
Deep learning seminar report
Deep learning seminar reportDeep learning seminar report
Deep learning seminar report
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Introduction to ai
Introduction to aiIntroduction to ai
Introduction to ai
 
learning with complete data.pdf
learning with complete data.pdflearning with complete data.pdf
learning with complete data.pdf
 
Lecture #01
Lecture #01Lecture #01
Lecture #01
 
A brief history of machine learning
A brief history of  machine learningA brief history of  machine learning
A brief history of machine learning
 
Explainable AI in Industry (KDD 2019 Tutorial)
Explainable AI in Industry (KDD 2019 Tutorial)Explainable AI in Industry (KDD 2019 Tutorial)
Explainable AI in Industry (KDD 2019 Tutorial)
 
Difference between Artificial Intelligence, Machine Learning, Deep Learning a...
Difference between Artificial Intelligence, Machine Learning, Deep Learning a...Difference between Artificial Intelligence, Machine Learning, Deep Learning a...
Difference between Artificial Intelligence, Machine Learning, Deep Learning a...
 
Energy-based Model for Out-of-Distribution Detection in Deep Medical Image Se...
Energy-based Model for Out-of-Distribution Detection in Deep Medical Image Se...Energy-based Model for Out-of-Distribution Detection in Deep Medical Image Se...
Energy-based Model for Out-of-Distribution Detection in Deep Medical Image Se...
 
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A SurveyPrediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
 
History of AI
History of AIHistory of AI
History of AI
 
Deep learning
Deep learningDeep learning
Deep learning
 
Quantum neural network
Quantum neural networkQuantum neural network
Quantum neural network
 
Quantum Computing: The Why and How
Quantum Computing: The Why and HowQuantum Computing: The Why and How
Quantum Computing: The Why and How
 
Explainable AI in Healthcare
Explainable AI in HealthcareExplainable AI in Healthcare
Explainable AI in Healthcare
 

Ähnlich wie Artificial Intelligence by B. Ravikumar

Ähnlich wie Artificial Intelligence by B. Ravikumar (20)

Intro AI.pdf
Intro AI.pdfIntro AI.pdf
Intro AI.pdf
 
AILABS - Lecture Series - Is AI the New Electricity? - Advances In Machine Le...
AILABS - Lecture Series - Is AI the New Electricity? - Advances In Machine Le...AILABS - Lecture Series - Is AI the New Electricity? - Advances In Machine Le...
AILABS - Lecture Series - Is AI the New Electricity? - Advances In Machine Le...
 
Lecture 1 introduction
Lecture 1   introductionLecture 1   introduction
Lecture 1 introduction
 
n01.ppt
n01.pptn01.ppt
n01.ppt
 
C1 into to ai
C1 into to aiC1 into to ai
C1 into to ai
 
Artificial intelligence introduction
Artificial intelligence introductionArtificial intelligence introduction
Artificial intelligence introduction
 
AI-week-1-lecture-1-slide.pptx
AI-week-1-lecture-1-slide.pptxAI-week-1-lecture-1-slide.pptx
AI-week-1-lecture-1-slide.pptx
 
Knowledge base system appl. p 1,2-ver1
Knowledge base system appl.  p 1,2-ver1Knowledge base system appl.  p 1,2-ver1
Knowledge base system appl. p 1,2-ver1
 
Artificial intelligence: Simulation of Intelligence
Artificial intelligence: Simulation of IntelligenceArtificial intelligence: Simulation of Intelligence
Artificial intelligence: Simulation of Intelligence
 
Slide Presentasi Kelompok Keilmuan E
Slide Presentasi Kelompok Keilmuan ESlide Presentasi Kelompok Keilmuan E
Slide Presentasi Kelompok Keilmuan E
 
AI CH 1d.pptx
AI CH 1d.pptxAI CH 1d.pptx
AI CH 1d.pptx
 
Foundations of Intelligence Agents
Foundations of Intelligence AgentsFoundations of Intelligence Agents
Foundations of Intelligence Agents
 
Hacking Predictive Modeling - RoadSec 2018
Hacking Predictive Modeling - RoadSec 2018Hacking Predictive Modeling - RoadSec 2018
Hacking Predictive Modeling - RoadSec 2018
 
Week1- Introduction.pptx
Week1- Introduction.pptxWeek1- Introduction.pptx
Week1- Introduction.pptx
 
Artificial intelligence- The science of intelligent programs
Artificial intelligence- The science of intelligent programsArtificial intelligence- The science of intelligent programs
Artificial intelligence- The science of intelligent programs
 
Artificial Intelligence PPT.ppt
Artificial Intelligence PPT.pptArtificial Intelligence PPT.ppt
Artificial Intelligence PPT.ppt
 
01_Artificial_Intelligence-Introduction.ppt
01_Artificial_Intelligence-Introduction.ppt01_Artificial_Intelligence-Introduction.ppt
01_Artificial_Intelligence-Introduction.ppt
 
M1 intro
M1 introM1 intro
M1 intro
 
Artificial Intelligence
Artificial Intelligence Artificial Intelligence
Artificial Intelligence
 
1 Introduction to AI.pptx
1 Introduction to AI.pptx1 Introduction to AI.pptx
1 Introduction to AI.pptx
 

Mehr von Garry D. Lasaga

Mehr von Garry D. Lasaga (20)

Overview of epigenetics and its role in disease
Overview of epigenetics and its role in diseaseOverview of epigenetics and its role in disease
Overview of epigenetics and its role in disease
 
Introduction to Epigenetics
Introduction to EpigeneticsIntroduction to Epigenetics
Introduction to Epigenetics
 
Introduction Artificial Intelligence a modern approach by Russel and Norvig 1
Introduction Artificial Intelligence a modern approach by Russel and Norvig 1Introduction Artificial Intelligence a modern approach by Russel and Norvig 1
Introduction Artificial Intelligence a modern approach by Russel and Norvig 1
 
Artificial Intelligence by Sushil Louis
Artificial Intelligence by Sushil LouisArtificial Intelligence by Sushil Louis
Artificial Intelligence by Sushil Louis
 
2019 Senatoriables in the Philippines
2019 Senatoriables in the Philippines2019 Senatoriables in the Philippines
2019 Senatoriables in the Philippines
 
Histology of the Respiratory System
Histology of the Respiratory SystemHistology of the Respiratory System
Histology of the Respiratory System
 
Histology of the Integument
Histology of the Integument Histology of the Integument
Histology of the Integument
 
Histology of the Lymphatic System
Histology of the Lymphatic System Histology of the Lymphatic System
Histology of the Lymphatic System
 
Regulation of Gene Expression
Regulation of Gene Expression Regulation of Gene Expression
Regulation of Gene Expression
 
DNA and Mitochondria
DNA and Mitochondria DNA and Mitochondria
DNA and Mitochondria
 
2.4. Alterations in Genome
2.4. Alterations in Genome 2.4. Alterations in Genome
2.4. Alterations in Genome
 
Genes, Genomics and Proteomics
Genes, Genomics and Proteomics Genes, Genomics and Proteomics
Genes, Genomics and Proteomics
 
Introduction to DNA Cloning
Introduction to DNA Cloning Introduction to DNA Cloning
Introduction to DNA Cloning
 
Nucleic Acids and DNA
Nucleic Acids and DNA Nucleic Acids and DNA
Nucleic Acids and DNA
 
Principles of Acid-Base Imbalance
Principles of Acid-Base Imbalance Principles of Acid-Base Imbalance
Principles of Acid-Base Imbalance
 
Production Performance and Management Practices of Philippine Native Pigs in ...
Production Performance and Management Practices of Philippine Native Pigs in ...Production Performance and Management Practices of Philippine Native Pigs in ...
Production Performance and Management Practices of Philippine Native Pigs in ...
 
African Swine Fever: Nature, Impacts and Threats to the Global Pig Industry
African Swine Fever: Nature, Impacts and Threats to the Global Pig Industry African Swine Fever: Nature, Impacts and Threats to the Global Pig Industry
African Swine Fever: Nature, Impacts and Threats to the Global Pig Industry
 
Swine Production Performance Monitoring Data for 2014 - Dr. Arturo Calud
Swine Production Performance Monitoring Data for 2014 - Dr. Arturo CaludSwine Production Performance Monitoring Data for 2014 - Dr. Arturo Calud
Swine Production Performance Monitoring Data for 2014 - Dr. Arturo Calud
 
Puberty in Domestic Animals - Dr. John J. Parrish
Puberty in Domestic Animals - Dr. John J. ParrishPuberty in Domestic Animals - Dr. John J. Parrish
Puberty in Domestic Animals - Dr. John J. Parrish
 
Spermatogenesis in Domestic Animals - Dr. John J. Parrish
Spermatogenesis in Domestic Animals - Dr. John J. ParrishSpermatogenesis in Domestic Animals - Dr. John J. Parrish
Spermatogenesis in Domestic Animals - Dr. John J. Parrish
 

Kürzlich hochgeladen

👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
karishmasinghjnh
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
amitlee9823
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
amitlee9823
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
amitlee9823
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
amitlee9823
 
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
amitlee9823
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
amitlee9823
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
amitlee9823
 

Kürzlich hochgeladen (20)

Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
👉 Amritsar Call Girl 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Phone No Amri...
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Anomaly detection and data imputation within time series
Anomaly detection and data imputation within time seriesAnomaly detection and data imputation within time series
Anomaly detection and data imputation within time series
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 

Artificial Intelligence by B. Ravikumar

  • 1. CS 480 ARTIFICIAL INTELLIGENCE Instructor: B. Ravikumar Computer Science Department 116 I Darwin Hall Class meets: Fridays 9 to 12
  • 2. Course details • Catalog Description: A survey of techniques that simulate human intelligence. Topics may include: pattern recognition, general problem solving, adversarial game-tree search, decision-making, expert systems, neural networks, fuzzy logic, and genetic algorithms. Prerequisite: CS 315 or consent of instructor. Background Expected: •Programming and data structures (CS 315) • Discrete mathematics (CS 242) •Linear algebra Some background in logic and probability will be helpful, but not necessary. 
  • 3. Course details • Course Goals: AI covers wide range of topics: • understanding language • vision and speech processing • problem solving, planning • common sense reasoning. AI techniques: • combinatorial (searching, A* algorithm etc.) • logical (prove assertion in formal framework) • probabilistic (decision tree, Bayesian network) • machine learning (neural network, evolutionary technique)
  • 4. Course details • Other references: • N. Nillsson, AI: A new synthesis. • Winston, Artificial Intelligence.
  • 6. Course details • Short Quizzes (5 – 10%) Two Mid-Term tests (20%) – Both tests will be in class and will be about 75 miutes long. The tests will be open book/open notes. Home Work and Projects (40 - 50%) – There will be some common programming projects and a final project. The final project will be done individually. You can choose a problem from a list that will be provided early in the semester. The project is due the last week of the semester. You are to write a report summarizing your contributions to the chosen problem. Some selected project work will be presented in the department colloquium. Final Examination (25 - 30%) – The final examination will be comprehensive and will take place at the scheduled time posted in the web page http:// www.sonoma.edu/university /classsched/ finals_sched.pdf (not updated for Fall 09 as of August 15, 2009.)
  • 7. Lecture 1 Outline • Course overview • What is AI? • A brief history • The state of the art Slides adapted from Russell and Norvig, AIAMA
  • 8. Course overview • Introduction (chapters 1,2) Techniques • Combinatorial (search) approach to AI (chapters 3,4,5,6) • Symbolic (logical) approach to AI (chapters 7,8,9) • Probabilistic approach to AI (chapters 13,14) • Learning approach to AI (chapters 18,20) Applications • Natural Language Processing (chapter 22,23) • Computer vision (Chapter 24)
  • 9. What is AI? Authors think AI falls into four categories: Thinking humanly Thinking rationally Acting humanly Acting rationally The textbook advocates "acting rationally" • •
  • 10. What is AI? Before attempting a definition, we will state some major contemporary applications of AI: • business: advertising, financial decision making • web: identifying objects in images, social network models etc. • medical: image classification (belign vs. malignant tumor), image analysis using functional MRI • multiple field: language translation, semantic analysis, speech synthesis, speech to text conversion. • industrial: vision, robotics
  • 11. Acting humanly: Turing Test • Turing (1950) "Computing machinery and intelligence": • "Can machines think?"  "Can machines behave intelligently?" • Operational test for intelligent behavior: the Imitation Game • Predicted that by 2000, a machine might have a 30% chance of fooling a lay person for 5 minutes • Anticipated all major arguments against AI in following 50 years • Suggested major components of AI: knowledge, reasoning, language understanding, learning
  • 12. Thinking humanly: cognitive modeling • 1960s "cognitive revolution": information- processing psychology • Requires scientific theories of internal activities of the brain • How to validate? Requires 1) Predicting and testing behavior of human subjects (top- down) or 2) Direct identification from neurological data (bottom- up) • Both approaches (roughly, Cognitive Science and Cognitive Neuroscience) • now distinct from AI •
  • 13. Thinking rationally: "laws of thought" • What are correct arguments/thought processes? • Several Greek schools developed various forms of logic: notation and rules of derivation for thoughts; may or may not have proceeded to the idea of mechanization • Direct line through mathematics and philosophy to modern AI • Problems: 1. Not all intelligent behavior is mediated by logical deliberation 2. What is the purpose of thinking? What thoughts should I have?
  • 14. Acting rationally: rational agent • Rational behavior: doing the right thing • The right thing: that which is expected to maximize goal achievement, given the available information • Doesn't necessarily involve thinking – e.g., blinking reflex – but thinking should be in the service of rational action • • •
  • 15. AI techniques • Combinatorial search problems – state space (over which search is performed) – finite state space (discrete) – how to move from one state to another (transition rules) • Applications – Games (one player or two players) – Navigation (robotics) • Solution – Search tree exploration
  • 16. techniques • Combinatorial search approach Sliding piece puzzle: 1 2 3 4 8 6 7 5 Start: goal: 1 2 3 4 5 6 7 8 Legal moves: slide a piece next to empty slot. Many AI problems can be modeled as search problems.
  • 17. A portion of a search tree for the 8-puzzle.
  • 18. Combinatorial search •Uninformed search • depth-first • breadth-first • iterative deepening • breadth-depth • informed search • best-first
  • 19. Combinatorial search •Depth-first search What are the ways to speed-up DFS?
  • 21. Combinatorial search • heuristic search • for each node, a heuristic provides an estimate of its distance from the goal. • for sliding-piece puzzle, Manhattan distance is one such estimate. • estimate for other search problems? (e.g. queen placement)
  • 23. techniques • Symbolic (logical) approach to AI intelligent problem solving requires reasoning and deduction. Knowledge is represented as a set of logical assertions A1, …, An, and a conclusion to be drawn is also expressed as an assertion. Can we deduce F from A1, …, An?
  • 24. Knowledge bases • Knowledge base = set of sentences in a formal language • Declarative approach to building an agent (or other system): – Tell it what it needs to know • Then it can Ask itself what to do - answers should follow from the KB • Agents can be viewed at the knowledge level i.e., what they know, regardless of how implemented • Or at the implementation level – i.e., data structures in KB and algorithms that manipulate them
  • 25. The party example • If Alex goes, then Beki goes: A → B • If Chris goes, then Alex goes: C → A • Beki does not go: not B • Chris goes: C Query: Is it possible to satisfy all these conditions? This is called satisfiability problem.
  • 26. Example of languages • Programming languages: – Formal languages, not ambiguous, but cannot express partial information. Not expressive enough. • Natural languages: – Very expressive but ambiguous: ex: small dogs and cats. • Good representation language: – Both formal and can express partial information, can accommodate inference • Main approach used in AI: Logic-based languages. • Predicate-logic with Horn clauses
  • 27. Deduction algorithms Example: Given P  R, and Q  ~R Can we deduce ~(P & Q)? Applications • expert systems (Mycin, dendral are early examples) • logic programming • automatic theorem proving (software validation) Resolution strategy
  • 28. Example: ∀X (∀Y ((mother(X) ∧ child_of(Y,X)) → loves(X,Y))) mother(mary) child_of(tom,mary) Can we deduce? loves(tom, mary) Logical deduction in predicate logic
  • 29. techniques • Probabilistic approach to AI Knowledge representation models uncertainties. Example: • H = “Have a headache” • F = “Coming down with Flu” • P(H) = 1/10 • P(F) = 1/40 • P(H|F) = ½ Given that you have a headache, what is the probability that you have flu? This kind of modeling is widely used in various prediction problems, e.g., in determining the insurance premium for car etc.
  • 30. Probabilistic approach to AI Some games are inherently probabilistic. •Financial markets • backgammon
  • 31. techniques Training set New applicant: (young, has job, does not own house, good credit). Will (s)he default? We can build a probabilistic model to answer.
  • 32. techniques Machine learning approach to AI: • self-improving algorithms • solution obtained without explicit programming • Closer to modeling human intelligence or natural intelligence (we learn many things by observing even if step by step procedure absent) Prominent examples: • Neural networks • Genetic algorithms, evolutionary method
  • 33. techniques Neuron (very roughly modeled by neurons in human brains.
  • 34. techniques An algorithm called back propagation algorithm is used to adjust the weights of neurons based on the discrepancy between correct output and computed output.
  • 35. techniques Evolutionary algorithms: • encoding of the collection of solutions as strings. • goal is to evolve the “best” solution. • use cross-over and mutation and iterate. Example of cross-over and mutation
  • 36. AI prehistory • Philosophy Logic, methods of reasoning, mind as physical system foundations of learning, language, rationality • Mathematics Formal representation and proof algorithms, computation, (un)decidability, (in)tractability, probability • Economics utility, decision theory • Neuroscience physical substrate for mental activity • Psychology phenomena of perception and motor control, experimental techniques • Computer building fast computers engineering • Control theory design systems that maximize an objective function over time • Linguistics knowledge representation, grammar
  • 37. Abridged history of AI • 1943 McCulloch & Pitts: Boolean circuit model of brain • 1950 Turing's "Computing Machinery and Intelligence" • 1956 Dartmouth meeting: "Artificial Intelligence" adopted • 1950s Early AI programs, including Samuel's checkers program, Newell & Simon's Logic Theorist, Gelernter's Geometry Engine • 1965 Robinson's complete algorithm for logical reasoning • 1966—73 AI discovers computational complexity Neural network research almost disappears • 1969—79 Early development of knowledge-based systems • 1980-- AI becomes an industry • 1986-- Neural networks return to popularity • 1987-- AI becomes a science, probabilistic techniques dominate • 1995-- The emergence of intelligent agents
  • 38. State of the art • Deep Blue defeated the reigning world chess champion Garry Kasparov in 1997 • Proved a mathematical conjecture (Robbins conjecture) unsolved for decades • No hands across America (driving autonomously 98% of the time from Pittsburgh to San Diego) • During the 1991 Gulf War, US forces deployed an AI logistics planning and scheduling program that involved up to 50,000 vehicles, cargo, and people • NASA's on-board autonomous planning program controlled the scheduling of operations for a spacecraft • Proverb solves crossword puzzles better than most humans