Skip to content

Instantly share code, notes, and snippets.

View Forbu's full-sized avatar

Adrien B Forbu

  • Orange-Innovation
  • France
View GitHub Profile
from torch_geometric.nn.conv import MessagePassing
class MPGNNConv(MessagePassing):
def __init__(self, node_dim, edge_dim, layers=3):
super().__init__(aggr='mean', node_dim=0)
self.lin_edge = MLP(in_dim=node_dim * 2 + edge_dim, out_dim=node_dim, hidden_layers=layers)
self.lin_node = MLP(in_dim=node_dim * 2, out_dim=node_dim, hidden_layers=layers)
def forward(self, x, edge_index, edge_attr):
"""
@Forbu
Forbu / Learning_TDA.md
Last active June 5, 2019 07:58
Learning topological data analysis

Interesting Course :

Introduction to Topological Data Analysis :

Best introduction I'd see so far :

Introduction to Topological Data Analysis

Interesting papers using Topological Data Analysis :

Paper on a very good dimension reduction algorithm :

@Forbu
Forbu / ressourcesTDA.md
Last active September 10, 2018 09:49
List of ressources for introduction to TDA