(self, train_file)
| 430 | self.csv2txt(raw_file, save_file) |
| 431 | |
| 432 | def train_preprocess(self, train_file): |
| 433 | valid_file = train_file[:train_file.rfind("train.txt")] + "valid.txt" |
| 434 | test_file = train_file[:train_file.rfind("train.txt")] + "test.txt" |
| 435 | self.link_prediction_split(self.graph, [train_file, valid_file, test_file], portions=[100, 1, 1]) |
| 436 | |
| 437 | def valid_preprocess(self, valid_file): |
| 438 | train_file = valid_file[:valid_file.rfind("valid.txt")] + "train.txt" |
nothing calls this directly
no test coverage detected