Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[master<]Gnn link prediction #536

Merged
merged 5 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
374 changes: 374 additions & 0 deletions mage/query-modules/python/gnn-link-prediction.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions mage/templates/_mage_spells.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
| [import_util](/mage/query-modules/python/import-util) | Python | A module for importing data from different formats (JSON). |
| [katz_centrality](/mage/query-modules/cpp/katz-centrality) | C++ | Katz centrality is a centrality measurement that outputs a node's influence based on the number of shortest paths and their weighted length. |
| [katz_centrality_online](/mage/query-modules/cpp/katz-centrality-online) | C++ | Online implementation of the Katz centrality. Outputs the approximate result for Katz centrality while maintaining the order of rankings. |
| [link_prediction_with_gnn](/mage/query-modules/python/link-prediction-with-gnn) | Python | Module for predicting links in the graph by using graph neural networks. |
| [max_flow](/mage/query-modules/python/max-flow) | Python | An algorithm for finding a flow through a graph such that it is the maximum possible flow. |
| [node2vec](/mage/query-modules/python/node2vec) | Python | An algorithm for calculating node embeddings on static graph. |
| [node2vec_online](/mage/query-modules/python/node2vec-online) | Python | An algorithm for calculating node embeddings as new edges arrive. |
Expand Down
7 changes: 4 additions & 3 deletions sidebars/sidebarsMAGE.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
{
type: "category",
label: "Install MAGE",
link: {type: 'doc', id: 'installation/overview'},
link: { type: 'doc', id: 'installation/overview' },
items: [
"installation/docker-hub",
"installation/docker-build",
Expand All @@ -20,7 +20,7 @@ module.exports = {
{
type: "category",
label: "Available query modules",
link: {type: 'doc', id: 'query-modules/available-queries'},
link: { type: 'doc', id: 'query-modules/available-queries' },
items: [
"query-modules/cpp/betweenness-centrality",
"query-modules/cpp/betweenness-centrality-online",
Expand All @@ -39,6 +39,7 @@ module.exports = {
"query-modules/python/json-util",
"query-modules/cpp/katz-centrality",
"query-modules/cpp/katz-centrality-online",
"query-modules/python/link-prediction-with-gnn",
"query-modules/python/max-flow",
"query-modules/python/node2vec",
"query-modules/python/node2vec-online",
Expand Down Expand Up @@ -67,7 +68,7 @@ module.exports = {
{
type: "category",
label: "Algorithms",
link: {type: 'doc', id: 'algorithms/overview'},
link: { type: 'doc', id: 'algorithms/overview' },
items: [
{
type: "category",
Expand Down