SlideShare a Scribd company logo
Artificial intelligent Lec 1-ai-introduction-
Artificial Intelligence
Course No.: CSC 343
Lect.: 3 h
Lab. : 2 h
Marks: 65 final
10 Y. work
25 Lab+ Oral
Exam hours: 3 h
By Prof. Dr. :
Taymoor M. Nazmy
The text book
Russell & Norvig,
"Artificial Intelligence:
A Modern Approach",
2nd Edition, Prentice Hall,
2003.
Course Objective
A broad introduction and appreciation of Artificial
Intelligence and its applications.
Course Outline
Definition of Artificial Intelligence. Modelling
intelligence: adaptive and knowledge based
approaches to analysis and design of intelligent
systems. Application domains of Artificial
Intelligence. Types of Artificial Intelligence systems.
Course Content
Introduction
Rational Agents
Search and Problem
solving
Informed search
Propositional logic
Predicate logic
Knowledge representation
using logic
Planning
Probabilistic Reasoning
Planning under
uncertainty
Machine Learning
Reinforcement learning
Neural Networks
Natural Language
Processing
Artificial intelligent Lec 1-ai-introduction-
What is Artificial
Intelligence?
definitions
Turing test
rational thinking
acting rationally
Foundations of Artificial
Intelligence
philosophy
mathematics
psychology
computer science
linguistics
History of Artificial
Intelligence
Applications of AI
-select a task that you believe requires intelligence
examples:
-playing chess, solving puzzles, translating from English to
German, finding a proof for a theorem.
-for that task, sketch a computer-based system that tries to
solve the task architecture, components, behavior.
what are the computational methods your system relies on-
e.g. data bases, matrix multiplication, graph traversal.
what are the main challenges?
how do humans tackle the task?
Foundations of AI
Computer
Science &
Engineering
AI
Mathematics
Cognitive
Science
Philosophy
Psychology Linguistics
BiologyEconomics
Foundations of AI
Engineering:
robotics, vision, control-expert systems, biometrics,
Computer Science:
AI-languages , knowledge representation, algorithms, …
Pure Sciences:
statistics approaches, neural nets, fuzzy logic, …
Linguistics:
computational linguistics, phonetics , speech, …
Psychology:
cognitive models, knowledge-extraction from experts, …
Medicine:
human neural models, neuroscience,...
Fundamental Issues for most AI problems
1- Representation
Facts about the world have to be represented in some
way, e.g., mathematical logic is one language that is
used in AI.
Deals with the questions of what to represent and how
to represent it. How to structure knowledge? What is
explicit, and what must be inferred? How to encode
"rules" for inferencing so as to find information that is
only implicitly known?
How to deal with incomplete, inconsistent, and
probabilistic knowledge?
2-Search
Many tasks can be viewed as searching a very large
problem space for a solution. For example, Checkers
has about 1040 states, and Chess has about 10120
states in a typical games. Use of heuristics (meaning
"serving to aid discovery") and constraints.
3-Inference
From some facts others can be inferred. Related to
search. For example, knowing "All elephants have
trunks" and "Clyde is an elephant," can we answer
the question "Does Clyde have a trunk?"
Deduction, abduction, reasoning under uncertainty.
4-Learning
Inductive inference, neural networks, genetic algorithms,
evolutionary approaches.
5-Planning
Starting with general facts about the world, facts about
the effects of basic actions, facts about a particular
situation, and a statement of a goal, generate a strategy
for achieving that goals in terms of a sequence of
primitive steps or actions.
“AI develops programming paradigms, languages,
tools, and environments for application areas for which
conventional programming fails”, such as:
Symbolic programming (LISP)
Logical Programming (PROLOG)
Rule-based Programming (Expert system shells)
Soft Computing (Belief network tools, fuzzy logic
tool boxes,…)
Object-oriented programming (Smalltalk)
What is AI?
What is AI?
Many definitions, most fit into one of four categories:
Systems that act humanly
Systems that think humanly
Systems that act rationally
Systems that think rationally
Systems that think like humans
Cognitive science
Fascinating area, but we will not be covering it in
this course.
Systems that think rationally
Aristotle: What are the correct thought processes
Systems that reason in a logical manner
Systems doing inference correctly.
Systems that act rationally
(Rational behavior ) Doing the right thing
Rational agent approach
Agent: entity that perceives and acts
Rational agent: acts so to achieve best outcome
Turing in 1950 published a philosophical paper designed to
stop people arguing about whether or not machines could
think. He proposed that the question be replaced with a test.
Acting Rationally
Acting rationally means that one acts to achieve
his/her goals given his/her beliefs.
AI can be viewed as the study and creation of rational
agents. An agent is something that can perceive
and act.
The study of AI as rational agent design has two
advantages:
(a) it is more general than the “laws of thought”
approach, and
(b) it is more amenable to scientific development
than approaches that limit themselves to human
behavior or human thought.
Artificial intelligent Lec 1-ai-introduction-
Artificial intelligent Lec 1-ai-introduction-
Artificial intelligent Lec 1-ai-introduction-
Artificial intelligent Lec 1-ai-introduction-
History
Examples of Modeling Human Intelligence
Semantic networks are designed after the
psychological model of the human
associative memory.
John Plumber Person
Owner Ford Car
May 97 Time
Oct 00
Ownership Situation
Is a Is a
Is a
Is a
Is a
Is a
Owner
Ownee
Start-time
End-time
Ford
Is a
Modeling Human Intelligence
Rule-based or Expert systems - Knowledge bases
consisting of hundreds or thousands of rules of the form:
IF (condition) THEN (action).
Use rules to store knowledge (“rule-based”).
The rules are usually gathered from experts in the field
being represented (“expert system”).
Most widely used knowledge model in the commercial world.
IF (it is raining AND you must go outside)
THEN (put on your raincoat)
Rules can fire off a chain of other rules
IF (raincoat is on)
THEN (will not get wet)
Expert Systems
Expert systems were commercially the most
successful domain in Artificial Intelligence.
Somewhat out of favor today
These programs mimic the experts in whatever
field.
Auto mechanic Telephone networking
Cardiologist Delivery routing
Organic compounds Professional auditor
Mineral prospecting Manufacturing
Infectious diseases Pulmonary function
Diagnostic internal medicine Weather forecasting
VAX computer configuration Battlefield tactician
Engineering structural analysis Space-station life support
Audiologist Civil law
Expert Systems
Two major parts of an expert system:
The knowledge base: The collection of rules
that make up the expert system.
The inference engine: A program that uses the
rules by making several passes over them.
On each pass, the inference engine looks for all
rules whose condition is satisfied (if part).
It then takes the action (then part) and makes
another pass over all the rules looking for matching
condition.
This goes on until no rules’ conditions are matched.
The results are all those action parts left.
Human Brain and Neural Networks
-Human Brain is made up of Billions of cells called
neurons,
- Neurons work when grouped together Decisions
are made by passing electrical signals,
- Neurons are devices for processing Binary digits,
-A neuron: many-inputs / one-output unit,
-output can be excited or not excited,
-incoming signals from other neurons determine if
the neuron shall excite ("fire")
Output subject to attenuation in the synapses, which
are junction parts of the neuron
Artificial Neural Network: A collection of neurons
which are interconnected. The output of one connects to
several others with different strength connections.
Initially, neural networks have no knowledge. (All
information is learned from experience using the
network.)
Input 1
Input 2
Input 3
Neuron 1
Neuron 2
Output from
Neuron 1
Output from
Neuron 2
Artificial neural network
Natural NN
Comparing the computer with the human brain
Evolutionary Systems
Genetic Programming:
A technique that follows Darwinian evolution.
The evolution takes place directly on the
programs in the population that are striving
to reach the goal specified by the
programmer.
Only the goal is known and possibly some
of the structure of the solution..
The concept of modern approach of AI
(Perception and action AI agent)
Organisms in the real world have gather information about
their
environment (perception) and
based on this information, they have to manipulate
their environment (including themselves) in a way
that is advantageous to them (action).
The action in turn may cause a change in the organism’s
perception, which can lead to a different type of action.
We call this the perception-action cycle.
Complex organisms do not just perceive and act, but they also
have an internal state that changes based on the success of
previous perception-action cycles.
This is the mechanism of learning.
AI “Application” Areas
Rule-Based Expert Systems
Medical Diagnosis: MYCIN, INTERNIST, PUFF
CSP Scheduling: ISIS, Airline scheduling
Data Mining
Financial: Fraud detection, credit scoring
Sales: Customer preferences, inventory
Science: NASA galaxy DB, genome
analysis
AI “Application” Areas (cont.)
Language Processing
Speech: dictation, HCI
Language: Machine Translation
ML & NLP: Fact Extraction
ML & words: Information Retrieval
Robotics
Machine Vision
Mobile Robots & “agents”
Manipulation
Applications
Game playing : Chess, Draughts,..
Speech recognition :speech to word processors
Understand natural language: understand meaning
of a whole sentence
Computer vision : 3-D world, but human eye and
camera are 2
Expert systems: stored knowledge
Robotics: space missions
Character recognition :handwriting
Pattern recognition: Faces, fingerprint,
Artificial intelligent Lec 1-ai-introduction-
Artificial intelligent Lec 1-ai-introduction-

