CLOUD-DIGITAL-LEADER · Question #375
A cinema company wants to build a model to predict customer visit patterns for the coming year. They have three years of customer visit data across 300 theaters; however, the data has been stored in d
The correct answer is B. Transform the data into a consistent format.. Before training a machine learning model, all input data must be preprocessed into a consistent format so the algorithm can learn accurate patterns. Inconsistent formats produce noise and bias that degrade model performance.
Question
A cinema company wants to build a model to predict customer visit patterns for the coming year. They have three years of customer visit data across 300 theaters; however, the data has been stored in different formats by different theaters. They must train the ML model. What should they do?
Options
- AUse the last year of data so there are fewer inconsistencies for the model to handle.
- BTransform the data into a consistent format.
- CGroup different format types and train a different model for each group.
- DChoose an ML model type that can process different formats of input data.
How the community answered
(34 responses)- A3% (1)
- B88% (30)
- C3% (1)
- D6% (2)
Why each option
Before training a machine learning model, all input data must be preprocessed into a consistent format so the algorithm can learn accurate patterns. Inconsistent formats produce noise and bias that degrade model performance.
Using only the last year of data discards two-thirds of the available training data, significantly reducing the model's ability to learn seasonal and long-term visit patterns and lowering predictive accuracy.
Transforming all data into a consistent format is the essential preprocessing step required before training any ML model. ML algorithms require uniform input structure to identify meaningful patterns - inconsistent formats introduce errors and bias that lead to inaccurate predictions. Standardizing three full years of data across all 300 theaters ensures the model trains on a complete, coherent dataset and produces reliable visit-pattern predictions.
Training separate models per format group is inefficient, prevents the model from learning patterns across the full dataset, and produces fragmented, inconsistent predictions that cannot be easily combined.
Standard ML models do not natively process multiple heterogeneous input formats simultaneously - data must be preprocessed into a consistent structure before training regardless of which model type is selected.
Concept tested: ML data preprocessing - standardizing formats before model training
Source: https://developers.google.com/machine-learning/data-prep/transform/normalization
Topics
Community Discussion
No community discussion yet for this question.