Path: blob/main/Lessons/Lesson 14 - RecSys 2/Self_Assess_Solns_14.ipynb
871 views
Lesson 14 - Self-Assessment Solutions
Self-Assessment: Setting up the File
Self-Assessment: Baseline RMSE to Assess Model Performance
Self-Assessment: Weighted Mean User-Based Filter
The RMSE with the user-based collaborative filter is 3.61 compared to 4.70 for the baseline model, so predicted ratings are more precise.
Self-Assessment: Weighted Mean Item-Based Filter - Solution
The weighted-mean item-based collaborative filter is the best so far at RMSE = 3.41. The weighted-mean item-based collaborative filter had RMSE = 3.61 and the baseline model had RMSE = 4.70.
Self-Assessment: kNN-Based Collaborative Filter - Solution
The RMSE for each model used so far are stated below ranked from best to worst:
weighted-mean item-based collaborative filter: RMSE = 3.41
weighted-mean item-based collaborative filter: RMSE = 3.61
kNN-based collaborative filter: (average) RMSE = 3.69 (note that this one will vary slightly if you didn't set a seed or if you use a different seed)
baseline model: RMSE = 4.70.
Self-Assessment: kNNBasic Item-based Collaborative Filter - Solution
The RMSE for each model used so far are stated below ranked from best to worst:
weighted-mean item-based collaborative filter: RMSE = 3.41
kNN-based item-based collaborative filter: (average) RMSE = 3.44
weighted-mean item-based collaborative filter: RMSE = 3.61
kNN-based user-based collaborative filter: (average) RMSE = 3.69 (note that this one will vary slightly if you didn't set a seed or if you use a different seed)
baseline model: RMSE = 4.70.