Skip to content

Commit fc7a19f

Browse files
Update README.md
1 parent d8d69ec commit fc7a19f

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99

1010
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.
1111

12-
This monorepo contains the following packages:
12+
This repository contains the following packages:
1313

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.
1515

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.
1717

18-
- `GNNlib.jl`: Contains the message passing 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
2020
are used and re-exported by the fronted packages.
2121

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.
2323

2424

25-
Both `GraphNeuralNetworks.jl` and `GNNLux.jl` enjoy several features:
25+
Both GraphNeuralNetworks.jl and GNNLux.jl enjoy several features:
2626

2727
* Implement common graph convolutional layers.
2828
* Support computations on batched graphs.
@@ -34,7 +34,7 @@ Both `GraphNeuralNetworks.jl` and `GNNLux.jl` enjoy several features:
3434

3535
## Installation
3636

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 :
3838

3939
```julia
4040
pkg> add GraphNeuralNetworks
@@ -44,8 +44,7 @@ pkg> add GraphNeuralNetworks
4444

4545
## Usage
4646

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.
4948

5049
## Citing
5150

0 commit comments

Comments
 (0)