SlideShare a Scribd company logo
Machine Learning for Language Technology 2015
http://stp.lingfil.uu.se/~santinim/ml/2015/ml4lt_2015.htm
What is Machine Learning?
Marina Santini
santinim@stp.lingfil.uu.se
Department of Linguistics and Philology
Uppsala University, Uppsala, Sweden
Autumn 2015
Acknowledgements
• Thanks to Hal Daume’ III, Andrew Y. Ng, Arthur
Samuel, Tom Mitchell, Ethem Alpaydin,
Michael Jordan, Michael Collins, Joakim Nivre,
Pedro Domingo, wikipedia, the web.
Lecture 1: What is Machine Learning? 2
What is Machine Learning?
http://www.umiacs.umd.edu/~hal/ciml/
• Machine learning is the study of computer
systems that learn from data and experience.
• It is applied in an incredibly wide variety of
application areas, from medicine to
advertising, from military to pedestrian.
• Any area in which you need to make sense of
data is a potential customer of machine
learning.
[Hal Daume’ III]
Lecture 1: What is Machine Learning? 3
Example: Rule-based systems
• Parts-Of-Speech Tagger (Brill’s tagger)
• tag1--> tag2 IF Condition
the Condition tests the preceding and/or following word tokens, or their tags
(the notation for such rules differs between implementations). For example,
in Brill's notation:
• IN NN WDPREVTAG DT while
change the tag of a word from IN (preposition) to NN (common noun), if the
preceding word's tag is DT (determiner) and the word itself is "while". This
covers cases like "all the while" or "in a while", where "while" should be
tagged as a noun rather than its more common use as a preposition (many
rules are more general).
Lecture 1: What is Machine Learning? 4
Example: Machine Learning-Based Systems
(From: The Apache OpenNLP library, a machine learning based toolkit for the
processing of natural language text: https://opennlp.apache.org/ )
• We do not have rules , but a training corpus/dataset: The POS Tagger can be
trained on annotated training material. The training material is a collection of
tokenized sentences where each token has the assigned part-of-speech tag. The
training material may look like this:
About_IN
10_CD
Euro_NNP
,_,
I_PRP
reckon_VBP
That_DT
sounds_VBZ
good_JJ
• With this annotated material we train a (mathematical/statistical) model.
• Then we evaluate the results: how well does this model perform? The accuracy can
be measured on a test dataset or via cross validation.
Lecture 1: What is Machine Learning? 5
Generally speaking: Deduction vs Induction
• Deductive reasoning works from the more general to the more
specific. Sometimes this is informally called a "top-down" approach.
We might begin with thinking up a theory about our topic of
interest. We then narrow that down into more specific hypotheses
that we can test. This ultimately leads us to be able to test the
hypotheses with specific data -- a confirmation (or not) of our
original theories.
• Inductive reasoning works the other way, moving from specific
observations to broader generalizations and theories. Informally,
we sometimes call this a "bottom up" approach. In inductive
reasoning, we begin with specific observations (the data) and
measures, begin to detect patterns and regularities, formulate
some tentative hypotheses that we can explore, and finally end up
developing a general model.
Lecture 1: What is Machine Learning? 6
Machine Learning is based on ...
• Induction
• Generalization from data
Lecture 1: What is Machine Learning? 7
In summary (by Hal Daume’ III)
https://piazza.com/umd/fall2015/cmsc422/home
• Machine learning is all about finding patterns in data.
The whole idea is to replace the "human writing code"
with a "human supplying data" and then let the system
figure out what it is that the person wants to do by
looking at the examples.
• The most central concept in machine learning is
generalization: how to generalize beyond the examples
that have been provided at "training time" to new
examples that you see at "test time.“
• A very large fraction of what we'll talk about has to do
with figuring out what generalization means.
Lecture 1: What is Machine Learning? 8
Why learning?
• We do not know the exact method: speech
recognition, spam filters, robotics, etc.
• The exact method is too expensive: statistical
physics, etc.
• Task evolves over time...
• There is no need to use machine learning for
computing a payroll: for this task we just need
an algorithm!
Lecture 1: What is Machine Learning? 9
Why is ML so fashionable?
• Broad applicability:
– Finance, robotic, medicin, NLP, IT, MT etc.
• Close connection between theory and practice
• Open field, lots of room for new work.M
Lecture 1: What is Machine Learning? 10
Interdisciplinary Field
Machine learning is:
• a subfield of computer science that evolved from the study
of pattern recognition and computational learning
theory in artificial intelligence.
• Machine learning explores the study and construction of
algorithms that can LEARN from and make predictions on data.
• Such algorithms operate by building a model from example inputs
in order to make data-driven predictions or decisions, rather than
following strictly static program instructions.
[wikipidia]
Lecture 1: What is Machine Learning? 11
Machine Learning & Statistics
• Machine learning and statistics are closely
related fields.
• According to Michael Jordan, the ideas of
machine learning, from methodological
principles to theoretical tools, have had a long
pre-history in statistics. He also suggested the
term data science as a placeholder to call the
overall field.
Lecture 1: What is Machine Learning? 12
Machine Learning and Data Mining
• Machine Learning relates with the study, design
and development of models and algorithms that
give computers the capability to learn from data.
• Data Mining can be defined as the process that
starting from apparently unstructured data tries
to extract knowledge and/or unknown interesting
patterns. During this process machine Learning
algorithms are used.
Lecture 1: What is Machine Learning? 13
Many Types of Learning
• Supervised learning
– Supervised classification is the only focus of this
course
• Unsupervised learning
• Semi- and weakly supervised
• Reinforcement learning
• etc.
Lecture 1: What is Machine Learning? 14
In other words
• Supervised learning: learning with a teacher
(with class labels)
• Unsupervised learning: learning without a
teacher ( without class labels)
Lecture 1: What is Machine Learning? 15
Learning problems
• Regression
• Binary classification
• Multiclass classification
• Ranking
• etc.
Lecture 1: What is Machine Learning? 16
Informal and Formal Definitions
• There are plenty of definitions...
• Informal: The field of study that gives computers the
ability to learn without being explicitly programmed
(Arthur Samuel, 1959)
• Formal: A computer program is said to learn from
experience E, with respect to some task T, and some
performance measure P, if its performance on T as
measured by P improves with experience E (Tom
Mitchell, 1998).
Lecture 1: What is Machine Learning? 17
Example: Spam Filter (by Andrew Y. Ng)
1. Classifying emails as spam or not spam
2. Watching you label emails as spam or not spam.
3. The number (or fraction) of emails correctly classified as spam/not spam.
4. None of the above—this is not a machine learning problem.
Lecture 1: What is Machine Learning? 18
Spam Filter (by Andrew Y. Ng)
• Answer:
Lecture 1: What is Machine Learning? 19
Classification: Questions
• How would you write a program to
distinguish a picture of me from a picture of
someone else?
• How would you write a program to determine
whether a sentence is grammatical or not?
• How would you write a program to distinguish
cancerous cells from normal cells?
Lecture 1: What is Machine Learning? 20
Classification: Answers
• How would you write a program to distinguish a picture of
me from a picture of someone else?
⇒ Provide examples pictures of me and pictures of other people
and let a classifier learn to distinguish the two.
• How would you write a program to determine whether a
sentence is grammatical or not?
⇒ Provide examples of grammatical and ungrammatical
sentences and let a classifier learn to distinguish the two.
• How would you write a program to distinguish cancerous
cells from normal cells?
⇒ Provide examples of cancerous and normal cells and let
a classifier learn to distinguish the two.
Lecture 1: What is Machine Learning? 21
Elements of Machine Learning
• Generalization: how well a model performs on new data.
• Data:
– Training data: specific examples to learn from.
– Test data: new specific examples to assess performance.
• Models (theoretical assumptions)
– decision trees, naive bayes, perceptron, etc.
• Algorithms:
– Learning altorighms that infer the model parameters from the data.
– Inference algorithms that infer prediction from a model.
Lecture 1: What is Machine Learning? 22
Generalization
• Predicting the future based on the past
• Our system needs to generalize beyond the
training data to some future data that it might
not have seen yet.
Lecture 1: What is Machine Learning? 23
Generalization: Overfitting & Underfitting
• Overfitting occurs when the model fits the training data too well
and does not generalize so it performs badly on the test
data. Overfitting is often a result of an excessively complicated
model
• Underfitting occurs when the model does not fit the data well
enough. Underfitting is often a result of an excessively simple
model.
• Both overfitting and underfitting lead to poor predictions on new
data sets.
• A learning model that overfits or underfits does not generalize well.
Lecture 1: What is Machine Learning? 24
Example: Letter vs non-letter classification
Training
set
Test set
Lecture 1: What is Machine Learning? 25
Data:
The iris
dataset
Three components:
1. Class label (aka “label”, denoted y)
2. Features (aka “attributes”)
3. Feature values (aka “attribute values”, denoted x) ⇒ Features can be
binary, nominal or continuous
• A labeled dataset is a collection of (x,y) pairs
Lecture 1: What is Machine Learning? 26
Task
• Predict the class for this ”test” example:
Sepal length – Sepal width – Petal length – Petal width - Type
5.2 3.7 1.7 0.3 ???
Lecture 1: What is Machine Learning? 27
Require us to
generalize from
the training data
Noise
• Unexplained or random variation in the data
• Anomaly
Lecture 1: What is Machine Learning? 28
Models
Models are theoretical assumptions
– decision trees, naive bayes, perceptron, etc.
Given:
– Domain X: descriptions
– Domain Y: predictions
– H: hypothesis space; the set of all possible hypotheses
– h: target hypothesis
– Idea: to extrapolate observed y's over all X.
– Hope: to predict well on future y's given x's.
– Require: there must be regularities to be found.
Lecture 1: What is Machine Learning? 29
Inductive bias
• In ML, the inductive bias is the set of
theoretical assumptions that must be added
to the observed data to transform the
algorithm's outputs into logical deductions.
Lecture 1: What is Machine Learning? 30
Examples of inductive biases
• Decision trees (ID3): Shorter trees are preferred
over larger trees. Trees that place high
information gain attributes close to the root are
preferred over those that do not.
• Naive Bayes classifier: maximize conditional
independence.
• Logistic regression: there exists a simple
boundary that splits one class from the other, and
the further you get from that boundary the more
confident you can be.
• Perceptron: data must be linearly separable.
Lecture 1: What is Machine Learning? 31
Inductive Bias: definition
• “The inductive bias of a learning algorithm is
the set of assumptions that the learner uses
to predict outputs given inputs that it has not
encountered”.
– Tom Mitchell, 1980
Lecture 1: What is Machine Learning? 32
Learning & Inference Algorithms
• Traditionally, the goal of learning has been to find
a model for which prediction (i.e., inference)
accuracy is as high as possible.
• More recently: find models for which prediction
(i.e., inference) is as efficient as possible.
• In practical terms: recent interest in more
unconventional approaches to learning that
combine generalization accuracy with other
desiderata such as faster inference.
Lecture 3: Basic Concepts of ML 33
The End
Lecture 1: What is Machine Learning? 34

More Related Content

PPTX
Introduction to Machine Learning
PDF
An introduction to Machine Learning
PPTX
Machine learning
PPTX
Lecture # 08 Reverse Engineering
PPTX
AI in production
PPT
Machine Learning presentation.
PPTX
Machine Learning
PPT
Machine Learning
Introduction to Machine Learning
An introduction to Machine Learning
Machine learning
Lecture # 08 Reverse Engineering
AI in production
Machine Learning presentation.
Machine Learning
Machine Learning

What's hot (20)

PDF
Lecture1 introduction to machine learning
PPTX
Machine learning
PPT
Machine learning
PPT
Machine Learning
PPTX
Machine learning
PPT
Machine learning
PDF
Introduction to Machine Learning
PPTX
Presentation On Machine Learning.pptx
PPTX
Machine Learning
PPTX
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
PPTX
Machine learning
PDF
Large Language Models - Chat AI.pdf
PPTX
Machine Can Think
PDF
Explainable AI (XAI) - A Perspective
PDF
The fundamentals of Machine Learning
PPTX
Machine learning ppt
PPTX
Machine Learning
PDF
Machine Learning and its Applications
PDF
Machine Learning
PDF
Intro to LLMs
Lecture1 introduction to machine learning
Machine learning
Machine learning
Machine Learning
Machine learning
Machine learning
Introduction to Machine Learning
Presentation On Machine Learning.pptx
Machine Learning
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Machine learning
Large Language Models - Chat AI.pdf
Machine Can Think
Explainable AI (XAI) - A Perspective
The fundamentals of Machine Learning
Machine learning ppt
Machine Learning
Machine Learning and its Applications
Machine Learning
Intro to LLMs
Ad

Viewers also liked (20)

PDF
Data Science, Machine Learning and Neural Networks
PDF
Machine Learning for Dummies
PPT
Classification of learning profile based on categories of student preferences
PPTX
Information processing in consumer behaviour
PPT
Theory of reasoned action
DOC
Five functions of effective management
PPTX
Fhs attitudes
PPT
Active audience
PPT
Consumer Learning
PPT
Consumer behavior Values
PPT
Beliefs, attitudes, and behavior
PPTX
Introduction to Machine Learning
PDF
BB Chapter Nine : Learning and Memory
PPTX
Active and Passive audience theories
PPT
Active and passive voice ppt
PPT
Cognitive Dissonance Theory
PPTX
Cognitive dissonance theory
PPTX
Consumer Attitudes and Beliefs
PPTX
Buying decision process in rural marketing
PPT
Consumer Behavior
Data Science, Machine Learning and Neural Networks
Machine Learning for Dummies
Classification of learning profile based on categories of student preferences
Information processing in consumer behaviour
Theory of reasoned action
Five functions of effective management
Fhs attitudes
Active audience
Consumer Learning
Consumer behavior Values
Beliefs, attitudes, and behavior
Introduction to Machine Learning
BB Chapter Nine : Learning and Memory
Active and Passive audience theories
Active and passive voice ppt
Cognitive Dissonance Theory
Cognitive dissonance theory
Consumer Attitudes and Beliefs
Buying decision process in rural marketing
Consumer Behavior
Ad

Similar to Lecture 1: What is Machine Learning? (20)

PPTX
MODULE-1.pptx machine learning note for 6th sem vtu
PDF
Introduction AI ML& Mathematicals of ML.pdf
PPTX
Machine Learning Basics - By Animesh Sinha
PPTX
Machine Learning SPPU Unit 1
PPT
311----introduction tomachinelearning.ppt
PDF
Machine Learning Landscape
PPT
311introductiontomachinelearningweeqwq.ppt
PPT
311introductiontomachinelearning.ppt12345
PPT
introduction to machine learining for beginers
PPT
introductiontomachinelearningforcomputerbeginners
PPT
machinelearningggggggggggggggggggggggggg
PPT
311introductiontomachinelearniccccng.ppt
PPT
311introductiontomachinelearnibbblmng.ppt
PPT
INTRODUCTION TO MACHINE LEARNING AND TYPES
PDF
Introduction to Data Science
PPTX
Introduction to Artificial Intelligence And Machine Learning
PPT
introductiontomachinelearning - types of ML
PPT
Introduction to machine learning - types of ML
DOCX
Training_Report_on_Machine_Learning.docx
MODULE-1.pptx machine learning note for 6th sem vtu
Introduction AI ML& Mathematicals of ML.pdf
Machine Learning Basics - By Animesh Sinha
Machine Learning SPPU Unit 1
311----introduction tomachinelearning.ppt
Machine Learning Landscape
311introductiontomachinelearningweeqwq.ppt
311introductiontomachinelearning.ppt12345
introduction to machine learining for beginers
introductiontomachinelearningforcomputerbeginners
machinelearningggggggggggggggggggggggggg
311introductiontomachinelearniccccng.ppt
311introductiontomachinelearnibbblmng.ppt
INTRODUCTION TO MACHINE LEARNING AND TYPES
Introduction to Data Science
Introduction to Artificial Intelligence And Machine Learning
introductiontomachinelearning - types of ML
Introduction to machine learning - types of ML
Training_Report_on_Machine_Learning.docx

More from Marina Santini (20)

PDF
Can We Quantify Domainhood? Exploring Measures to Assess Domain-Specificity i...
PDF
Towards a Quality Assessment of Web Corpora for Language Technology Applications
PDF
A Web Corpus for eCare: Collection, Lay Annotation and Learning -First Results-
PDF
An Exploratory Study on Genre Classification using Readability Features
PDF
Lecture: Semantic Word Clouds
PDF
Lecture: Ontologies and the Semantic Web
PDF
Lecture: Summarization
PDF
Relation Extraction
PDF
Lecture: Question Answering
PDF
IE: Named Entity Recognition (NER)
PDF
Lecture: Vector Semantics (aka Distributional Semantics)
PDF
Lecture: Word Sense Disambiguation
PDF
Lecture: Word Senses
PDF
Sentiment Analysis
PDF
Semantic Role Labeling
PDF
Semantics and Computational Semantics
PDF
Lecture 9: Machine Learning in Practice (2)
PDF
Lecture 8: Machine Learning in Practice (1)
PDF
Lecture 5: Interval Estimation
PDF
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
Can We Quantify Domainhood? Exploring Measures to Assess Domain-Specificity i...
Towards a Quality Assessment of Web Corpora for Language Technology Applications
A Web Corpus for eCare: Collection, Lay Annotation and Learning -First Results-
An Exploratory Study on Genre Classification using Readability Features
Lecture: Semantic Word Clouds
Lecture: Ontologies and the Semantic Web
Lecture: Summarization
Relation Extraction
Lecture: Question Answering
IE: Named Entity Recognition (NER)
Lecture: Vector Semantics (aka Distributional Semantics)
Lecture: Word Sense Disambiguation
Lecture: Word Senses
Sentiment Analysis
Semantic Role Labeling
Semantics and Computational Semantics
Lecture 9: Machine Learning in Practice (2)
Lecture 8: Machine Learning in Practice (1)
Lecture 5: Interval Estimation
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio

Recently uploaded (20)

PPTX
Cell Types and Its function , kingdom of life
PDF
Computing-Curriculum for Schools in Ghana
PDF
Weekly quiz Compilation Jan -July 25.pdf
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Pharma ospi slides which help in ospi learning
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Cell Types and Its function , kingdom of life
Computing-Curriculum for Schools in Ghana
Weekly quiz Compilation Jan -July 25.pdf
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Pharma ospi slides which help in ospi learning
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
Chinmaya Tiranga quiz Grand Finale.pdf
Final Presentation General Medicine 03-08-2024.pptx
2.FourierTransform-ShortQuestionswithAnswers.pdf
Microbial disease of the cardiovascular and lymphatic systems
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Orientation - ARALprogram of Deped to the Parents.pptx
Anesthesia in Laparoscopic Surgery in India
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Abdominal Access Techniques with Prof. Dr. R K Mishra
Pharmacology of Heart Failure /Pharmacotherapy of CHF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf

Lecture 1: What is Machine Learning?

  • 1. Machine Learning for Language Technology 2015 http://stp.lingfil.uu.se/~santinim/ml/2015/ml4lt_2015.htm What is Machine Learning? Marina Santini [email protected] Department of Linguistics and Philology Uppsala University, Uppsala, Sweden Autumn 2015
  • 2. Acknowledgements • Thanks to Hal Daume’ III, Andrew Y. Ng, Arthur Samuel, Tom Mitchell, Ethem Alpaydin, Michael Jordan, Michael Collins, Joakim Nivre, Pedro Domingo, wikipedia, the web. Lecture 1: What is Machine Learning? 2
  • 3. What is Machine Learning? http://www.umiacs.umd.edu/~hal/ciml/ • Machine learning is the study of computer systems that learn from data and experience. • It is applied in an incredibly wide variety of application areas, from medicine to advertising, from military to pedestrian. • Any area in which you need to make sense of data is a potential customer of machine learning. [Hal Daume’ III] Lecture 1: What is Machine Learning? 3
  • 4. Example: Rule-based systems • Parts-Of-Speech Tagger (Brill’s tagger) • tag1--> tag2 IF Condition the Condition tests the preceding and/or following word tokens, or their tags (the notation for such rules differs between implementations). For example, in Brill's notation: • IN NN WDPREVTAG DT while change the tag of a word from IN (preposition) to NN (common noun), if the preceding word's tag is DT (determiner) and the word itself is "while". This covers cases like "all the while" or "in a while", where "while" should be tagged as a noun rather than its more common use as a preposition (many rules are more general). Lecture 1: What is Machine Learning? 4
  • 5. Example: Machine Learning-Based Systems (From: The Apache OpenNLP library, a machine learning based toolkit for the processing of natural language text: https://opennlp.apache.org/ ) • We do not have rules , but a training corpus/dataset: The POS Tagger can be trained on annotated training material. The training material is a collection of tokenized sentences where each token has the assigned part-of-speech tag. The training material may look like this: About_IN 10_CD Euro_NNP ,_, I_PRP reckon_VBP That_DT sounds_VBZ good_JJ • With this annotated material we train a (mathematical/statistical) model. • Then we evaluate the results: how well does this model perform? The accuracy can be measured on a test dataset or via cross validation. Lecture 1: What is Machine Learning? 5
  • 6. Generally speaking: Deduction vs Induction • Deductive reasoning works from the more general to the more specific. Sometimes this is informally called a "top-down" approach. We might begin with thinking up a theory about our topic of interest. We then narrow that down into more specific hypotheses that we can test. This ultimately leads us to be able to test the hypotheses with specific data -- a confirmation (or not) of our original theories. • Inductive reasoning works the other way, moving from specific observations to broader generalizations and theories. Informally, we sometimes call this a "bottom up" approach. In inductive reasoning, we begin with specific observations (the data) and measures, begin to detect patterns and regularities, formulate some tentative hypotheses that we can explore, and finally end up developing a general model. Lecture 1: What is Machine Learning? 6
  • 7. Machine Learning is based on ... • Induction • Generalization from data Lecture 1: What is Machine Learning? 7
  • 8. In summary (by Hal Daume’ III) https://piazza.com/umd/fall2015/cmsc422/home • Machine learning is all about finding patterns in data. The whole idea is to replace the "human writing code" with a "human supplying data" and then let the system figure out what it is that the person wants to do by looking at the examples. • The most central concept in machine learning is generalization: how to generalize beyond the examples that have been provided at "training time" to new examples that you see at "test time.“ • A very large fraction of what we'll talk about has to do with figuring out what generalization means. Lecture 1: What is Machine Learning? 8
  • 9. Why learning? • We do not know the exact method: speech recognition, spam filters, robotics, etc. • The exact method is too expensive: statistical physics, etc. • Task evolves over time... • There is no need to use machine learning for computing a payroll: for this task we just need an algorithm! Lecture 1: What is Machine Learning? 9
  • 10. Why is ML so fashionable? • Broad applicability: – Finance, robotic, medicin, NLP, IT, MT etc. • Close connection between theory and practice • Open field, lots of room for new work.M Lecture 1: What is Machine Learning? 10
  • 11. Interdisciplinary Field Machine learning is: • a subfield of computer science that evolved from the study of pattern recognition and computational learning theory in artificial intelligence. • Machine learning explores the study and construction of algorithms that can LEARN from and make predictions on data. • Such algorithms operate by building a model from example inputs in order to make data-driven predictions or decisions, rather than following strictly static program instructions. [wikipidia] Lecture 1: What is Machine Learning? 11
  • 12. Machine Learning & Statistics • Machine learning and statistics are closely related fields. • According to Michael Jordan, the ideas of machine learning, from methodological principles to theoretical tools, have had a long pre-history in statistics. He also suggested the term data science as a placeholder to call the overall field. Lecture 1: What is Machine Learning? 12
  • 13. Machine Learning and Data Mining • Machine Learning relates with the study, design and development of models and algorithms that give computers the capability to learn from data. • Data Mining can be defined as the process that starting from apparently unstructured data tries to extract knowledge and/or unknown interesting patterns. During this process machine Learning algorithms are used. Lecture 1: What is Machine Learning? 13
  • 14. Many Types of Learning • Supervised learning – Supervised classification is the only focus of this course • Unsupervised learning • Semi- and weakly supervised • Reinforcement learning • etc. Lecture 1: What is Machine Learning? 14
  • 15. In other words • Supervised learning: learning with a teacher (with class labels) • Unsupervised learning: learning without a teacher ( without class labels) Lecture 1: What is Machine Learning? 15
  • 16. Learning problems • Regression • Binary classification • Multiclass classification • Ranking • etc. Lecture 1: What is Machine Learning? 16
  • 17. Informal and Formal Definitions • There are plenty of definitions... • Informal: The field of study that gives computers the ability to learn without being explicitly programmed (Arthur Samuel, 1959) • Formal: A computer program is said to learn from experience E, with respect to some task T, and some performance measure P, if its performance on T as measured by P improves with experience E (Tom Mitchell, 1998). Lecture 1: What is Machine Learning? 17
  • 18. Example: Spam Filter (by Andrew Y. Ng) 1. Classifying emails as spam or not spam 2. Watching you label emails as spam or not spam. 3. The number (or fraction) of emails correctly classified as spam/not spam. 4. None of the above—this is not a machine learning problem. Lecture 1: What is Machine Learning? 18
  • 19. Spam Filter (by Andrew Y. Ng) • Answer: Lecture 1: What is Machine Learning? 19
  • 20. Classification: Questions • How would you write a program to distinguish a picture of me from a picture of someone else? • How would you write a program to determine whether a sentence is grammatical or not? • How would you write a program to distinguish cancerous cells from normal cells? Lecture 1: What is Machine Learning? 20
  • 21. Classification: Answers • How would you write a program to distinguish a picture of me from a picture of someone else? ⇒ Provide examples pictures of me and pictures of other people and let a classifier learn to distinguish the two. • How would you write a program to determine whether a sentence is grammatical or not? ⇒ Provide examples of grammatical and ungrammatical sentences and let a classifier learn to distinguish the two. • How would you write a program to distinguish cancerous cells from normal cells? ⇒ Provide examples of cancerous and normal cells and let a classifier learn to distinguish the two. Lecture 1: What is Machine Learning? 21
  • 22. Elements of Machine Learning • Generalization: how well a model performs on new data. • Data: – Training data: specific examples to learn from. – Test data: new specific examples to assess performance. • Models (theoretical assumptions) – decision trees, naive bayes, perceptron, etc. • Algorithms: – Learning altorighms that infer the model parameters from the data. – Inference algorithms that infer prediction from a model. Lecture 1: What is Machine Learning? 22
  • 23. Generalization • Predicting the future based on the past • Our system needs to generalize beyond the training data to some future data that it might not have seen yet. Lecture 1: What is Machine Learning? 23
  • 24. Generalization: Overfitting & Underfitting • Overfitting occurs when the model fits the training data too well and does not generalize so it performs badly on the test data. Overfitting is often a result of an excessively complicated model • Underfitting occurs when the model does not fit the data well enough. Underfitting is often a result of an excessively simple model. • Both overfitting and underfitting lead to poor predictions on new data sets. • A learning model that overfits or underfits does not generalize well. Lecture 1: What is Machine Learning? 24
  • 25. Example: Letter vs non-letter classification Training set Test set Lecture 1: What is Machine Learning? 25
  • 26. Data: The iris dataset Three components: 1. Class label (aka “label”, denoted y) 2. Features (aka “attributes”) 3. Feature values (aka “attribute values”, denoted x) ⇒ Features can be binary, nominal or continuous • A labeled dataset is a collection of (x,y) pairs Lecture 1: What is Machine Learning? 26
  • 27. Task • Predict the class for this ”test” example: Sepal length – Sepal width – Petal length – Petal width - Type 5.2 3.7 1.7 0.3 ??? Lecture 1: What is Machine Learning? 27 Require us to generalize from the training data
  • 28. Noise • Unexplained or random variation in the data • Anomaly Lecture 1: What is Machine Learning? 28
  • 29. Models Models are theoretical assumptions – decision trees, naive bayes, perceptron, etc. Given: – Domain X: descriptions – Domain Y: predictions – H: hypothesis space; the set of all possible hypotheses – h: target hypothesis – Idea: to extrapolate observed y's over all X. – Hope: to predict well on future y's given x's. – Require: there must be regularities to be found. Lecture 1: What is Machine Learning? 29
  • 30. Inductive bias • In ML, the inductive bias is the set of theoretical assumptions that must be added to the observed data to transform the algorithm's outputs into logical deductions. Lecture 1: What is Machine Learning? 30
  • 31. Examples of inductive biases • Decision trees (ID3): Shorter trees are preferred over larger trees. Trees that place high information gain attributes close to the root are preferred over those that do not. • Naive Bayes classifier: maximize conditional independence. • Logistic regression: there exists a simple boundary that splits one class from the other, and the further you get from that boundary the more confident you can be. • Perceptron: data must be linearly separable. Lecture 1: What is Machine Learning? 31
  • 32. Inductive Bias: definition • “The inductive bias of a learning algorithm is the set of assumptions that the learner uses to predict outputs given inputs that it has not encountered”. – Tom Mitchell, 1980 Lecture 1: What is Machine Learning? 32
  • 33. Learning & Inference Algorithms • Traditionally, the goal of learning has been to find a model for which prediction (i.e., inference) accuracy is as high as possible. • More recently: find models for which prediction (i.e., inference) is as efficient as possible. • In practical terms: recent interest in more unconventional approaches to learning that combine generalization accuracy with other desiderata such as faster inference. Lecture 3: Basic Concepts of ML 33
  • 34. The End Lecture 1: What is Machine Learning? 34