Can you explain the purpose or effect of mask in the function "_get_neighbors_and_masks()" of model.py?
specifically for the following two lines of codes?
mask = neighbor_edges - train_edges # [batch_size, -1]
mask = (mask != 0).float()
it is an excellent job of your work ,hope your reply,thanks.
Can you explain the purpose or effect of mask in the function "_get_neighbors_and_masks()" of model.py?
specifically for the following two lines of codes?