graphsage-simple icon indicating copy to clipboard operation
graphsage-simple copied to clipboard

Change a typo num_samples -> num_sample so that make sampling work

Open TheaperDeng opened this issue 5 years ago • 0 comments

In model.py there are two typos for each run_{} function.

    enc1.num_samples = 10
    enc2.num_samples = 25

should be changed to

    enc1.num_sample = 10
    enc2.num_sample = 25

because the encoder class has variable self.num_sample

TheaperDeng avatar Nov 15 '19 02:11 TheaperDeng