Skip to content

Commit b4494e1

Browse files
references to other libraries
1 parent 760a4a6 commit b4494e1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/src/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
This is the documentation page for the [GraphNeuralNetworks.jl](https://github.com/CarloLucibello/GraphNeuralNetworks.jl) library.
44

5-
A graph neural network library for Julia based on the deep learning framework [Flux.jl](https://github.com/FluxML/Flux.jl).
5+
A graph neural network library for Julia based on the deep learning framework [Flux.jl](https://github.com/FluxML/Flux.jl). GNN.jl is largely inspired by python's libraries [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/) and [Deep Graph Library](https://docs.dgl.ai/),
6+
and by julia's [GeometricFlux](https://fluxml.ai/GeometricFlux.jl/stable/).
67

78
Among its features:
89

@@ -15,15 +16,15 @@ Among its features:
1516

1617
## Package overview
1718

18-
Let's give a brief overview of the package solving a
19-
graph regression problem on fake data.
19+
Let's give a brief overview of the package by solving a
20+
graph regression problem with synthetic data.
2021

2122
Usage examples on real datasets can be found in the [examples](https://github.com/CarloLucibello/GraphNeuralNetworks.jl/tree/master/examples) folder.
2223

2324
### Data preparation
2425

2526
First, we create our dataset consisting in multiple random graphs and associated data features.
26-
that we batch together into a unique graph.
27+
Then we batch the graphs together into a unique graph.
2728

2829
```julia
2930
julia> using GraphNeuralNetworks, LightGraphs, Flux, CUDA, Statistics

0 commit comments

Comments
 (0)