It is best not read the answers until you've tried to answer the questions yourself.
Answer:
| dendrite | input to artifical neuron |
| axon tree | output from artifical neuron |
| synapses | weights on connections between artificial neurons |
Answer: Without a non-linearity, the system would only ever be able
to compute linear functions. In addition, in some cases activations
could become extremely large as learning progressed.
Let's call the non-linearity function σ(x).
Important features:
limx→∞σ(x) = 1
limx→–∞σ(x) = –1 (or maybe 0)
σ(x) should be differentiable.
Answer: Δwji = ηδjyi
where
wji is the weight from node i to node j,
η is the learning rate parameter,
δj is the local gradient, and
yi is the input signal to node j.
Answer: In the forward pass, the node activations for the current inputs are computed, and hence the errors, i.e. the differences between the target outputs and the actual outputs. In the backward pass, these error signals are used to assign credit and/or blame and so to modify the weights so that the error will be less next time around.
Answer: Over-fitting refers to the situation where a learning system has learned the idiosyncrasies of a particular set of training data too well, so that it is unable to satisfactorily compute output for unseen data.
Answer: A decision tree is a tree each branch node of which corresponds to a question to be asked about a case being classified, and each possible answer corresponds to a subtree of that node. The leaf nodes correspond to completed classifications - in other words, they are labelled with the classification.
Answer: –Σpilogepi
Answer: It computes the information gain for splitting on each available attribute, and then it splits on the attribute giving the greatest information gain.
Answer: Error in measurement of the attributes of an instance, and error in data entry.
Answer: E(S) = (N – n + k – 1) /
(N + k)
where
S is the set of examples in a node,
k is the number of classes,
N is the number of examples in S,
C is the majority class in S, and
n out of N examples in S belong to C.
Bill Wilson's contact info
UNSW's CRICOS Provider No. is 00098G