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: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,20 +9,20 @@
9
9
10
10
Libraries for deep learning on graphs in Julia, using either [Flux.jl](https://fluxml.ai/Flux.jl/stable/) or [Lux.jl](https://lux.csail.mit.edu/stable/) as backend framework.
11
11
12
-
This monorepo contains the following packages:
12
+
This repository contains the following packages:
13
13
14
-
-`GraphNeuralNetworks.jl`: Graph convolutional layers based on the deep learning framework [Flux.jl](https://fluxml.ai/Flux.jl/stable/). This is the fronted package for Flux users.
14
+
-**GraphNeuralNetworks.jl**: Graph convolutional layers based on the deep learning framework [Flux.jl](https://fluxml.ai/Flux.jl/stable/). This is the fronted package for Flux users.
15
15
16
-
-`GNNLux.jl`: Graph convolutional layers based on the deep learning framework [Lux.jl](https://lux.csail.mit.edu/stable/). This is the fronted package for Lux users. This package is still under development and it is not yet registered.
16
+
-**GNNLux.jl**: Graph convolutional layers based on the deep learning framework [Lux.jl](https://lux.csail.mit.edu/stable/). This is the fronted package for Lux users. This package is still under development and not yet registered.
17
17
18
-
-`GNNlib.jl`: Contains the messagepassing framework based on the gather/scatter mechanism or on
19
-
sparse matrix multiplication. It also contained the shared implementation for the layers of the two fronted packages. This package is not meant to be used directly by the user, but its functionalities
18
+
-**GNNlib.jl**: Contains the message-passing framework based on the gather/scatter mechanism or on
19
+
sparse matrix multiplication. It also contains the shared implementation for the layers of the two fronted packages. This package is not meant to be used directly by the user, but its functionalities
20
20
are used and re-exported by the fronted packages.
21
21
22
-
-`GNNGraphs.jl`: Package that contains the graph data structures and helper functions for working with graph data. It depends on Graphs.jl package.
22
+
-**GNNGraphs.jl**: Package that contains the graph data structures and helper functions for working with graph data.
23
23
24
24
25
-
Both `GraphNeuralNetworks.jl` and `GNNLux.jl` enjoy several features:
25
+
Both GraphNeuralNetworks.jl and GNNLux.jl enjoy several features:
26
26
27
27
* Implement common graph convolutional layers.
28
28
* Support computations on batched graphs.
@@ -34,7 +34,7 @@ Both `GraphNeuralNetworks.jl` and `GNNLux.jl` enjoy several features:
34
34
35
35
## Installation
36
36
37
-
GraphNeuralNetworks.jl, GNNlib.jl and GNNGraphs.jl are a registered Julia packages. You can easily install a package, for example GraphNeuralNetworks.jl, through the package manager :
37
+
GraphNeuralNetworks.jl, GNNlib.jl and GNNGraphs.jl are a registered Julia packages. You can easily install a package, e.g. GraphNeuralNetworks.jl, through the package manager :
38
38
39
39
```julia
40
40
pkg> add GraphNeuralNetworks
@@ -44,8 +44,7 @@ pkg> add GraphNeuralNetworks
44
44
45
45
## Usage
46
46
47
-
Usage examples can be found in the [examples](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/GraphNeuralNetworks/examples) and in the [notebooks](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/GraphNeuralNetworks/notebooks) folder. Also, make sure to read the [documentation](https://juliagraphs.org/GraphNeuralNetworks.jl/graphneuralnetworks/) for a comprehensive introduction to the library and the [tutorials](https://juliagraphs.org/GraphNeuralNetworks.jl/tutorials/).
48
-
47
+
Usage examples can be found in the [examples](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/GraphNeuralNetworks/examples) and in the [notebooks](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/GraphNeuralNetworks/notebooks) folder. Also, make sure to read the [documentation](https://juliagraphs.org/GraphNeuralNetworks.jl/graphneuralnetworks/) and the [tutorials](https://juliagraphs.org/GraphNeuralNetworks.jl/tutorials/) for a comprehensive introduction to the library.
0 commit comments