Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class SeededSubgraphSampler(SubgraphSampler):
def __init__(self, graph, gnn_depth=2, max_proposals=64):
# Call parent class
super(SeededSubgraphSampler, self).__init__(
graph, gnn_depth, max_proposals
graph, gnn_depth=gnn_depth, max_proposals=max_proposals
)

# --- Batch Generation ---
Expand Down
Loading