(self)
| 235 | self.labels = F.tensor(self.labels, dtype=F.float32) |
| 236 | |
| 237 | def load(self): |
| 238 | self.graphs, label_dict = load_graphs(self.graph_path) |
| 239 | self.labels = label_dict["labels"] |
| 240 | |
| 241 | def save(self): |
| 242 | save_graphs( |
nothing calls this directly
no test coverage detected