Class 6 Flashcards
computational learning theory
lies at the intersection of AI, stats, and theoretical CS
sample complexity
number of required examples to get to probably approximately correct
approximately correct
a hypothesis that is consistent with low error rate after a large set of training examples
linear functions
“fitting a straight line”
linear regression
task of finding the best fitting line
weight space
all of the possible settings for the weights
alpha
step size, also called learning rate
epoch
step that covers all the training examples
decision boundary
line that separates two classes
linear separator
linear decision boundary
logistic regression
process of fitting the weights to a model to minimize loss
parametric model
learning model that summarizes data with a set of parameters of fixed size (independent of the number of training examples)
nonparametric model
learning model that cannot be characterized by a bounded set of parameters – this method retains all data points as part of the model
table lookup
simplest instance based learning model – all training examples put into table, doesn’t generalize well
curse of dimensionality
nearest neighbors works well in low dimensions with plenty of data – at higher dimensions it doesn’t work well