More Related Content

PDF
Cognitive science Unit 1
PDF
Extending and integrating a hybrid knowledge representation system into the c...
DOC
Chapter 1 (final)
PDF
Lect 01, 02
PDF
Lebanon SoftShore Artificial Intelligence Seminar - March 38, 2014
DOCX
Cosc 208 lecture note-1
PDF
ARTIFICIAL INTELLIGENT ( ITS / TASK 6 ) done by Wael Saad Hameedi / P71062
Cognitive science Unit 1
Extending and integrating a hybrid knowledge representation system into the c...
Chapter 1 (final)
Lect 01, 02
Lebanon SoftShore Artificial Intelligence Seminar - March 38, 2014
Cosc 208 lecture note-1
ARTIFICIAL INTELLIGENT ( ITS / TASK 6 ) done by Wael Saad Hameedi / P71062

What's hot (20)

PDF
Psychology and AI
PDF
Artificial Intelligence Notes Unit 1
PDF
Towards which Intelligence? Cognition as Design Key for building Artificial I...
PPTX
PPT
Ai introduction
PDF
PDF
Artificial intelligence
PPTX
Computational Neuroscience - The Brain - Computer Science Interface
PDF
Chris Currin computational neuroscience intro AIMS MIIA 2017-12
PDF
Knowledge based systems -- introduction
PPT
Artificial intel
PPTX
Unit 2 ai
PPT
Lect1 111021211234-phpapp02
PPTX
Aritificial intelligence
PPT
901470 chap1
PPT
Artificial intelligence Ch1
PDF
Ai notes
PPTX
Artificial Intelligence Course- Introduction
PDF
Ben Goertzel Monash 2011
PDF
Unit 1
Psychology and AI
Artificial Intelligence Notes Unit 1
Towards which Intelligence? Cognition as Design Key for building Artificial I...
Ai introduction
Artificial intelligence
Computational Neuroscience - The Brain - Computer Science Interface
Chris Currin computational neuroscience intro AIMS MIIA 2017-12
Knowledge based systems -- introduction
Artificial intel
Unit 2 ai
Lect1 111021211234-phpapp02
Aritificial intelligence
901470 chap1
Artificial intelligence Ch1
Ai notes
Artificial Intelligence Course- Introduction
Ben Goertzel Monash 2011
Unit 1
Ad

