DP-100 · Question #2
You need to implement a scaling strategy for the local penalty detection data. Which normalization type should you use?
The correct answer is C. Batch. Batch normalization is used when the entire dataset is available locally and can be processed all at once. It computes normalization statistics (mean, standard deviation) across the full batch of data, making it ideal for local, static datasets like penalty detection data…
Question
Options
- AStreaming
- BWeight
- CBatch
- DCosine
How the community answered
(26 responses)- A8% (2)
- B4% (1)
- C81% (21)
- D8% (2)
Explanation
Batch normalization is used when the entire dataset is available locally and can be processed all at once. It computes normalization statistics (mean, standard deviation) across the full batch of data, making it ideal for local, static datasets like penalty detection data. Streaming normalization is designed for real-time/incremental data that arrives continuously. Cosine normalization is a similarity metric, not a scaling technique. Weight normalization is used in neural network layers, not for scaling input data features.
Topics
Community Discussion
No community discussion yet for this question.