Skip to main content
Best practices
0 votes
1 replies
87 views

I have a website which shows different products about machines and its different parts. There are 10000 of product pages, and want to build a functionality which shows similar product pages and ...
Learner's user avatar
  • 165
0 votes
1 answer
60 views

In this link prediction example, here is how they split the data: transform = T.Compose([ T.NormalizeFeatures(), T.ToDevice(device), T.RandomLinkSplit(num_val=0.05, num_test=0.1, ...
lenhhoxung's user avatar
  • 2,786
0 votes
0 answers
68 views

I am experimenting with a GraphMAE self-supervised architecture using PyTorch + DGL. In my task, each graph node represents a CAD entity, and one node attribute stores sampled points (coordinates + ...
yxtq f's user avatar
  • 1
3 votes
1 answer
74 views

I have a three tfrecords (train,test valid) from the a deepmind github repo (https://github.com/google-deepmind/deepmind-research/tree/master/meshgraphnets) that I am trying to decode (at the minute ...
Andrew Russell's user avatar
1 vote
1 answer
99 views

I'm working on a task dependency prediction problem using Graph Neural Networks with PyTorch Geometric. The goal is to predict directed precedence links (A -> B) between tasks within specific sets (...
user180417's user avatar
0 votes
1 answer
92 views

Say, I have a few .stl files and want to non-parametrically generate a new geometry that is "interpolated" between the datset. For that, I plan on using neural networks that follows the ...
이시훈's user avatar
3 votes
1 answer
593 views

I have a custom homogeneous graph dataset with undirected edges, where each edge has 22 features and each node has 2 features. I would like to perform link prediction on this dataset using the edge ...
wup017's user avatar
  • 31
0 votes
0 answers
59 views

I am working on a drone and want to make it autonomous. As a first step, I decided to make a PyTorch algorithm that can output a path from one point to another. To do that, two random points are ...
Ruslan Abdulin's user avatar
0 votes
0 answers
49 views

My code to train the ML model is as follows: import dgl from dgl.nn import GraphConv import torch import torch.nn as nn import torch.nn.functional as F class GCN(nn.Module): def __init__(self, ...
77 ChickenNug's user avatar
0 votes
1 answer
127 views

I am computing node features of dimension D for a B different graphs where the graph i has N_i nodes, hence I have a batch representation as a tensor of dimension (N_1 + ... + N_B)xD. I want to ...
Adrien Lagesse's user avatar
0 votes
0 answers
270 views

I am trying to create a classification algorithm using Graph Neural Networks (GNNs) in Python, but I am encountering an error that I can't resolve. I have already tried removing NaN values from my ...
Val Secco's user avatar
1 vote
1 answer
145 views

I'm trying to use Graph Autoencoder on a custom PyG Data object, but when I attempt to train it, the loss, AUC and AP do not change. The exact same autoencoder works when using PyTorch Geometric's ...
Ciara Clarke's user avatar
0 votes
0 answers
53 views

I do not understand why I need to retrain the model starting with the model produced with the first run to improve the performance. Why increasing the number of epochs does not improve the results ...
cosmo.light's user avatar
1 vote
0 answers
102 views

I am trying to implement the Integrated Gradient calculation (described in this article) for a GNN I am working with. Specifically, I am using Eq3 from the paper My input for the network is a NxM ...
miguel pedraza's user avatar
0 votes
0 answers
420 views

I am working on a fraudulent transactions detection in SWIFT network using GGN.My graph has banking codes (SWIFT BIC codes) as nodes and the edges represent transactions. I also added an attribute ...
Marie-Lyne Roustom's user avatar

15 30 50 per page
1
2 3 4 5 6