
Ultimate access to all questions.
You are a machine learning engineer tasked with investigating failures of a production line component based on sensor readings. Your dataset contains sensor readings where less than 1% of the readings are positive examples representing failure incidents. You have attempted to train several classification models on this imbalanced dataset, but none of them converge. How should you address the class imbalance problem to improve model performance?
A
Use the class distribution to generate 10% positive examples.
B
Use a convolutional neural network with max pooling and softmax activation.
C
Downsample the data with upweighting to create a sample with 10% positive examples.
D
Remove negative examples until the numbers of positive and negative examples are equal.