Questions: Representation Learning

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

An autoencoder is trained with a 512-dimensional input and a 16-dimensional bottleneck layer. After training, the bottleneck activations are used as features for a downstream classifier. What makes these 16 dimensions useful?

AThey are the 16 input dimensions with highest variance, selected automatically by the network
BThey encode random projections of the input, which are guaranteed to preserve distance relationships
CThey capture the most essential structure of the data — the information that cannot be discarded without preventing accurate reconstruction
DThey represent hand-crafted features that the network learned to mimic from a feature-engineering stage
Question 2 Multiple Choice

A neural network trained on natural images is repurposed as a feature extractor for a medical imaging task with only 200 labeled examples. This transfer learning approach succeeds primarily because:

AThe network was pre-trained on medical images and already encodes domain-specific diagnostic features
BNeural network activations are invariant to input domain and work equally well regardless of the training data source
CThe intermediate layers learned general visual structure — edges, textures, shapes — that is useful across image domains, not just the original classification task
DLarger training datasets always produce better features regardless of how different the source and target domains are
Question 3 True / False

Self-supervised learning methods can produce useful representations from unlabeled data by constructing surrogate tasks, such as predicting masked words or matching differently augmented views of the same image.

TTrue
FFalse
Question 4 True / False

Hand-crafted features designed by domain experts consistently outperform learned representations because they encode human knowledge that statistical learning can seldom discover.

TTrue
FFalse
Question 5 Short Answer

Why are intermediate layer activations often more valuable than the final output of a trained neural network for transfer learning purposes?

Think about your answer, then reveal below.