LeetQuiz Logo
Privacy Policy•contact@leetquiz.com
© 2025 LeetQuiz All rights reserved.
Google Professional Machine Learning Engineer

Google Professional Machine Learning Engineer

Get started today

Ultimate access to all questions.


You are a Machine Learning Engineer working on a Neural Network project aimed at predicting housing prices. The dataset provided includes features such as square footage, number of bedrooms, and age of the property, each with varying ranges. During the model training phase, you observe that the gradient optimization process is inefficient, struggling to converge to an optimal solution due to the disparate feature scales. The project has tight deadlines and a limited budget, requiring a cost-effective and timely solution. What is the most effective action to take to address this issue? (Choose one correct option)

Real Exam



Explanation:

Normalization is a critical pre-processing step for Neural Networks, especially when dealing with datasets that have features with different ranges. It standardizes the data, facilitating faster convergence of the optimization algorithm and preventing it from being trapped in suboptimal local minima. Techniques like min-max normalization or z-score normalization can be applied to ensure uniformity across all features, thereby enhancing the model's ability to learn the relationships between features and the target variable effectively. This approach is both cost-effective and timely, aligning with the project's constraints.

Powered ByGPT-5