Similar to Artificial intelligent Lec 1-ai-introduction- (20)

PPTX
Artificial intelligence
PDF
Cognitive Science Unit 2
PPTX
1 Introduction to AI.pptx
PDF
lecture1423723637.pdf
PDF
Soft Computing Notes. Computer Science and Engineering
PDF
271_AI Lect Notes.pdf
PPT
Artificial intelligence
PPTX
Artificial intelligence
PPT
EELU AI lecture 1- fall 2022-2023 - Chapter 01- Introduction.ppt
PDF
ARTIFICIAL INTELLIGENCETterm Paper
PDF
Ch 1 Introduction to AI.pdf
PPT
Artificial_Intelligence
PDF
AI Mod1@AzDOCUMENTS.in.pdf
PPTX
Artificial intelligence
PPT
Artificial intelligence
PPTX
AI INTRODUCTION Artificial intelligence.ppt
PPTX
ai introduction and problems based on artificial intelligence .pptx
PPTX
Module 01 IS & MLA.pptx for 22 scheme notes in a ppt form
PPT
Artificialintelligence 131226011156-phpapp02
Artificial intelligence
Cognitive Science Unit 2
1 Introduction to AI.pptx
lecture1423723637.pdf
Soft Computing Notes. Computer Science and Engineering
271_AI Lect Notes.pdf
Artificial intelligence
Artificial intelligence
EELU AI lecture 1- fall 2022-2023 - Chapter 01- Introduction.ppt
ARTIFICIAL INTELLIGENCETterm Paper
Ch 1 Introduction to AI.pdf
Artificial_Intelligence
AI Mod1@AzDOCUMENTS.in.pdf
Artificial intelligence
Artificial intelligence
AI INTRODUCTION Artificial intelligence.ppt
ai introduction and problems based on artificial intelligence .pptx
Module 01 IS & MLA.pptx for 22 scheme notes in a ppt form
Artificialintelligence 131226011156-phpapp02
Ad

