Week 7 - Deep Learning Architectures & Training Flashcards

(9 cards)

1
Q

What is the concept of Transfer Learning?

A

Transfer Learning is a method that leverages a pre-trained network for new tasks without needing vast amounts of new training data.

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

How does Transfer Learning work?

A
  • A network is initially trained on a large, general-purpose dataset like ImageNet
  • Then, if the specific dataset is too small, you freeze the pre-trained network’s weights and only re-train the classifier layer
  • For a medium sized dataset, you start with the pre-trained weights, then re-train the whole network or just the higher layers using a reduced learning rate.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are some properties of the ImageNet dataset?

A
  • 1.2 million high-resolution images
  • 1000 different classes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are some historical examples of Classification CNNs?

A
  • AlexNet
  • VGG
  • Residual Network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are some historical examples of Segmentation CNNs?

A
  • U-Net
  • SegNet
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are some historical examples of Object Detection CNNs?

A
  • RCNN
  • Fast RCNN
  • Mask RCNN
  • YOLO
  • nnU-Net
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How does Eye Tracking get used effectively in Computer Vision?

A

Deep learning performs better when regions are marked before the learning process.
As such, eye tracking is a cheap and easy way to record where someone has been looking. Once this data is filtered, it can be passed to a suitable deep learning system.

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

What can help to ‘pad-out’ a dataset if it isn’t suitably large enough for training?

A

Creating and using synthetic data, as it can be used to augment the original dataset with ‘new’ data

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

What are some factors to consider when rendering synthetic images?

A
  • Accuracy of material
  • Lighting
  • Background
  • How to create annotations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly