Skip to content

Commit 43d562f

Browse files
Merge pull request #187 from aurorarossi/fix_typo
Fix typos
2 parents de1ceb6 + 923f68a commit 43d562f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/datasets/graphs/movielens.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ end
1616
1717
Datasets from the [MovieLens website](https://movielens.org) collected and maintained by [GroupLens](https://grouplens.org/datasets/movielens/).
1818
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.
2020
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".
2222
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.
2424
These datasets contain movie data, rating data, and tag information.
2525
2626
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[:]
5656
node_data => Dict{String, Dict} with 2 entries
5757
edge_data => Dict{Tuple{String, String, String}, Dict} with 1 entry
5858
59-
# Acess the user information
59+
# Access the user information
6060
julia> user_data = g.node_data["user"]
6161
Dict{Symbol, AbstractVector} with 4 entries:
6262
: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:
7171
: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]
7272
```
7373
74-
## MovieLens 100K dataset
74+
## MovieLens 20m dataset
7575
7676
```julia-repl
7777
julia> data = MovieLens("20m")

0 commit comments

Comments
 (0)