You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
258 np.random.shuffle(train_idx) this line shuffled the 188 graph index 265 mask = num_nodes[idx: idx + batch_size] ,
but the line 265 to read the num_nodes as a mask, still use the original index?
And another question:
Is the mask in 265 necessaries, when in the GCN class, the forward function does not use the mask for calculate? def forward(self, feat, adj, mask):