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
+35-4Lines changed: 35 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,42 @@ Suggestions, issues and pull requsts are welcome.
23
23
24
24
## Features
25
25
26
-
Construct layers from adjacency matrix or graph (maybe extend to other structures).
27
-
Input features (including vertex, edge or graph features) of neural network may not need a structure or type.
28
-
Labels or features for output of classification or regression are part of training data, they may not need a specific structure or type, too.
26
+
* Extend Flux deep learning framework in Julia and compatible with Flux layers.
27
+
* Support of CUDA GPU with CUDA.jl
28
+
* Integrate with existing JuliaGraphs ecosystem
29
+
* Support generic graph neural network architectures
30
+
* Variable graph inputs are supported. You use it when diverse graph structures are prepared as inputs to the same model.
31
+
* Integrate GNN benchmark datasets (WIP)
29
32
30
-
***NOTICE**: Scatter operations on CUDA are only supported in v1.3 (due to new feature in CUDAnative v2.8 which only supports julia v1.3). CPU version scatter operations are always available.
33
+
## Graph convolutional layers
34
+
35
+
Construct GCN layer:
36
+
37
+
```
38
+
graph = # can be adj_mat, adj_list, simple_graphs...
0 commit comments