Chapter 1- Introduction Flashcards
what is machine learning?
Programming a computer so that it can learn from experience
what does it mean to “learn”?
adaptation in response to observed data
what is supervised learning?
Ground truth labels are provided
what is unsupervised learning?
Ground truth labels are unknown
what is overfitting?
Model learns too well on training data and cannot predict well on testing data
what does it mean to say some ML algorithms are stochastic?
They rely on random initialisation of some parameters
what are the two learning paradigms in machine learning
deterministic
probabilistic (or stochastic)
describe deterministic ML
one output for one input and it is always the same
describe probabilistic (or stochastic) ML
One input can have many outputs. Given the same conditions and inputs a learning algorithm returns a distribution of outputs
in probabilistic ML, the function f in X => Fp(Y) is…
a stochastic process
3 reasons probability is necessary for machine learning:
Finite training data
Data uncertainty
Prediction uncertainty