(self, test_file)
| 440 | self.link_prediction_split(self.graph, [train_file, valid_file, test_file], portions=[100, 1, 1]) |
| 441 | |
| 442 | def test_preprocess(self, test_file): |
| 443 | train_file = test_file[:test_file.rfind("test.txt")] + "train.txt" |
| 444 | valid_file = test_file[:test_file.rfind("test.txt")] + "valid.txt" |
| 445 | self.link_prediction_split(self.graph, [train_file, valid_file, test_file], portions=[100, 1, 1]) |
| 446 | |
| 447 | |
| 448 | class Youtube(Dataset): |
nothing calls this directly
no test coverage detected