4. Clinical Prediction Models Flashcards

1
Q

what is a perceptron

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

what is an svm

A

f is a sigmoid function and output is consistent with binary labels

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

what is a multi-layer perceptron

A

f is a sigmoid function or other non-linear function, that can form a stack of many layers

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

what is deep learning

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

what are some famous NN

A

googleNet
alexNet

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

what should be considered for knn

A
  • value of k (number of nearest neighbours to retrieve), rule is that k = sqrt(number training points)
  • what distance metric to use
  • computation (data size, dim size)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what happens if k is too small/ too large

A
  • too small = not general, sensitive to noise
  • too large = may include points from other classes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what are some distance measures for knn

A
  • euclidean = straight line distance between points
  • manhattan = measures distance if a grid like path is followed
  • cosine = angle between two vector representations of data points
  • hamming = the number of points that differ between two collections of values
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

draw cosine distance

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

draw manhattan distance

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

draw euclidean distance

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

how do we deal with the computational complexity of knn

A
  • compute only an approximate distance
  • remove redundant data
  • pre-sort (index)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what are some evaluation metrics

A

confusion matrix:
- tp = positive values correctly identified
- fp = negative values identified as positive

recall = ratio of actual positives to those correctly identified

precision = ratio true positives actually classified as positives

f = harmonic mean of precision & recall

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