Skip to content

Commit 5a9c9a0

Browse files
Update README.md
1 parent b21f6d9 commit 5a9c9a0

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This repository contains the following packages:
1515

1616
- **GraphNeuralNetworks.jl**: Provides graph convolutional layers based on the deep learning framework [Flux.jl](https://fluxml.ai/Flux.jl/stable/). This is the frontend package for Flux users.
1717

18-
- **GNNLux.jl**: Offers graph convolutional layers based on the deep learning framework [Lux.jl](https://lux.csail.mit.edu/stable/). This is the frontend package for Lux users. Note: This package is still under development and not yet registered.
18+
- **GNNLux.jl**: Offers graph convolutional layers based on the deep learning framework [Lux.jl](https://lux.csail.mit.edu/stable/). This is the frontend package for Lux users.
1919

2020
- **GNNGraphs.jl**: Provides graph data structures and helper functions for working with graph data. This package is re-exported by the frontend packages.
2121

@@ -33,14 +33,21 @@ Both **GraphNeuralNetworks.jl** and **GNNLux.jl** support the following features
3333
- [Examples](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/GraphNeuralNetworks/examples) of node, edge, and graph-level machine learning tasks.
3434
- Support for heterogeneous and temporal graphs.
3535

36-
## Installation
36+
## Installation
3737

38-
**GraphNeuralNetworks.jl**, **GNNLux.jl**, **GNNlib.jl**, and **GNNGraphs.jl** are registered Julia packages. You can install them easily through the package manager:
38+
All packages are registered in the General registry, making them easy to install via the Julia package manager.
3939

40+
For *Flux* users, run:
4041
```julia
4142
pkg> add GraphNeuralNetworks
4243
```
4344

45+
For *Lux* users, run:
46+
```julia
47+
pkg> add GNNLux
48+
```
49+
50+
There is no need to install **GNNGraphs** or **GNNlib** directly, as their functionality is re-exported by the frontend packages.
4451

4552
## Usage
4653

0 commit comments

Comments
 (0)