(self, graph_file, test_file)
| 513 | self.link_prediction_split(graph_file, [train_file, valid_file, test_file], portions=[10000, 1, 1]) |
| 514 | |
| 515 | def pld_test_preprocess(self, graph_file, test_file): |
| 516 | train_file = test_file[:test_file.rfind("pld_test.txt")] + "pld_train.txt" |
| 517 | valid_file = test_file[:test_file.rfind("pld_test.txt")] + "pld_valid.txt" |
| 518 | self.link_prediction_split(graph_file, [train_file, valid_file, test_file], portions=[10000, 1, 1]) |
| 519 | |
| 520 | |
| 521 | class Friendster(Dataset): |
nothing calls this directly
no test coverage detected