Skip to content

Commit

Permalink
Edited name of function
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav S Deshmukh committed Sep 7, 2023
1 parent fa0f476 commit 6f5e207
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ def get_node_tensor(self):
"""
pass

def get_adjacency_tensor(self):
"""Get the adjacency matrix of the graph as a PyTorch Tensor.
def get_edge_tensor(self):
"""Get the edge matrix of the graph as a PyTorch Tensor.
Returns
-------
adj_matrix: torch.Tensor
Adjacency tensor
edge_matrix: torch.Tensor
Edge tensor
"""
pass

0 comments on commit 6f5e207

Please sign in to comment.