More from Taymoor Nazmy (20)

PPTX
Cognitive systems
PPTX
Cognitive systems
PPT
Artificial intelligent Lec 5-logic
PPT
Artificial intelligent Lec 3-ai chapter3-search
PPT
Lec 2-agents
PPTX
Image processing 2
PPT
Image processing 1-lectures
PPT
Software Engineering Lec 10 -software testing--
PPT
Software Engineering Lec 8-design-
PPT
Software Engineering Lec 7-uml-
PPT
Software Engineering Lec5 oop-uml-i
PPT
Software Engineering Lec 4-requirments
PPT
Software Engineering Lec 3-project managment
PPT
Software Engineering Lec 2
PPT
Software Engineering Lec 1-introduction
PPT
PPT
presentation skill
PPT
PPT
PPT
Cognitive systems
Cognitive systems
Artificial intelligent Lec 5-logic
Artificial intelligent Lec 3-ai chapter3-search
Lec 2-agents
Image processing 2
Image processing 1-lectures
Software Engineering Lec 10 -software testing--
Software Engineering Lec 8-design-
Software Engineering Lec 7-uml-
Software Engineering Lec5 oop-uml-i
Software Engineering Lec 4-requirments
Software Engineering Lec 3-project managment
Software Engineering Lec 2
Software Engineering Lec 1-introduction
presentation skill

Recently uploaded (20)

PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
RMMM.pdf make it easy to upload and study
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Insiders guide to clinical Medicine.pdf
PPTX
master seminar digital applications in india
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PPTX
Cell Structure & Organelles in detailed.
PDF
Pre independence Education in Inndia.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Pharma ospi slides which help in ospi learning
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
TR - Agricultural Crops Production NC III.pdf
Anesthesia in Laparoscopic Surgery in India
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
RMMM.pdf make it easy to upload and study
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Final Presentation General Medicine 03-08-2024.pptx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Insiders guide to clinical Medicine.pdf
master seminar digital applications in india
human mycosis Human fungal infections are called human mycosis..pptx
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
Cell Structure & Organelles in detailed.
Pre independence Education in Inndia.pdf
Microbial diseases, their pathogenesis and prophylaxis
O5-L3 Freight Transport Ops (International) V1.pdf
Pharma ospi slides which help in ospi learning

