Skip to content

Commit 775432b

Browse files
authored
Update index.md
Fixed a few typos.
1 parent 1cb3a27 commit 775432b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GraphNeuralNetworks
22

33
This is the documentation page for [GraphNeuralNetworks.jl](https://github.com/CarloLucibello/GraphNeuralNetworks.jl), a graph neural network library written in Julia and based on the deep learning framework [Flux.jl](https://github.com/FluxML/Flux.jl).
4-
GNN.jl is largely inspired by [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/),[Deep Graph Library](https://docs.dgl.ai/),
4+
GraphNeuralNetworks.jl is largely inspired by [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/),[Deep Graph Library](https://docs.dgl.ai/),
55
and [GeometricFlux.jl](https://fluxml.ai/GeometricFlux.jl/stable/).
66

77
Among its features:
@@ -52,7 +52,7 @@ GNNGraph:
5252

5353
### Model building
5454

55-
We concisely define our model as a [`GNNChain`](@ref) containing 2 graph convolutaional
55+
We concisely define our model as a [`GNNChain`](@ref) containing 2 graph convolutional
5656
layers. If CUDA is available, our model will live on the gpu.
5757

5858
```julia
@@ -72,7 +72,7 @@ julia> opt = ADAM(1f-4);
7272

7373
### Training
7474

75-
Finally, we use a standard Flux training pipeling to fit our dataset.
75+
Finally, we use a standard Flux training pipeline to fit our dataset.
7676
Flux's DataLoader iterates over mini-batches of graphs
7777
(batched together into a `GNNGraph` object).
7878

0 commit comments

Comments
 (0)