Skip to content

Commit 2e1410d

Browse files
authored
fix typos in the docs (#368)
1 parent 5534fdd commit 2e1410d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/api/conv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Some of the most commonly used layers are the [`GCNConv`](@ref) and the [`GATv2C
99
(see [`GNNChain`](@ref)).
1010

1111
The table below lists all graph convolutional layers implemented in the *GraphNeuralNetworks.jl*. It also highlights the presence of some additional capabilities with respect to basic message passing:
12-
- *Sparse Ops*: implements message passing as multiplication by sparse adjacency matrix instead of the gather/scatter mechanism. This can lead to better cpu performances but it is not supported on gpu yet.
12+
- *Sparse Ops*: implements message passing as multiplication by sparse adjacency matrix instead of the gather/scatter mechanism. This can lead to better CPU performances but it is not supported on GPU yet.
1313
- *Edge Weight*: supports scalar weights (or equivalently scalar features) on edges.
1414
- *Edge Features*: supports feature vectors on edges.
1515
- *Heterograph*: supports heterogeneous graphs (see [`GNNHeteroGraphs`](@ref)).

docs/src/heterograph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Heterogeneous graphs (also called heterographs), are graphs where each node has a type,
44
that we denote with symbols such as `:user` and `:movie`.
5-
Releations such as `:rate` or `:like` can connect nodes of different types. We call a triplet `(source_node_type, relation_type, target_node_type)` the type of a edge, e.g. `(:user, :rate, :movie)`.
5+
Relations such as `:rate` or `:like` can connect nodes of different types. We call a triplet `(source_node_type, relation_type, target_node_type)` the type of a edge, e.g. `(:user, :rate, :movie)`.
66

77
Different node/edge types can store different groups of features
88
and this makes heterographs a very flexible modeling tools

0 commit comments

Comments
 (0)