mindwrapped
commited on
Commit
•
4904bcd
1
Parent(s):
c61f9f4
Update README.md
Browse files
README.md
CHANGED
@@ -3,19 +3,16 @@ library_name: keras
|
|
3 |
tags:
|
4 |
- collaborative-filtering
|
5 |
- recommender
|
|
|
6 |
license:
|
7 |
- cc0-1.0
|
8 |
---
|
9 |
|
10 |
-
## Tensorflow Keras Implementation of Collaborative Filtering for Movie Recommendations
|
11 |
-
|
12 |
-
This repo contains the model and the notebook on [how to build and train a Keras model for Collaborative Filtering for Movie Recommendations](https://keras.io/examples/structured_data/collaborative_filtering_movielens/).
|
13 |
-
|
14 |
-
Full credits to [Siddhartha Banerjee](https://twitter.com/sidd2006)
|
15 |
-
|
16 |
## Model description
|
17 |
|
18 |
-
|
|
|
|
|
19 |
|
20 |
## Intended uses & limitations
|
21 |
|
@@ -23,7 +20,7 @@ More information needed
|
|
23 |
|
24 |
## Training and evaluation data
|
25 |
|
26 |
-
|
27 |
|
28 |
## Training procedure
|
29 |
|
|
|
3 |
tags:
|
4 |
- collaborative-filtering
|
5 |
- recommender
|
6 |
+
- structured-data-classification
|
7 |
license:
|
8 |
- cc0-1.0
|
9 |
---
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
## Model description
|
12 |
|
13 |
+
This repo contains the model and the notebook on [how to build and train a Keras model for Collaborative Filtering for Movie Recommendations](https://keras.io/examples/structured_data/collaborative_filtering_movielens/). Full credits to [Siddhartha Banerjee](https://twitter.com/sidd2006).
|
14 |
+
|
15 |
+
Based on a user and movies they have rated highly in the past, this model outputs the predicted rating a user would give to a movie they haven't seen yet. This information can be used to find out the top recommended movies for this user.
|
16 |
|
17 |
## Intended uses & limitations
|
18 |
|
|
|
20 |
|
21 |
## Training and evaluation data
|
22 |
|
23 |
+
The dataset consists of user's ratings on certain movies. It also consists of the movie's specific genres. The model was trained for 5 epochs with a batch size of 64.
|
24 |
|
25 |
## Training procedure
|
26 |
|