You are building a binary classification model using AutoML Tables on Vertex AI. The dataset has a severe class imbalance (1% positive class). Which strategy should you use to handle the imbalance?
AutoML Tables allows setting class weights to address imbalance; it will adjust the loss function accordingly.
Why this answer
AutoML Tables automatically applies class weighting and sampling to handle imbalance; the best practice is to let AutoML handle it. Manually resampling may not be optimal.