05 Deep learning methods* Flashcards

1
Q

categorical encodings

A
  1. Integer
    - red = 1, green=2, blue=3…
  2. dummy
    - red= 00
    - green = 01
    - blue=10 …
  3. one hot
    - table format
    - r, g, b
    1,0,0
    0, 1, 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

k class classification

A
  • use softmax to calculate probability
  • use cross entropy to calculate loss
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

stochastic gradient descent

A
  • random starting weights
  • attempt to find global minimal error
  • slower (but more efficient memory)
  • minibatches can be used per step (more stable)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

momentum

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

nesterov

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

learning rate decay

A
  • start with big learning rate
  • impose a decay to reduce learning rate by the number of epochs
  • decay = (1/ (1+learn_rate . epoch_no.)) . decay0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly