(self)
| 483 | self.labels = F.tensor(self.labels, dtype=F.float32) |
| 484 | |
| 485 | def load(self): |
| 486 | self.graphs, label_dict = load_graphs(self.graph_path) |
| 487 | self.labels = label_dict["labels"] |
| 488 | |
| 489 | def save(self): |
| 490 | save_graphs( |
nothing calls this directly
no test coverage detected