MLS-C01 Modeling Practice Question
A data scientist is building a recommendation system for an e-commerce platform. The dataset includes user-item interactions (clicks, purchases, ratings). The scientist wants to use matrix factorization. Which approach is most appropriate for handling implicit feedback (e.g., clicks) rather than explicit ratings?
⚠ Common exam trap
Test-takers frequently assume SVD (Option B) is the standard matrix factorization method, but they overlook that SVD requires a complete matrix and treats zeros as missing, which is invalid for implicit feedback where zeros carry meaning.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Use weighted alternating least squares (WALS) with confidence weights
Weighted Alternating Least Squares (WALS) is specifically designed for implicit feedback scenarios because it treats unobserved interactions as negative signals with low confidence, rather than missing values. By assigning confidence weights (e.g., based on click frequency or dwell time), WALS can factorize the implicit feedback matrix effectively, avoiding the bias introduced by treating all zeros as true negatives.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Use k-means clustering to segment users and then use item popularity within clusters
Why it's wrong here
Clustering is not matrix factorization.
- ✗
Use singular value decomposition (SVD) on the interaction matrix with missing values filled with 0
Why it's wrong here
Filling missing with 0 is inappropriate for implicit feedback because it treats non-observed as negative.
- ✗
Use a deep neural network with a softmax output to predict item probabilities
Why it's wrong here
While possible, it's not the most direct matrix factorization approach for implicit feedback.
- ✓
Use weighted alternating least squares (WALS) with confidence weights
Why this is correct
WALS is specifically designed for implicit feedback by assigning confidence to observed and unobserved interactions.
Go deeper
Related to this question
About these practice questions
This MLS-C01 question is part of Courseiva's 1,672-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This MLS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MLS-C01 exam.