(self)
| 300 | os.unlink(path) |
| 301 | |
| 302 | def process(self): |
| 303 | file_path = os.path.join(self.raw_dir, self.raw_file_names[0]) |
| 304 | data = torch.load(file_path) |
| 305 | data = data if self.pre_transform is None else self.pre_transform(data) |
| 306 | self.save([data], self.processed_paths[0]) |
| 307 | |
| 308 | |
| 309 | # ====================================================================== |
nothing calls this directly
no outgoing calls
no test coverage detected