Lecture 7 - BI and Data Mining 2 Flashcards
Overfitting results in?
Decision trees that are more complex than necessary
Training error no longer provides?
A good estimate of how well the tree will perform on previously unseen records
What can cross validation technique be used for?
Cross validation technique can be used to compare the performance of different machine learning models on the same data set
What is leave-one-out?
Similar to k-fold where k=number of samples
What is bootstrapping?
Random sampling with replacement
Describe bootstrap method?
Refers to random sampling with replacement.
What is Neural Networks?
An artificial network consists of a pool of simple processing units which communicate by sending signals to each other over a large number of weighted connections.
What is a test stage in NN?
Each unit performs a relatively simple job:
receive input from neighbors or external sources and use this to compute an output signal which is propagated to other units
What is the learning stage in NN?
A task of the adjustment of the weights
What is feed-forward networks?
Where the data flow from input to output units is strictly feed-forward.
The data processing can extend over multiple layers of units, but no feedback connections or connections between the units of the same layer are present.
Perceptron?
A single layer feed-forward network consists of one or more output neurons, each of which is connected with a weighted factor w to all of inputs x
How does learning in Perceptrons work?
The weights of the neural networks are modified during the learning phase
Convergence Theory?
If there exists a set of connection weights w* which is able to perform the transformation y=d(x) the perceptron learning rule will converge to some solution in a finite number of steps for any initial choice of the weights
What is Backpropagation?
The multi-layer networks with a linear activation can classify only linear separable inputs or, in case of function approximation, only linear functions can be represented.
What is SVM?
Support Vector Machine