Skip to content

Commit

Permalink
Change repo
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorarossi committed Nov 3, 2024
1 parent 2b51334 commit 22f032e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion GNNGraphs/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ makedocs(;



deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
dirname = "GNNGraphs")
2 changes: 1 addition & 1 deletion GNNGraphs/docs/src/datasets.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datasets

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/).
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/).
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.

GraphNeuralNetworks.jl provides the [`mldataset2gnngraph`](@ref) method for interfacing with MLDatasets.jl.
Expand Down
2 changes: 1 addition & 1 deletion GNNLux/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ makedocs(;



deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
dirname = "GNNLux")
2 changes: 1 addition & 1 deletion GNNlib/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ makedocs(;



deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
dirname = "GNNlib")
2 changes: 1 addition & 1 deletion GraphNeuralNetworks/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ makedocs(;



deploydocs(;repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git", dirname= "GraphNeuralNetworks")
deploydocs(;repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git", dirname= "GraphNeuralNetworks")
6 changes: 3 additions & 3 deletions GraphNeuralNetworks/docs/src/home.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GraphNeuralNetworks

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).
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).
GraphNeuralNetworks.jl is largely inspired by [PyTorch Geometric](https://pytorch-geometric.readthedocs.io/en/latest/), [Deep Graph Library](https://docs.dgl.ai/),
and [GeometricFlux.jl](https://fluxml.ai/GeometricFlux.jl/stable/).

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


## Package overview

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

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

### Data preparation

Expand Down
2 changes: 1 addition & 1 deletion tutorials/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ makedocs(;



deploydocs(; repo = "https://github.com/CarloLucibello/GraphNeuralNetworks.jl.git",
deploydocs(; repo = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
dirname = "tutorials")
2 changes: 1 addition & 1 deletion tutorials/docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Here some tutorials on temporal graph neural networks:

## Contributions

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.
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 comments on commit 22f032e

Please sign in to comment.