
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A hospital trained a model to detect pneumonia from chest X-rays. They now want to adapt it to detect lung cancer using the same base architecture and dataset type. What is the most efficient approach?
A
Unsupervised learning
B
Self-supervised learning
C
Transfer learning
D
Reinforcement learning
Explanation:
Transfer learning is the most efficient approach in this scenario because:
The hospital already has a trained model for pneumonia detection from chest X-rays
Both tasks (pneumonia detection and lung cancer detection) use the same:
Base architecture
Dataset type (chest X-rays)
Domain (medical imaging)
Why transfer learning works best:
Reuses learned features: The model has already learned relevant features from chest X-rays that are useful for both pneumonia and lung cancer detection
Faster training: Only the final layers need to be retrained or fine-tuned, significantly reducing training time
Less data required: Transfer learning typically requires less labeled data for the new task
Better performance: Leveraging pre-trained weights often leads to better performance compared to training from scratch
Why other options are less efficient:
Unsupervised learning: Would require learning patterns from scratch without labels
Self-supervised learning: Involves creating pseudo-labels, which is unnecessary when you already have a relevant pre-trained model
Reinforcement learning: Not suitable for this type of classification task; designed for sequential decision-making problems
Transfer learning allows the hospital to build upon their existing investment in the pneumonia detection model, making the adaptation to lung cancer detection much more efficient and effective.