Return the validataion set. Only for the inductive task. Currently behave the same with get_test_set
(self, normalization, cuda)
| 159 | return r_adj, fea |
| 160 | |
| 161 | def get_val_set(self, normalization, cuda): |
| 162 | """ |
| 163 | Return the validataion set. Only for the inductive task. |
| 164 | Currently behave the same with get_test_set |
| 165 | """ |
| 166 | return self.get_test_set(normalization, cuda) |
| 167 | |
| 168 | def get_label_and_idxes(self, cuda): |
| 169 | """ |
nothing calls this directly
no test coverage detected