Skip to content

Commit 1cb3a27

Browse files
authored
Update models.md
Fixed a few typos.
1 parent 18a7b0f commit 1cb3a27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ model = GNNChain(GCNConv(din => d),
8787

8888
The `GNNChain` only propagates the graph and the node features. More complex scenarios, e.g. when also edge features are updated, have to be handled using the explicit definition of the forward pass.
8989

90-
A `GNNChain` oppurtunely propagates the graph into the branches created by the `Flux.Parallel` layer:
90+
A `GNNChain` opportunely propagates the graph into the branches created by the `Flux.Parallel` layer:
9191

9292
```julia
9393
AddResidual(l) = Parallel(+, identity, l) # implementing a skip/residual connection
@@ -105,7 +105,7 @@ y = model(g, X) # output size: (dout, g.num_graphs)
105105
## Embedding a graph in the model
106106

107107
Sometimes it is useful to consider a specific graph as a part of a model instead of
108-
its input. GNN.jl provides the [`WithGraph`](@ref) type to deal with this scenario.
108+
its input. GraphNeuralNetworks.jl provides the [`WithGraph`](@ref) type to deal with this scenario.
109109

110110
```julia
111111
chain = GNNChain(GCNConv(din => d, relu),

0 commit comments

Comments
 (0)