(self, graph_file, valid_file)
| 708 | self.edge_split(graph_file, [train_file, valid_file, test_file], portions=[4000, 1, 1]) |
| 709 | |
| 710 | def valid_preprocess(self, graph_file, valid_file): |
| 711 | train_file = valid_file[:valid_file.rfind("valid.txt")] + "train.txt" |
| 712 | test_file = valid_file[:valid_file.rfind("valid.txt")] + "test.txt" |
| 713 | self.edge_split(graph_file, [train_file, valid_file, test_file], portions=[4000, 1, 1]) |
| 714 | |
| 715 | def test_preprocess(self, graph_file, test_file): |
| 716 | train_file = test_file[:test_file.rfind("valid.txt")] + "train.txt" |
nothing calls this directly
no test coverage detected