16
16
17
17
Datasets from the [MovieLens website](https://movielens.org) collected and maintained by [GroupLens](https://grouplens.org/datasets/movielens/).
18
18
The MovieLens datasets are presented in a Graph format.
19
- For license and usage resitrictions please refer to the Readme.md of the datasets.
19
+ For license and usage restrictions please refer to the Readme.md of the datasets.
20
20
21
- There are 6 versions of movielens datasets currently supported: "100k", "1m", "10m", "20m", "25m", "latest-small".
21
+ There are 6 versions of MovieLens datasets currently supported: "100k", "1m", "10m", "20m", "25m", "latest-small".
22
22
The 100k and 1k datasets contain movie data and rating data along with demographic data.
23
- Starting from the 10m dataset, Movielens datasets no longer contain the demographic data.
23
+ Starting from the 10m dataset, MovieLens datasets no longer contain the demographic data.
24
24
These datasets contain movie data, rating data, and tag information.
25
25
26
26
The 20m and 25m datasets additionally contain [genome tag scores](http://files.grouplens.org/papers/tag_genome.pdf).
@@ -56,7 +56,7 @@ julia> g = data[:]
56
56
node_data => Dict{String, Dict} with 2 entries
57
57
edge_data => Dict{Tuple{String, String, String}, Dict} with 1 entry
58
58
59
- # Acess the user information
59
+ # Access the user information
60
60
julia> user_data = g.node_data["user"]
61
61
Dict{Symbol, AbstractVector} with 4 entries:
62
62
:age => [24, 53, 23, 24, 33, 42, 57, 36, 29, 53 … 61, 42, 24, 48, 38, 26, 32, 20, 48, 22]
@@ -71,7 +71,7 @@ Dict{Symbol, Vector} with 2 entries:
71
71
:rating => Float16[3.0, 3.0, 1.0, 2.0, 1.0, 4.0, 2.0, 5.0, 3.0, 3.0 … 4.0, 4.0, 3.0, 2.0, 3.0, 3.0, 5.0, 1.0, 2.0, 3.0]
72
72
```
73
73
74
- ## MovieLens 100K dataset
74
+ ## MovieLens 20m dataset
75
75
76
76
```julia-repl
77
77
julia> data = MovieLens("20m")
0 commit comments