File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -43,3 +43,26 @@ julia> y_test_pred = svmpredict(model, X_test);
4343julia> accuracy = mean (y_test .== y_test_pred)
44440.8529411764705882
4545```
46+
47+ # Alternatives
48+
49+ ## Graph Kernels
50+
51+ ### Python
52+
53+ - [ GraKeL] ( https://github.com/ysig/GraKeL ) , A scikit-learn compatible library for graph kernels
54+ - [ graphkit-learn] ( https://github.com/jajupmochi/graphkit-learn ) , A Python package for graph kernels, graph edit distances and graph pre-image problem.
55+
56+ ## General graph machine learning
57+
58+ ### Julia
59+
60+ - [ GeometricFlux] (Geometric Deep Learning for Flux ), Geometric Deep Learning for Flux
61+
62+ ### Python
63+
64+ - [ StellarGraph] ( https://github.com/stellargraph/stellargraph ) , Machine Learning on Graphs
65+ - [ DGL] ( https://github.com/dmlc/dgl ) , Python package built to ease deep learning on graph, on top of existing DL frameworks.
66+ - [ Graph Nets] ( https://github.com/deepmind/graph_nets ) , Build Graph Nets in Tensorflow
67+ - [ Spektral] ( https://github.com/danielegrattarola/spektral/ ) , Graph Neural Networks with Keras and Tensorflow 2.
68+ - [ PyTorch Geometric] ( https://github.com/rusty1s/pytorch_geometric ) , Geometric Deep Learning Extension Library for PyTorch
You can’t perform that action at this time.
0 commit comments