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
Copy file name to clipboardExpand all lines: docs/src/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# GraphNeuralNetworks
2
2
3
3
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/),
5
5
and [GeometricFlux.jl](https://fluxml.ai/GeometricFlux.jl/stable/).
6
6
7
7
Among its features:
@@ -52,7 +52,7 @@ GNNGraph:
52
52
53
53
### Model building
54
54
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
56
56
layers. If CUDA is available, our model will live on the gpu.
57
57
58
58
```julia
@@ -72,7 +72,7 @@ julia> opt = ADAM(1f-4);
72
72
73
73
### Training
74
74
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.
76
76
Flux's DataLoader iterates over mini-batches of graphs
0 commit comments