Home › Claude › aifoundations › linear_regression_and_supervised_learning › The SUPERVISED-learning setup gives the learner
The SUPERVISED-learning setup gives the learner
ALabelled (x, y) pairs and asks the learner to predict y on new x
BOnly a reward signal, no inputs
CA graph structure with no node labels
DOnly inputs x without any labels
Answer & Solution
Correct answer: A. Labelled (x, y) pairs and asks the learner to predict y on new x
Supervised learning is parametrised by a labelled training set {(x⁽ⁱ⁾, y⁽ⁱ⁾)} and learns h(x) ≈ y. Unsupervised has only x; reinforcement learns from a reward signal.
Related questions
The resulting per-example log-likelihood is, up to constantsWhy is STOCHASTIC gradient descent often preferred over BATCH gradient descent on very larClosed-form normal equations require XᵀX to beLogistic regression uses which hypothesis function?The PROBABILISTIC justification for the least-squares cost assumes the noise ε⁽ⁱ⁾ in y⁽ⁱ⁾ Why is the least-squares optimisation for LINEAR regression guaranteed to converge to the The design matrix X for n training examples with d features (plus intercept) has shapeThe closed-form 'normal equations' solution for least-squares linear regression is