You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix a typo in docs/tutorials/index.md
* Fix a few typos in node_classification_pluto.jl
* Fix a typo in node_classification_cora.jl
* Fix a typo in gnngraph.jl
* Fix a typo in gnnheterograph.jl
* Fix a typo in test_utils.jl
Copy file name to clipboardExpand all lines: docs/tutorials/introductory_tutorials/node_classification_pluto.jl
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Let us start off by importing some libraries. We will be using Flux.jl and `Grap
44
44
# ╔═╡ 0d556a7c-d4b6-4cef-806c-3e1712de0791
45
45
md"""
46
46
## Visualize
47
-
We want to visualize the the outputs of the resutls using t-distributed stochastic neighbor embedding (tsne) to embed our output embeddings onto a 2D plane.
47
+
We want to visualize the the outputs of the results using t-distributed stochastic neighbor embedding (tsne) to embed our output embeddings onto a 2D plane.
48
48
"""
49
49
50
50
# ╔═╡ 997b5387-3811-4998-a9d1-7981b58b9e09
@@ -57,11 +57,11 @@ end
57
57
md"""
58
58
## Dataset: Cora
59
59
60
-
For our tutorial, we will be using the `Cora` dataset. `Cora` is a citaton network of 2708 documents classified into one of seven classes and 5429 links. Each node represent articles/documents and the edges between these nodes if one of them cite each other.
60
+
For our tutorial, we will be using the `Cora` dataset. `Cora` is a citation network of 2708 documents classified into one of seven classes and 5429 links. Each node represent articles/documents and the edges between these nodes if one of them cite each other.
61
61
62
62
Each publication in the dataset is described by a 0/1-valued word vector indicating the absence/presence of the corresponding word from the dictionary. The dictionary consists of 1433 unique words.
63
63
64
-
This dataset was first introduced by [Yang et al. (2016)](https://arxiv.org/abs/1603.08861) as one of the datasets of the `Planetoid` benchmark suite. We will be using [MLDatasets.jl](https://juliaml.github.io/MLDatasets.jl/stable/) for an easy accss to this dataset.
64
+
This dataset was first introduced by [Yang et al. (2016)](https://arxiv.org/abs/1603.08861) as one of the datasets of the `Planetoid` benchmark suite. We will be using [MLDatasets.jl](https://juliaml.github.io/MLDatasets.jl/stable/) for an easy access to this dataset.
65
65
"""
66
66
67
67
# ╔═╡ edab1e3a-31f6-471f-9835-5b1f97e5cf3f
@@ -77,15 +77,15 @@ dataset.metadata
77
77
78
78
# ╔═╡ 3438ee7f-bfca-465d-85df-13379622d415
79
79
md"""
80
-
The `graphs` variable GraphDataset contains the graph. The `Cora` dataaset contains only 1 graph.
80
+
The `graphs` variable GraphDataset contains the graph. The `Cora` dataset contains only 1 graph.
81
81
"""
82
82
83
83
# ╔═╡ eec6fb60-0774-4f2a-bcb7-dbc28ab747a6
84
84
dataset.graphs
85
85
86
86
# ╔═╡ bd2fd04d-7fb0-4b31-959b-bddabe681754
87
87
md"""
88
-
There is only one graph of the dataset. The `node_data` contians `features` indicating if certain words are present or not and `targets` indicating the class for each document. We convert the single-graph dataset to a `GNNGraph`.
88
+
There is only one graph of the dataset. The `node_data` contains `features` indicating if certain words are present or not and `targets` indicating the class for each document. We convert the single-graph dataset to a `GNNGraph`.
0 commit comments