Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Movie Recommendations Model
|
| 2 |
|
| 3 |
This model provides movie recommendations based on collaborative filtering (SVD).
|
|
@@ -21,4 +30,4 @@ with open("svd_model.pkl", "rb") as f:
|
|
| 21 |
user_id = 123
|
| 22 |
recommendations = model.get_recommendations(user_id)
|
| 23 |
|
| 24 |
-
print("Recommended movies:", recommendations)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- recommendation-system
|
| 7 |
+
- collaborative-filtering
|
| 8 |
+
- movie-recomendation
|
| 9 |
+
---
|
| 10 |
# Movie Recommendations Model
|
| 11 |
|
| 12 |
This model provides movie recommendations based on collaborative filtering (SVD).
|
|
|
|
| 30 |
user_id = 123
|
| 31 |
recommendations = model.get_recommendations(user_id)
|
| 32 |
|
| 33 |
+
print("Recommended movies:", recommendations)
|