(self)
| 132 | save_graphs(graph_path, self._graph) |
| 133 | |
| 134 | def load(self): |
| 135 | graph_path = os.path.join(self.save_path, "dgl_graph.bin") |
| 136 | g, _ = load_graphs(graph_path) |
| 137 | self._graph = g[0] |
| 138 | |
| 139 | @property |
| 140 | def num_classes(self): |
no test coverage detected