Skip to content

Commit 22f032e

Browse files
committed
Change repo
1 parent 2b51334 commit 22f032e

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

GNNGraphs/docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ makedocs(;
2929

3030

3131

32-
deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
32+
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
3333
dirname = "GNNGraphs")

GNNGraphs/docs/src/datasets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Datasets
22

3-
GNNGraphs.jl doesn't come with its own datasets, but leverages those available in the Julia (and non-Julia) ecosystem. In particular, the [examples in the GraphNeuralNetworks.jl repository](https://github.com/CarloLucibello/GraphNeuralNetworks.jl/tree/master/examples) make use of the [MLDatasets.jl](https://github.com/JuliaML/MLDatasets.jl) package. There you will find common graph datasets such as Cora, PubMed, Citeseer, TUDataset and [many others](https://juliaml.github.io/MLDatasets.jl/dev/datasets/graphs/).
3+
GNNGraphs.jl doesn't come with its own datasets, but leverages those available in the Julia (and non-Julia) ecosystem. In particular, the [examples in the GraphNeuralNetworks.jl repository](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/examples) make use of the [MLDatasets.jl](https://github.com/JuliaML/MLDatasets.jl) package. There you will find common graph datasets such as Cora, PubMed, Citeseer, TUDataset and [many others](https://juliaml.github.io/MLDatasets.jl/dev/datasets/graphs/).
44
For graphs with static structures and temporal features, datasets such as METRLA, PEMSBAY, ChickenPox, and WindMillEnergy are available. For graphs featuring both temporal structures and temporal features, the TemporalBrains dataset is suitable.
55

66
GraphNeuralNetworks.jl provides the [`mldataset2gnngraph`](@ref) method for interfacing with MLDatasets.jl.

GNNLux/docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ makedocs(;
2222

2323

2424

25-
deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
25+
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
2626
dirname = "GNNLux")

GNNlib/docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ makedocs(;
3636

3737

3838

39-
deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
39+
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
4040
dirname = "GNNlib")

GraphNeuralNetworks/docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ makedocs(;
4848

4949

5050

51-
deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git", dirname= "GraphNeuralNetworks")
51+
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git", dirname= "GraphNeuralNetworks")

GraphNeuralNetworks/docs/src/home.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphNeuralNetworks
22

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).
3+
This is the documentation page for [GraphNeuralNetworks.jl](https://github.com/JuliaGraphs/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).
44
GraphNeuralNetworks.jl is largely inspired by [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/), [Deep Graph Library](https://docs.dgl.ai/),
55
and [GeometricFlux.jl](https://fluxml.ai/GeometricFlux.jl/stable/).
66

@@ -11,15 +11,15 @@ Among its features:
1111
* Easy to define custom layers.
1212
* CUDA support.
1313
* Integration with [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl).
14-
* [Examples](https://github.com/CarloLucibello/GraphNeuralNetworks.jl/tree/master/examples) of node, edge, and graph level machine learning tasks.
14+
* [Examples](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/examples) of node, edge, and graph level machine learning tasks.
1515

1616

1717
## Package overview
1818

1919
Let's give a brief overview of the package by solving a
2020
graph regression problem with synthetic data.
2121

22-
Usage examples on real datasets can be found in the [examples](https://github.com/CarloLucibello/GraphNeuralNetworks.jl/tree/master/examples) folder.
22+
Usage examples on real datasets can be found in the [examples](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/tree/master/examples) folder.
2323

2424
### Data preparation
2525

tutorials/docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ makedocs(;
3030

3131

3232

33-
deploydocs(; repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
33+
deploydocs(; repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
3434
dirname = "tutorials")

tutorials/docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ Here some tutorials on temporal graph neural networks:
2121

2222
## Contributions
2323

24-
If you have a suggestion on adding new tutorials, feel free to create a new issue [here](https://github.com/CarloLucibello/GraphNeuralNetworks.jl/issues/new). Users are invited to contribute demonstrations of their own. If you want to contribute new tutorials and looking for inspiration, checkout these tutorials from [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/notes/colabs.html). Please check out existing tutorials for more details.
24+
If you have a suggestion on adding new tutorials, feel free to create a new issue [here](https://github.com/JuliaGraphs/GraphNeuralNetworks.jl/issues/new). Users are invited to contribute demonstrations of their own. If you want to contribute new tutorials and looking for inspiration, checkout these tutorials from [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/notes/colabs.html). Please check out existing tutorials for more details.

0 commit comments

Comments
 (0)