Artificial intelligent Lec 1-ai-introduction-

  • 2. Artificial Intelligence Course No.: CSC 343 Lect.: 3 h Lab. : 2 h Marks: 65 final 10 Y. work 25 Lab+ Oral Exam hours: 3 h By Prof. Dr. : Taymoor M. Nazmy
  • 3. The text book Russell & Norvig, "Artificial Intelligence: A Modern Approach", 2nd Edition, Prentice Hall, 2003.
  • 4. Course Objective A broad introduction and appreciation of Artificial Intelligence and its applications. Course Outline Definition of Artificial Intelligence. Modelling intelligence: adaptive and knowledge based approaches to analysis and design of intelligent systems. Application domains of Artificial Intelligence. Types of Artificial Intelligence systems.
  • 5. Course Content Introduction Rational Agents Search and Problem solving Informed search Propositional logic Predicate logic Knowledge representation using logic Planning Probabilistic Reasoning Planning under uncertainty Machine Learning Reinforcement learning Neural Networks Natural Language Processing
  • 7. What is Artificial Intelligence? definitions Turing test rational thinking acting rationally Foundations of Artificial Intelligence philosophy mathematics psychology computer science linguistics History of Artificial Intelligence Applications of AI
  • 8. -select a task that you believe requires intelligence examples: -playing chess, solving puzzles, translating from English to German, finding a proof for a theorem. -for that task, sketch a computer-based system that tries to solve the task architecture, components, behavior. what are the computational methods your system relies on- e.g. data bases, matrix multiplication, graph traversal. what are the main challenges? how do humans tackle the task?
  • 9. Foundations of AI Computer Science & Engineering AI Mathematics Cognitive Science Philosophy Psychology Linguistics BiologyEconomics
  • 10. Foundations of AI Engineering: robotics, vision, control-expert systems, biometrics, Computer Science: AI-languages , knowledge representation, algorithms, … Pure Sciences: statistics approaches, neural nets, fuzzy logic, … Linguistics: computational linguistics, phonetics , speech, … Psychology: cognitive models, knowledge-extraction from experts, … Medicine: human neural models, neuroscience,...
  • 11. Fundamental Issues for most AI problems 1- Representation Facts about the world have to be represented in some way, e.g., mathematical logic is one language that is used in AI. Deals with the questions of what to represent and how to represent it. How to structure knowledge? What is explicit, and what must be inferred? How to encode "rules" for inferencing so as to find information that is only implicitly known? How to deal with incomplete, inconsistent, and probabilistic knowledge?
  • 12. 2-Search Many tasks can be viewed as searching a very large problem space for a solution. For example, Checkers has about 1040 states, and Chess has about 10120 states in a typical games. Use of heuristics (meaning "serving to aid discovery") and constraints. 3-Inference From some facts others can be inferred. Related to search. For example, knowing "All elephants have trunks" and "Clyde is an elephant," can we answer the question "Does Clyde have a trunk?" Deduction, abduction, reasoning under uncertainty.
  • 13. 4-Learning Inductive inference, neural networks, genetic algorithms, evolutionary approaches. 5-Planning Starting with general facts about the world, facts about the effects of basic actions, facts about a particular situation, and a statement of a goal, generate a strategy for achieving that goals in terms of a sequence of primitive steps or actions.
  • 14. “AI develops programming paradigms, languages, tools, and environments for application areas for which conventional programming fails”, such as: Symbolic programming (LISP) Logical Programming (PROLOG) Rule-based Programming (Expert system shells) Soft Computing (Belief network tools, fuzzy logic tool boxes,…) Object-oriented programming (Smalltalk)
  • 16. What is AI? Many definitions, most fit into one of four categories: Systems that act humanly Systems that think humanly Systems that act rationally Systems that think rationally
  • 17. Systems that think like humans Cognitive science Fascinating area, but we will not be covering it in this course. Systems that think rationally Aristotle: What are the correct thought processes Systems that reason in a logical manner Systems doing inference correctly. Systems that act rationally (Rational behavior ) Doing the right thing Rational agent approach Agent: entity that perceives and acts Rational agent: acts so to achieve best outcome
  • 18. Turing in 1950 published a philosophical paper designed to stop people arguing about whether or not machines could think. He proposed that the question be replaced with a test.
  • 19. Acting Rationally Acting rationally means that one acts to achieve his/her goals given his/her beliefs. AI can be viewed as the study and creation of rational agents. An agent is something that can perceive and act. The study of AI as rational agent design has two advantages: (a) it is more general than the “laws of thought” approach, and (b) it is more amenable to scientific development than approaches that limit themselves to human behavior or human thought.
  • 25. Examples of Modeling Human Intelligence Semantic networks are designed after the psychological model of the human associative memory. John Plumber Person Owner Ford Car May 97 Time Oct 00 Ownership Situation Is a Is a Is a Is a Is a Is a Owner Ownee Start-time End-time Ford Is a
  • 26. Modeling Human Intelligence Rule-based or Expert systems - Knowledge bases consisting of hundreds or thousands of rules of the form: IF (condition) THEN (action). Use rules to store knowledge (“rule-based”). The rules are usually gathered from experts in the field being represented (“expert system”). Most widely used knowledge model in the commercial world. IF (it is raining AND you must go outside) THEN (put on your raincoat) Rules can fire off a chain of other rules IF (raincoat is on) THEN (will not get wet)
  • 27. Expert Systems Expert systems were commercially the most successful domain in Artificial Intelligence. Somewhat out of favor today These programs mimic the experts in whatever field. Auto mechanic Telephone networking Cardiologist Delivery routing Organic compounds Professional auditor Mineral prospecting Manufacturing Infectious diseases Pulmonary function Diagnostic internal medicine Weather forecasting VAX computer configuration Battlefield tactician Engineering structural analysis Space-station life support Audiologist Civil law
  • 28. Expert Systems Two major parts of an expert system: The knowledge base: The collection of rules that make up the expert system. The inference engine: A program that uses the rules by making several passes over them. On each pass, the inference engine looks for all rules whose condition is satisfied (if part). It then takes the action (then part) and makes another pass over all the rules looking for matching condition. This goes on until no rules’ conditions are matched. The results are all those action parts left.
  • 29. Human Brain and Neural Networks -Human Brain is made up of Billions of cells called neurons, - Neurons work when grouped together Decisions are made by passing electrical signals, - Neurons are devices for processing Binary digits, -A neuron: many-inputs / one-output unit, -output can be excited or not excited, -incoming signals from other neurons determine if the neuron shall excite ("fire") Output subject to attenuation in the synapses, which are junction parts of the neuron
  • 30. Artificial Neural Network: A collection of neurons which are interconnected. The output of one connects to several others with different strength connections. Initially, neural networks have no knowledge. (All information is learned from experience using the network.) Input 1 Input 2 Input 3 Neuron 1 Neuron 2 Output from Neuron 1 Output from Neuron 2 Artificial neural network Natural NN
  • 31. Comparing the computer with the human brain
  • 32. Evolutionary Systems Genetic Programming: A technique that follows Darwinian evolution. The evolution takes place directly on the programs in the population that are striving to reach the goal specified by the programmer. Only the goal is known and possibly some of the structure of the solution..
  • 33. The concept of modern approach of AI (Perception and action AI agent) Organisms in the real world have gather information about their environment (perception) and based on this information, they have to manipulate their environment (including themselves) in a way that is advantageous to them (action). The action in turn may cause a change in the organism’s perception, which can lead to a different type of action. We call this the perception-action cycle. Complex organisms do not just perceive and act, but they also have an internal state that changes based on the success of previous perception-action cycles. This is the mechanism of learning.
  • 34. AI “Application” Areas Rule-Based Expert Systems Medical Diagnosis: MYCIN, INTERNIST, PUFF CSP Scheduling: ISIS, Airline scheduling Data Mining Financial: Fraud detection, credit scoring Sales: Customer preferences, inventory Science: NASA galaxy DB, genome analysis
  • 35. AI “Application” Areas (cont.) Language Processing Speech: dictation, HCI Language: Machine Translation ML & NLP: Fact Extraction ML & words: Information Retrieval Robotics Machine Vision Mobile Robots & “agents” Manipulation
  • 36. Applications Game playing : Chess, Draughts,.. Speech recognition :speech to word processors Understand natural language: understand meaning of a whole sentence Computer vision : 3-D world, but human eye and camera are 2 Expert systems: stored knowledge Robotics: space missions Character recognition :handwriting Pattern recognition: Faces, fingerprint,