You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
This repo very great! But I still don't understand why we should use ALS instead of SVD (Step 3 in Jupyter notebook)? Could you explain more for this experiment?
The text was updated successfully, but these errors were encountered:
Indeed, SVD and ALS are very similar in concept - they are both factorizing the ratings matrix into sub-matrices. It's debatable which is best and it really depends on the situation. In fact for most real-world problems one should try a few algorithms and approaches to see which one best fits the objectives.
In this case, the ALS implementation in Spark is performant and scalable and is the easiest to use and get started with. The SVD implementation available in the older RDD-based Spark APIs is not very scalable by contrast. Hence the reason we use ALS here.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This repo very great! But I still don't understand why we should use ALS instead of SVD (Step 3 in Jupyter notebook)? Could you explain more for this experiment?
The text was updated successfully, but these errors were encountered: