classification Flashcards

1
Q

features

A

measurable quantities

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

discriminatory power

A

quality of a feature that can help us classify

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

feature space

A

the set of all features from the feature vector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

classification

A

process of organising things into groups or classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

machine learning

A

the scienec of making

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

features for image classification

A

form factor, Euler number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does a negative Euler number indicate?

A

number of holes is greater than the number of objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

typical features of sound classification

A

waveform, frequency spectrum, formants(peaks in the spectrum), spectrogram, MFCC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

binarisation

A

converting an image or a signal into a binary format, typically consisting of only two intensity values, often black and white or 0 and 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

rule based classifier should have…

A

mutually exclusive rules and those ruler should be exhaustive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

supervised classification
+
examples

A

relies on having a set of examples
template matching, decision tree, neural networks, naive Bayes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

unsupervised classification

A

doesn’t have a training set
clustering

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

fingerprint

A

a feature that can be compared

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

perceptron

A

a structure that contains a neuron with adjustable weights

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

neural network

A

a multi-layer perceptron

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Hidden Markov Models

A

probabilistic reasoning algorithm that works on a set of temporal data

17
Q

reinforcement learning

A

between supervised and unsupervised

18
Q

classification error

A
19
Q

error rate

A

num of errors / num of attempts

20
Q

test set

A

has positive and negative instances

21
Q

true positive

A

an instance of the positive class that is correctly classifies

22
Q

true negative

A

an instance of the negative class that is correctly rejected

23
Q

false positive

A

an instance of the negative class that is wrongly classified

24
Q

false negative

A

an instance of the positive class that is wrongly rejected
dangerous!!

25
Q

accuracy

A

a=(tp+tn)/n

26
Q

precision

A

p=tp/(tp+fp)

27
Q

recall

A

r=tp/(tp+fn)

28
Q

confusion matrix

A

gives info on how frequently instances of class X are correctly classified as X or misclassified

29
Q

components of a classification system

A

sensing module, preprocessing mechanism, feature extraction mechanism, classifier, training set if needed