r"""Creates a data object from a python dictionary.
(dictionary)
| 938 | |
| 939 | @staticmethod |
| 940 | def from_dict(dictionary): |
| 941 | r"""Creates a data object from a python dictionary.""" |
| 942 | data = Graph() |
| 943 | for key, item in dictionary.items(): |
| 944 | data[key] = item |
| 945 | return data |
| 946 | |
| 947 | def nodes(self): |
| 948 | return torch.arange(self.num_nodes) |