Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added the Data section.
  • Loading branch information
ansegura7 committed May 29, 2019
1 parent 997a8ba commit 4a29546
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,46 @@ Project of a recommender system created with the Surprise framework. With a coll
</ul>
</details>

## Data
MovieLens data sets were collected by the GroupLens Research Project at the University of Minnesota.

This data set consists of:
- 100,000 ratings (1-5) from 943 users on 1682 movies.
- Each user has rated at least 20 movies.
- Simple demographic info for the users (age, gender, occupation, zip)

Table: **u.item**

| user id | item id | rating | timestamp |
| -- | -- | -- | -- |
| 196 | 242 | 3 | 881250949 |
| 186 | 302 | 3 | 891717742 |
| 22 | 377 | 1 | 878887116 |
| 244 | 51 | 2 | 880606923 |
| 166 | 346 | 1 | 886397596 |

Table: **u.item**

| movie id | movie title | release date | IMDb URL |
| -- | -- | -- | -- |
| 1 | Toy Story (1995) | 01-Jan-1995 | http://us.imdb.com/M/title-exact?Toy%20Story%20(1995) |
| 2 | GoldenEye (1995) | 01-Jan-1995 | http://us.imdb.com/M/title-exact?GoldenEye%20(1995) |
| 3 | Four Rooms (1995) | 01-Jan-1995 | http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995) |
| 4 | Get Shorty (1995) | 01-Jan-1995 | http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995) |
| 5 | Copycat (1995) | 01-Jan-1995 | http://us.imdb.com/M/title-exact?Copycat%20(1995) |

Table: **u.user**

| user id | age | gender | occupation | zip code |
| -- | -- | -- | -- | -- |
| 1 | 24 | M | technician | 85711 |
| 2 | 53 | F | other | 94043 |
| 3 | 23 | M | writer | 32067 |
| 4 | 24 | M | technician | 43537 |
| 5 | 33 | F | other | 15213 |

Permalink: https://grouplens.org/datasets/movielens/100k/

## Contributing and Feedback
Any kind of feedback/criticism would be greatly appreciated (algorithm design, documentation, improvement ideas, spelling mistakes, etc...).

Expand Down

0 comments on commit 4a29546

Please sign in to comment.