(self)
| 86 | ) |
| 87 | |
| 88 | def process(self): |
| 89 | mat_path = os.path.join(self.raw_dir, self.name + ".mat") |
| 90 | self.graphs, self.label = self._load_graph(mat_path) |
| 91 | |
| 92 | def _load_graph(self, filename): |
| 93 | data = io.loadmat(filename) |
nothing calls this directly
no test coverage detected