GraphSAGE icon indicating copy to clipboard operation
GraphSAGE copied to clipboard

why to pad features with zero vector?

Open zhanking321 opened this issue 3 years ago • 0 comments

Excuse me, I wonder why to pad features with zero vector?


if not features is None:
    # pad with dummy zero vector
    features = np.vstack([features, np.zeros((features.shape[1],))])

zhanking321 avatar Jul 27 '21 16:07 zhanking321